/* 
   CR Academy - Official Stylesheet
   Version 5.0 (Ultimate Premium Restoration)
   - Matches user provided screenshot for Contact Cards
   - Restores ALL missing component styles (Reviews, Success Stories, Footer)
   - Verified Mobile Responsiveness
*/

:root {
    /* Logo Colors */
    --primary-teal: #0d9488; /* Teal from logo */
    --primary-teal-dark: #0f766e;
    --primary-teal-light: rgba(13, 148, 136, 0.1);
    
    --accent-orange: #f97316; /* Vibrant Orange from logo */
    --accent-orange-hover: #ea580c;
    
    --text-bright: #ffffff;
    --text-main: #f8fafc;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    --text-gray: #475569;
    
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --bg-dark: #020617;
    --bg-navy: #0f172a;
    --bg-card: #ffffff;
    
    --border-soft: #f1f5f9;
    --border-dark: rgba(255, 255, 255, 0.1);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 120px 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 800;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--primary-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-title span { color: var(--primary-teal); }

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* --- TOP BAR --- */
.top-bar {
    background: var(--bg-navy);
    padding: 10px 0;
    color: var(--text-main);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-dark);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 500;
    opacity: 0.8;
}

.top-info a span {
    color: var(--accent-orange);
}

.top-info a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.top-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
}

/* --- HEADER --- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-soft);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-teal);
}

.btn-cta-header {
    background: var(--primary-teal);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px var(--primary-teal-light);
    transition: var(--transition);
}

.btn-cta-header:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 148, 136, 0.3);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2.5px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Slider System */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    padding: 120px 0 200px;
}

.hero-slider .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(2, 6, 23, 0.85) 20%,
        rgba(2, 6, 23, 0.4) 65%,
        rgba(2, 6, 23, 0.1) 100%);
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 50px; }
.slider-arrow.next { right: 50px; }

.slider-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background: var(--accent-orange);
    width: 40px;
    border-radius: 10px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1.4rem;
    background: rgba(255, 140, 66, 0.12);
    border: 1.5px solid rgba(255, 140, 66, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease backwards;
    color: var(--accent-orange);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease backwards 0.6s;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 35px var(--primary-teal-light);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(30, 96, 213, 0.4);
}

.play-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.play-btn {
    width: 65px;
    height: 65px;
    background: white;
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 28px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
}


.hero h1 span.typewriter {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.tagline {
    font-size: 1.35rem;
    max-width: 680px;
    color: rgba(226, 232, 240, 0.95);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 55px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 35px;
}

.stat-item h4 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.stat-item p {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-image-side {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.hero-main-img-container {
    position: relative;
    padding: 25px;
}

.hero-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 3rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(255, 140, 66, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(25px);
    padding: 1.8rem;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-floating-card.top { top: 40px; left: -50px; animation: floatAnim 5s infinite; }
.hero-floating-card.bottom { bottom: 80px; right: -50px; animation: floatAnim 5s infinite 2.5s; }

.lead-booking-bar {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3.5rem);
    max-width: 1150px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(50px);
    border: 1.5px solid rgba(255, 140, 66, 0.2);
    border-radius: 2.8rem;
    padding: 2rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.lead-booking-bar .text {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.lead-booking-bar .icon {
    font-size: 1.8rem;
}

.lead-booking-bar strong {
    color: white;
    display: block;
    margin-bottom: 4px;
}

.lead-booking-bar p {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.9rem;
}

.lead-booking-bar form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 18px;
    flex: 1;
}

.lead-booking-bar input,
.lead-booking-bar select {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    padding: 14px 18px;
    border-radius: 14px;
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lead-booking-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lead-booking-bar input:focus,
.lead-booking-bar select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
}

.btn-book {
    background: linear-gradient(135deg, var(--accent-orange), #ff6b42);
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 140, 66, 0.35);
}

/* --- COURSES CAROUSEL --- */
.carousel-container {
    position: relative;
    margin-top: 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 2rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: auto;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 15px;
    opacity: 1;
    transition: opacity 0.6s ease;
}

@media (min-width: 769px) {
    .carousel-slide {
        min-width: 50%;
    }
}

@media (min-width: 1025px) {
    .carousel-slide {
        min-width: calc(33.333%);
    }
}

.carousel-slide.active {
    opacity: 1;
}

.course-carousel-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    border: 1.5px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.course-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange));
}

.course-carousel-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal);
    box-shadow: 0 25px 50px rgba(30, 96, 213, 0.1);
}

.course-header-badge {
    display: inline-block;
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    width: fit-content;
}

.course-icons-group {
    margin-bottom: 15px;
}

.course-icon-main {
    font-size: 3rem;
}

.course-carousel-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 700;
}

.course-carousel-subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-pill {
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.topics-preview {
    flex: 1;
    margin-bottom: 20px;
}

.topics-preview h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.topics-preview ul {
    list-style: none;
}

.topics-preview li {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 0;
    line-height: 1.4;
}

.carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.duration-badge {
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-enroll {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-enroll:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(30, 96, 213, 0.3);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 96, 213, 0.15);
    border: 1.5px solid rgba(30, 96, 213, 0.3);
    color: var(--primary-teal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-control:hover {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: -75px;
}

.carousel-control.next {
    right: -75px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 96, 213, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator:hover {
    background: rgba(30, 96, 213, 0.4);
}

.indicator.active {
    background: var(--primary-teal);
    width: 35px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .carousel-control.prev {
        left: -60px;
    }

    .carousel-control.next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
    }

    .course-carousel-card {
        padding: 2rem 1.5rem;
    }

    .course-carousel-title {
        font-size: 1.3rem;
    }

    .carousel-control.prev {
        left: 10px;
    }

    .carousel-control.next {
        right: 10px;
    }

    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .carousel-indicators {
        margin-top: 40px;
    }
}

/* Courses Section */
.courses-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(242, 247, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--primary-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title span {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- SUCCESS STORIES (PREMIUM) --- */
.success-stories-new {
    padding: 100px 0;
    background: var(--bg-soft);
}

.stories-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.story-card-premium {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-soft);
}

.story-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
}

.story-card-inner {
    position: relative;
    z-index: 2;
}

.story-quote {
    font-size: 5rem;
    color: var(--primary-teal-light);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    font-weight: 500;
}

.story-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-teal-light);
}

.story-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.story-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.story-badge-premium {
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(22, 163, 174, 0.1);
}

.cta-mini {
    text-align: center;
}

.btn-link {
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-link span {
    transition: var(--transition);
}

.btn-link:hover span {
    transform: translateX(5px);
}

/* --- REVIEWS (GOOGLE STYLE) --- */
.reviews-section-modern {
    background: linear-gradient(135deg, rgba(242, 247, 255, 0.4) 0%, rgba(255, 248, 245, 0.3) 100%);
    padding: 120px 0;
}

.reviews-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.overall-rating-compact {
    text-align: right;
}

.big-score {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.review-count-compact {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Google Review Cards Grid */
.reviews-grid-google {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Individual Google Review Card */
.google-review-card {
    background: white;
    padding: 2rem;
    border-radius: 1.2rem;
    border: 1px solid #e8eaed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.google-review-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-teal);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.reviewer-avatar-google {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name-google {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    line-height: 1;
}

.stars-compact {
    color: #fbbf24;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 900;
}

.review-text-google {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .reviews-grid-google {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .reviews-header-compact {
        flex-direction: column;
        text-align: left;
        margin-bottom: 40px;
    }
    
    .overall-rating-compact {
        text-align: left;
        margin-top: 20px;
    }
    
    .big-score {
        font-size: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .reviews-section-modern {
        padding: 60px 0;
    }
    
    .reviews-grid-google {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .google-review-card {
        padding: 1.5rem;
    }
    
    .review-text-google {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .reviewer-avatar-google {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* --- CONTACT (PREMIUM) --- */
.contact-section-premium {
    padding: 100px 0;
    background: white;
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-grid-premium.no-form {
    grid-template-columns: 1fr 1fr;
}

.contact-card-v2 {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-card-v2:hover {
    background: white;
    box-shadow: var(--shadow-premium);
    transform: translateX(10px);
}

.card-icon {
    font-size: 2rem;
    width: 65px;
    height: 65px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.card-content span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.premium-form {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-soft);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--border-soft);
    background: var(--bg-soft);
    margin-bottom: 20px;
    font-family: inherit;
    transition: var(--transition);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: var(--primary-teal);
    background: white;
    outline: none;
}

.btn-premium-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-premium-submit:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--primary-teal-light);
}

.premium-map {
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.map-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-tag p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.map-tag a {
    color: var(--primary-teal);
    font-weight: 700;
    text-decoration: underline;
}

/* New Section Components */
.section-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.badge-mini {
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.title-main {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-main span {
    color: var(--primary-teal);
}

.desc-main {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* CTA Section Styles */
.cta-section-premium {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text-premium h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.cta-text-premium p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-cta-v2 {
    background: white;
    color: var(--primary-teal);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-premium);
}

.btn-cta-v2:hover {
    background: var(--bg-soft);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-grid-premium {
        grid-template-columns: 1fr;
    }
    .cta-content-premium {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- FOOTER (COMPLETE) --- */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 120px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo { height: 75px; margin-bottom: 30px; }
.footer-desc { color: rgba(255,255,255,0.6); margin-bottom: 40px; font-size: 1.05rem; }

.footer-social { display: flex; gap: 18px; }
.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.footer-title { color: white; font-size: 1.35rem; margin-bottom: 35px; }
.footer-links li { margin-bottom: 18px; }
.footer-links a { color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-links a:hover { color: white; padding-left: 8px; }

.footer-contact li { display: flex; gap: 15px; color: rgba(255,255,255,0.5); margin-bottom: 25px; font-weight: 600; }
.footer-contact span { color: var(--primary-teal); font-size: 1.2rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; }
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.4);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    transition: var(--transition);
    font-weight: 700;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background: #128c7e;
    box-shadow: 0 15px 40px rgba(18, 140, 126, 0.5);
    color: white;
}

.whatsapp-icon-wrapper {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-label {
    font-size: 1rem;
}

@keyframes pulseWhatsApp {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* COMING SOON */
.coming-soon-page { min-height: 85vh; display: flex; align-items: center; background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); }
.soon-grid { margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.soon-icon { font-size: 6rem; animation: floatAnim 4s infinite; margin-bottom: 2rem; }
.coming-soon-badge { background: var(--primary-teal); color: white; padding: 12px 30px; border-radius: 50px; font-weight: 900; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .section-title { font-size: 2.8rem; }
    .hero h1 { font-size: 3.5rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-stats { justify-content: center; }
    .footer-grid, .reviews-grid-modern, .contact-info-cards { grid-template-columns: 1fr 1fr; }
    .lead-booking-bar { flex-direction: column; width: 95%; }
    .lead-booking-bar form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .top-bar { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .header {
        padding: 12px 0;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .btn-purchase {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        gap: 1.5rem;
    }
    .nav-links.show { display: flex; }
    
    .header-actions .btn-purchase { display: none; }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero p.tagline {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item h4 {
        font-size: 2.2rem;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }
    
    .slider-dots {
        bottom: 120px;
        gap: 10px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 30px;
    }
    
    .lead-booking-bar {
        bottom: 2rem;
        width: calc(100% - 2rem);
        padding: 1.5rem;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lead-booking-bar .text {
        width: 100%;
    }
    
    .lead-booking-bar form {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .hero-main-img {
        height: 280px;
        border-radius: 2rem;
    }
    
    .footer-grid, .reviews-grid-modern, .contact-split-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; gap: 20px; }
    .info-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1rem; box-sizing: border-box; }
    
    /* Fix Reviews Header Overflow */
    .reviews-header-wide { flex-direction: column; align-items: center; text-align: center; gap: 30px; margin-bottom: 40px; }
    .overall-rating-card { flex-direction: column; padding: 1.5rem; gap: 1rem; width: 100%; box-sizing: border-box; }
    .big-score { font-size: 2.5rem; }
    
    /* Success Stories Responsive */
    .success-stories-section {
        padding: 80px 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-card-new {
        padding: 2rem 1.5rem;
    }
    
    .story-title {
        font-size: 1.15rem;
    }
    
    .achievement-icon {
        font-size: 2.2rem;
    }

    /* Fix Chatbot Overflow */
    .chatbot-wrapper { right: 20px; bottom: 20px; }
    .chatbot-toggle { padding: 12px 25px; }
    .chat-window { width: calc(100vw - 40px); right: 0; }
    
    /* Courses Section Responsive */
    .courses-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
}

/* ========== COURSES PAGE REDESIGN ========== */

.courses-page {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
}

/* Hero Section */
.courses-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.courses-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.courses-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.courses-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Courses Section */
.courses-page .container {
    padding: 80px 1.5rem;
}

.courses-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.courses-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Courses Grid */
.courses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Course Card */
.course-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange));
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.course-badge {
    display: inline-block;
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    margin-bottom: 15px;
    width: fit-content;
}

.course-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.course-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.course-subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Course Highlights */
.course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-item {
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Course Topics */
.course-topics {
    flex: 1;
    margin-bottom: 20px;
}

.course-topics li {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.course-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

/* Duration */
.course-duration {
    background: var(--bg-soft);
    color: var(--text-dark);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .courses-hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .courses-header h2 {
        font-size: 2rem;
    }

    .courses-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .course-card {
        padding: 25px;
    }
}

/* ========== ENQUIRY FORM ========== */
.enquiry-section {
    background: linear-gradient(135deg, rgba(242, 247, 255, 0.5) 0%, rgba(255, 248, 245, 0.3) 100%);
    padding: 100px 0;
    min-height: 100vh;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 80px;
}

.enquiry-header .section-subtitle {
    color: var(--primary-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.enquiry-header .section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.enquiry-header .section-title span {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enquiry-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Enquiry Form */
.enquiry-form {
    background: white;
    padding: 3rem;
    border-radius: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e8eaed;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Group */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: none;
}

/* Form Inputs */
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #e8eaed;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 96, 213, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Radio Buttons */
.form-radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.8rem 1rem;
    border-radius: 0.6rem;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.form-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-teal);
}

.form-radio span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-radio:hover {
    background: #f0f7ff;
    border-color: var(--primary-teal);
}

.form-radio input[type="radio"]:checked + span {
    color: var(--primary-teal);
}

/* Checkboxes for Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.course-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border: 1.5px solid #e8eaed;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.course-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-teal);
}

.course-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    flex: 1;
}

.course-checkbox:hover {
    background: #f8fafc;
    border-color: var(--primary-teal);
}

.course-checkbox input[type="checkbox"]:checked + .course-label {
    color: var(--primary-teal);
}

/* Selected Courses Display */
.selected-courses-display {
    margin-top: 1.5rem;
}

.selected-courses-display.warning {
    padding: 1rem;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 0.6rem;
    font-size: 0.9rem;
    color: #92400e;
}

.selected-courses-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.course-badge {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-orange));
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Submit Button */
.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
}

.btn-enquiry-submit {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 96, 213, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 96, 213, 0.4);
}

.btn-enquiry-submit:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    animation: fadeInUp 0.5s ease;
}

.success-content {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

.success-content h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.success-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.success-message-main {
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-success-home {
    background: var(--primary-teal);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success-home:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px);
}

/* Utility Classes */
.text-muted {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 0.3rem;
}

.word-count {
    display: block;
    margin-top: 0.5rem;
    text-align: right;
}

/* Animations */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive - Tablet & Mobile */
@media (max-width: 1024px) {
    .enquiry-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-radio-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .enquiry-section {
        padding: 50px 0;
    }

    .enquiry-header {
        margin-bottom: 50px;
    }

    .enquiry-header .section-title {
        font-size: 2rem;
    }

    .enquiry-form {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 1.5rem;
    }

    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .form-section-title {
        font-size: 1.1rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .form-radio-group {
        gap: 1rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-checkbox {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .course-label {
        font-size: 0.85rem;
    }

    .btn-enquiry-submit {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .success-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-content h3 {
        font-size: 1.5rem;
    }
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #f5f0ff 50%, #fff8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 96, 213, 0.08) 0%, rgba(30, 96, 213, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.benefits-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, rgba(255, 140, 66, 0) 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -150px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: white;
    padding: 2.8rem 2.2rem;
    border-radius: 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-orange) 100%);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-orange) 100%);
    transform: scale(1.08) rotate(5deg);
}

.benefit-icon {
    font-size: 3.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

/* ========== COURSE CAROUSEL UPDATES ========== */
.course-badge-group {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
}

.course-header-badge {
    background: var(--primary-teal);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.cert-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Responsive - Benefits Section */
@media (max-width: 1024px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .benefit-card {
        padding: 2.2rem 1.8rem;
    }

    .benefit-icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.2rem;
    }

    .benefit-icon {
        font-size: 2.8rem;
    }

    .benefit-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 50px 0;
    }

    .benefits-section::before {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -80px;
    }

    .benefits-section::after {
        width: 250px;
        height: 250px;
        bottom: -60px;
        left: -80px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.8rem 1.5rem;
        border-radius: 1.2rem;
    }

    .benefit-icon-wrapper {
        width: 65px;
        height: 65px;
        margin: 0 auto 1rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .benefit-card p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
    }
}

/* ========== COURSE PAGE CERTIFICATIONS ========== */
.course-guarantees {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.course-badge-top {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
}

.course-badge {
    background: var(--primary-teal);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.cert-badge-small {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
/* ========== ABOUT PAGE PREMIUM STYLES ========== */

.about-hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-soft);
}

.stat-item-premium .stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-teal);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item-premium .stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.about-image .image-wrapper {
    position: relative;
    padding: 20px;
}

.main-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 3rem;
    box-shadow: var(--shadow-premium);
    border: 8px solid white;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent-orange);
    color: white;
    padding: 25px;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
    animation: floatAnim 4s infinite;
}

.experience-badge strong {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.floating-label {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: white;
    padding: 15px 30px;
    border-radius: 1rem;
    box-shadow: var(--shadow-premium);
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-label::before {
    content: '🏆';
}

/* Mission Section */
.mission-section {
    background: white;
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card-premium {
    background: var(--bg-soft);
    padding: 60px 50px;
    border-radius: 2.5rem;
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.mission-card-premium:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-teal);
}

.mission-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.mission-card-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mission-card-premium p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: white;
    padding: 40px;
    border-radius: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-soft);
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-premium);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 120px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.lab-img {
    width: 100%;
    border-radius: 3rem;
    box-shadow: var(--shadow-premium);
}

.why-list {
    margin-top: 40px;
}

.why-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
}

.why-list h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-list p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Founder Section */
.founder-section {
    padding: 100px 0 150px;
    background: var(--bg-soft);
}

.founder-card {
    background: white;
    display: flex;
    align-items: center;
    border-radius: 4rem;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.founder-text {
    flex: 1;
    padding: 80px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 10rem;
    color: var(--primary-teal-light);
    font-family: serif;
    line-height: 1;
}

.founder-text h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.founder-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.founder-info h4 {
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.founder-info p {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: normal;
    margin: 0;
}

.founder-image {
    width: 450px;
    height: 550px;
    flex-shrink: 0;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-grid, .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        order: -1;
    }
    
    .founder-card {
        flex-direction: column;
        border-radius: 2rem;
    }
    
    .founder-image {
        width: 100%;
        height: 400px;
    }
    
    .founder-text {
        padding: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-row {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .experience-badge {
        padding: 15px;
        right: 0;
    }
    
    .floating-label {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 20px;
        padding: 0;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .whatsapp-label {
        display: none;
    }
}
