/* ============================================
   CUSTOM WEBSITE STYLES - IDARTI ACADEMY
   Modern, Professional, Brilliant Design
   ============================================ */

@font-face {
    font-family: font_regular;
    src: url(../fonts/Lexend-VariableFont_wght.ttf);
}

@font-face {
    font-family: font_black;
    src: url(../fonts/MomoTrustDisplay-Regular.ttf);
}

@font-face {
    font-family: PlaywriteAUQLD;
    src: url(../fonts/LilitaOne-Regular.ttf);
}


/* ============================================
   COLOR PALETTE
   ============================================ */
:root {
    --primary-color: #03869f;      /* Deep Blue */
    --secondary-color: #00B4D8;    /* Turquoise */
    --accent-color: #90E0EF;       /* Light Aqua */
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F1FAFF;
    --bg-white: #FFFFFF;
    --footer-bg: #023E8A;
}


/* ============================================
   GLOBAL STYLES
   ============================================ */
body {
    font-family: font_regular;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 , .nav-link{
    line-height: 1.3;
    font-family: font_black;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    background: var(--bg-white) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 5px 0;
}

.brandname {
    color: rgb(44, 44, 44);
    font-size: 35px;
    font-family: PlaywriteAUQLD !important;
}


.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.website-logo {
    width: 60px;
    height: auto;
}

.website-footer-logo {
    width: 150px;
    height: auto;
}

.website-invoice-logo {
    max-height: 90px;
    width: auto;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-join-now {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-join-now:hover {
    background: #d8691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 121, 39, 0.4);
}

.btn-language {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
/* Hero Section */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background-color: var(--primary-color);
    background-color: #000;
    color: #fff;
}

.hero-background-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-bg-img {
    width: 60%;
    height: 750%;
    object-fit: contain;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 60, 0.92), rgba(8, 15, 40, 0.88));
    background: radial-gradient(circle at 20% 20%, rgba(255, 183, 0, 0.15), transparent 55%), 
                radial-gradient(circle at 80% 10%, rgba(0, 180, 216, 0.15), transparent 55%),
                linear-gradient(135deg, rgba(10, 20, 60, 0.85), rgba(8, 15, 40, 0.8));
    z-index: 2;
    pointer-events: none;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.hero-section .container {
    position: relative;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
    padding: 20px 0;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.hero-pill {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-eyebrow-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.hero-highlight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
}

.hero-highlight-icon {
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary {
    background: var(--secondary-color);
    border: none;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.hero-btn-primary:hover {
    background: #04a1c5;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 180, 216, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-trust-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-trust-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.hero-image {
    position: relative;
    z-index: 4;
}

.hero-showcase {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-bottom: 140px;
}

/* Hero Registration Form */
.hero-form-wrapper {
    position: relative;
    z-index: 4;
}

.hero-registration-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInRight 0.6s ease-out;
}

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

.hero-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.hero-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a237e;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-form-header p {
    color: #63708c;
    font-size: 0.95rem;
    margin: 0;
}

.hero-registration-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-group {
    position: relative;
}

.hero-form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 2;
}

.hero-form-input,
.hero-registration-form input[type="text"],
.hero-registration-form input[type="email"],
.hero-registration-form input[type="tel"] {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
    font-family: inherit;
}

.hero-form-input:focus,
.hero-registration-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
    background: #f8f9fa;
}

.hero-form-input::placeholder {
    color: #adb5bd;
}

.hero-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #04a1c5);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
    cursor: pointer;
}

.hero-form-submit:hover {
    background: linear-gradient(135deg, #04a1c5, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.4);
}

.hero-form-submit:active {
    transform: translateY(0);
}

.hero-form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #7a8699;
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-form-note i {
    color: #28a745;
}

.hero-form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #63708c;
    font-weight: 600;
}

.trust-item i {
    color: #28a745;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .hero-registration-card {
        margin-top: 30px;
        padding: 25px;
    }
    
    .hero-form-header h3 {
        font-size: 1.5rem;
    }
    
    .hero-form-trust {
        flex-direction: column;
        gap: 10px;
    }

    .hero-bg-img{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.hero-illustration {
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(12, 23, 70, 0.35));
}

.hero-floating-card {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 22px 26px;
    width: clamp(260px, 60vw, 360px);
    box-shadow: 0 25px 60px rgba(15, 35, 75, 0.15);
    text-align: left;
}

.hero-floating-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.hero-floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFD347, #FF8F4E);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.hero-floating-header h5 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #12244d;
}

.hero-floating-header p {
    margin: 0;
    font-size: 0.92rem;
    color: #5d6578;
}

.hero-floating-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-floating-list li {
    font-size: 0.95rem;
    color: #4c5773;
    padding-left: 22px;
    position: relative;
}

.hero-floating-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #04a1c5;
    font-size: 1.4rem;
    line-height: 1;
    top: -3px;
}

.hero-badge-strip {
    background: rgba(255, 255, 255, 0.18);
    color: #333;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
}

.stats-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.stats-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.modern-stat-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.stat-card-inner {
    background: white;
    border-radius: 28px;
    padding: 35px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(14, 39, 75, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.modern-stat-card:hover .stat-card-inner::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

.modern-stat-card:hover .stat-card-inner {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.2);
}

.stat-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(255, 215, 0, 0.1));
    transform: rotate(-5deg);
    transition: all 0.5s ease;
}

.modern-stat-card:hover .stat-icon-bg {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(255, 215, 0, 0.2));
}

.stat-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
    display: block;
}

.modern-stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 180, 216, 0.3));
}


/* Stat Illustration Styles */
.stat-illustration {
    width: 85px;
    height: 85px;
    display: block;
    transition: all 0.5s ease;
}

.modern-stat-card:hover .stat-illustration {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(0, 180, 216, 0.2));
}

/* Update stat-icon-wrapper size for illustrations */
.stat-icon-wrapper.illustration-mode {
    width: 110px;
    height: 110px;
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: -1px;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a237e;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.modern-stat-card:hover .stat-label {
    color: var(--secondary-color);
}

.stat-subtitle {
    color: #63708c;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
    flex: 1;
}

.stat-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.modern-stat-card:hover .stat-card-glow {
    opacity: 0.3;
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

/* Animation for counting numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-value {
    animation: countUp 0.8s ease-out;
}

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-intro {
    max-width: 720px;
    margin: 12px auto 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.btn-view-all {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary-color);
    border: 2px solid rgba(0, 180, 216, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 72, 140, 0.25);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-title-highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(3, 134, 159, 0.2);
    border-color: rgba(0, 180, 216, 0.3);
}

.feature-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon {
    font-size: 4.5rem;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(3, 134, 159, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--secondary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 20px 55px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(237, 121, 39, 0.3);
}

.cta-button:hover {
    background: #d8691e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 121, 39, 0.5);
}

/* ============================================
   FEATURED COURSES SECTION
   ============================================ */
.courses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    position: relative;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.course-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-instructor {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-instructor i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.course-description {
    color: #5d6a82;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.course-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1;
}

.course-price.free {
    color: var(--accent-color);
}

.btn-course {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
}

.btn-course:hover {
    background: #d8691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 121, 39, 0.3);
}

/* ============================================
   INSTRUCTORS SECTION
   ============================================ */
.instructors-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d3d80 100%);
    position: relative;
    overflow: hidden;
}

.instructors-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,128L48,122.7C96,117,192,107,288,112C384,117,480,139,576,154.7C672,171,768,181,864,165.3C960,149,1056,107,1152,101.3C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

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

.instructor-card {
    text-align: center;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.instructor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.instructor-card:hover::before {
    opacity: 1;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.instructor-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 4rem;
    color: white;
    transition: transform 0.3s ease;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.instructor-card:hover .instructor-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.instructor-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instructor-link:hover {
    text-decoration: none;
    color: inherit;
}

.instructor-link:hover .instructor-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.instructor-link:hover .instructor-name {
    color: var(--accent-color);
}

.instructor-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.instructor-card:hover .instructor-name {
    color: var(--accent-color);
}

.instructor-specialty {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.instructor-view-more,
.instructor-view-more-btn {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.instructor-card:hover .instructor-view-more,
.instructor-card:hover .instructor-view-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.instructor-view-more span,
.instructor-view-more-btn span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.instructor-view-more-btn {
    cursor: pointer;
    text-align: center;
}

.instructor-view-more-btn:hover span {
    color: var(--accent-color);
    transform: translateX(5px);
}

.instructor-view-more i,
.instructor-view-more-btn i {
    transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-view-more i,
.instructor-card:hover .instructor-view-more-btn i {
    transform: translateX(5px);
}

/* Instructor Modal Styles */
.instructor-modal-content {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    animation: modalFadeIn 0.4s ease-out;
}

.instructor-modal-wrapper {
    background: white;
}

.instructor-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d3d80 100%);
    padding: 50px 40px 40px;
    text-align: center;
    color: white;
    position: relative;
}

.instructor-modal-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.instructor-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.instructor-modal-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.instructor-modal-qualification {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0;
    font-weight: 600;
}

.instructor-modal-body {
    padding: 40px;
}

.instructor-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h6 {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.instructor-bio-section {
    margin-bottom: 30px;
}

.instructor-bio-section h5 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.instructor-bio-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.instructor-modal-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

.btn-instructor-book {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.btn-instructor-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.4);
    color: white;
}

.btn-instructor-book i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .instructor-info-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-modal-header {
        padding: 40px 25px 30px;
    }
    
    .instructor-modal-body {
        padding: 30px 25px;
    }
    
    .instructor-modal-avatar {
        width: 120px;
        height: 120px;
    }
    
    .instructor-modal-name {
        font-size: 1.8rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-course {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.btn-cta-large {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-cta-large:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.9);
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-developer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-developer strong {
    color: var(--accent-color);
    font-weight: 700;
}

.developer-whatsapp {
    color: #25D366;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(37, 211, 102, 0.1);
}

.developer-whatsapp:hover {
    color: #20BA5A;
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.developer-whatsapp i {
    font-size: 1.1rem;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.decorative-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 121, 39, 0.1), transparent);
    opacity: 0.5;
}

.circle-1 {
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-eyebrow {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 16px;
    }

    .hero-highlight-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlight {
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .hero-showcase {
        width: 100%;
        padding-bottom: 0;
    }

    .hero-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 25px;
    }

    .hero-badge-strip {
        align-self: stretch;
        text-align: center;
    }

    .stats-section {
        margin-top: -20px;
        padding: 60px 0;
    }
    
    .stat-card-inner {
        padding: 25px 20px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }

    .section-heading {
        text-align: left;
    }

    .section-intro {
        margin-left: 0;
        margin-right: 0;
    }

    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
    
    .feature-card,
    .course-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        font-size: 3.5rem;
    }
    
    .feature-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .instructor-avatar {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .btn-cta-large {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d3d80 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.5;
}

.how-it-works-section .container {
    position: relative;
    z-index: 2;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.step-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.step-content h5 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.step-item.final .step-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), #3d3d80);
    padding: 40px 30px;
    text-align: center;
}

.pricing-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-price .amount {
    font-size: 4rem;
    color: white;
    font-weight: 900;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.btn-pricing {
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-top: auto;
}

.btn-pricing:hover {
    background: #d8691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(237, 121, 39, 0.4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-section .section-title {
    margin-bottom: 50px;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), #3d3d80);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(237, 121, 39, 0.25);
}

.accordion-body {
    padding: 25px;
    background: white;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

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

.feature-card,
.course-card,
.instructor-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d8691e, #FFB700);
}


/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d3d80 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
}

.section-image {
    border-radius: 20px;
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.mission-vision-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.mission-vision-illustration {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.mission-vision-card:hover .mission-vision-illustration {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 20px rgba(26, 35, 126, 0.2));
}

.mission-vision-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-vision-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}


.value-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.value-illustration {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.value-card:hover .value-illustration {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 5px 15px rgba(0, 180, 216, 0.2));
}

.fallback-icon {
    font-size: 3.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-text {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section-about {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-title-about {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

.btn-cta-white {
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .mission-vision-card {
        padding: 30px 20px;
    }
}


/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */
.blog-detail-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.blog-detail-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-detail-hero-meta {
    font-size: 1.1rem;
    opacity: 0.95;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-detail-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-detail-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    opacity: 0.8;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
}

.related-posts-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

.back-to-blog {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
    border: 2px solid var(--primary-color);
}

.back-to-blog:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .blog-detail-hero-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-image,
    .blog-detail-image-placeholder {
        height: 250px;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
}


/* ============================================
   BLOG PREVIEW SECTION
   ============================================ */
.blog-preview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f7ff 0%, #ffffff 100%);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    max-width: 720px;
    margin: 15px auto 0;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-preview-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(3, 134, 159, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-preview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 55px rgba(3, 134, 159, 0.18);
}

.blog-preview-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(3, 134, 159, 0.12);
    border-radius: 999px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-preview-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-title a:hover {
    color: var(--primary-color);
}

.blog-preview-excerpt {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 0;
}

.blog-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(3, 134, 159, 0.1);
    padding-top: 15px;
}

.blog-preview-author {
    color: var(--text-light);
    font-size: 0.95rem;
}

.blog-preview-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-link:hover {
    color: var(--secondary-color);
}

.btn-view-blog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(3, 134, 159, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-view-blog:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(3, 134, 159, 0.3);
    color: white;
}

.empty-state {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px dashed rgba(3, 134, 159, 0.25);
    color: var(--text-light);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* ============================================
   BLOG LIST PAGE STYLES
   ============================================ */
.blog-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.blog-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.search-bar-blog {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.search-input-group-blog {
    position: relative;
}

.search-input-group-blog .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
}

.search-input-group-blog input {
    padding-left: 55px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    padding: 12px 55px;
}

.search-input-group-blog input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 121, 39, 0.25);
    outline: none;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.1);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.blog-card-body {
    padding: 30px;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--secondary-color);
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-meta i {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-read-more:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateX(5px);
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--secondary-color);
}

.featured-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.featured-post-item:last-child {
    border-bottom: none;
}

.featured-post-item:hover {
    padding-left: 10px;
}

.featured-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

.featured-post-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.featured-post-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.no-posts-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .search-bar-blog {
        padding: 15px;
    }
    
    .blog-image-wrapper {
        height: 200px;
    }
}


/* Shared form feedback styles */
.form-feedback {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid transparent;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.form-alert-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.form-alert-content {
    font-size: 0.95rem;
    color: #31415f;
    font-weight: 600;
}

.form-alert-success {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.12), rgba(39, 174, 96, 0.08));
    border-color: rgba(39, 174, 96, 0.25);
    color: #1f7e47;
}

.form-alert-error {
    background: linear-gradient(135deg, rgba(255, 118, 102, 0.12), rgba(231, 76, 60, 0.08));
    border-color: rgba(231, 76, 60, 0.25);
    color: #c0392b;
}

.form-alert-info {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.12), rgba(52, 152, 219, 0.08));
    border-color: rgba(52, 152, 219, 0.25);
    color: #1f4e79;
}

.field-error {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #c0392b;
    font-weight: 600;
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #e6f0ff 100%);
}

.contact-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 121, 39, 0.25);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    padding: 15px 50px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #d8691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(237, 121, 39, 0.4);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
    background: #f0f0f0;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-link-contact {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-contact:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-card,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .map-wrapper {
        height: 300px;
    }
}


/* ============================================
   COURSES PAGE STYLES
   ============================================ */
.courses-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.courses-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.courses-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.search-filter-bar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.search-input-group {
    position: relative;
}

.search-input-group .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
}

.search-input-group input {
    padding-left: 55px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-group input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 121, 39, 0.25);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e9ecef;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.filter-btn.accent {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.course-card-page {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    margin-bottom: 30px;
}

.course-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.course-image-page {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-image-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card-page:hover .course-image-page img {
    transform: scale(1.1);
}

.course-image-placeholder-page {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.course-card-body-page {
    padding: 30px;
    position: relative;
}

.course-title-page {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-instructor-page {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1rem;
}

.course-level-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-price-page {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.course-price-page.free {
    color: var(--accent-color);
}

.btn-join-course {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-join-course:hover {
    background: #d8691e;
    color: white;
    transform: translateY(-2px);
}

.no-courses-msg {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.no-courses-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.contact-section-courses {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    text-align: center;
}

.contact-section-courses .contact-card {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section-courses .contact-icon {
    width: auto;
    height: auto;
    background: none;
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-section-courses .contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-section-courses .contact-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ============================================
   BLOG HIGHLIGHT SECTION
   ============================================ */
.blog-highlight-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbff 0%, rgba(255, 255, 255, 0.9) 100%);
}

.blog-highlight-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 45, 98, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(16, 59, 110, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(10, 45, 98, 0.15);
}

.blog-highlight-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(13, 110, 253, 0.25));
}

.blog-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-highlight-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 4rem;
    opacity: 0.8;
}

.blog-highlight-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-highlight-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-highlight-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #7a8699;
    margin-bottom: 10px;
}

.blog-highlight-meta i {
    color: var(--secondary-color);
    margin-left: 6px;
}

.blog-highlight-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #102a51;
}

.blog-highlight-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-highlight-title a:hover {
    color: var(--secondary-color);
}

.blog-highlight-excerpt {
    color: #5d6a82;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-highlight-link {
    margin-top: auto;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-highlight-link:hover {
    gap: 12px;
}

.blog-highlight-empty {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(10, 45, 98, 0.08);
}

@media (max-width: 768px) {
    .courses-hero-title {
        font-size: 2rem;
    }
    
    .search-filter-bar {
        padding: 20px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
}


/* ============================================
   PRICES PAGE STYLES
   ============================================ */
.prices-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d3d80 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.prices-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.prices-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.prices-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing-intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
}

.price-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.price-card.basic {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-color: #ffd700;
}

.price-card.basic .price-header {
    background: linear-gradient(135deg, #ffd700, #ffb800);
}

.price-card.standard {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-color: #ff9900;
    transform: scale(1.05);
}

.price-card.standard .price-header {
    background: linear-gradient(135deg, #ff9900, #ff7700);
}

.price-card.premium {
    background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
    border-color: #0066cc;
}

.price-card.premium .price-header {
    background: linear-gradient(135deg, #0066cc, #0052a3);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.price-header {
    padding: 50px 30px;
    text-align: center;
    color: white;
}

.price-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.price-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-features li {
    padding: 15px 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.price-card.basic .price-features li i {
    color: #ffb800;
}

.price-card.standard .price-features li i {
    color: #ff7700;
}

.price-card.premium .price-features li i {
    color: #0052a3;
}

.price-features li.disabled {
    opacity: 0.4;
}

.price-features li.disabled i {
    opacity: 0.3;
}

.btn-start-now {
    padding: 18px 40px;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-top: auto;
    font-size: 1.1rem;
    border: 2px solid;
}

.price-card.basic .btn-start-now {
    background: #ffb800;
    color: white;
    border-color: #ffb800;
}

.price-card.basic .btn-start-now:hover {
    background: #ff9900;
    border-color: #ff9900;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 153, 0, 0.4);
}

.price-card.standard .btn-start-now {
    background: #ff7700;
    color: white;
    border-color: #ff7700;
}

.price-card.standard .btn-start-now:hover {
    background: #ff5500;
    border-color: #ff5500;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

.price-card.premium .btn-start-now {
    background: #0052a3;
    color: white;
    border-color: #0052a3;
}

.price-card.premium .btn-start-now:hover {
    background: #003d7a;
    border-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 61, 122, 0.4);
}

.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.table-header {
    background: linear-gradient(135deg, var(--primary-color), #3d3d80);
    color: white;
    padding: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .prices-hero-title {
        font-size: 2rem;
    }
    
    .price-card.standard {
        transform: scale(1);
    }
    
    .price-card:hover {
        transform: translateY(-15px) scale(1);
    }
    
    .price-number {
        font-size: 3.5rem;
    }
}


/* ============================================
   TRIAL PAGE STYLES
   ============================================ */
.trial-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.trial-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.trial-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.trial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe6cc 100%);
}

.trial-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(255, 153, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.trial-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.trial-card-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group-trial {
    margin-bottom: 25px;
}

.form-label-trial {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.form-control-trial {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control-trial:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 121, 39, 0.25);
    outline: none;
}

.btn-book-trial {
    background: var(--secondary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-book-trial:hover {
    background: #d8691e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 121, 39, 0.4);
}

.btn-book-trial::before {
    content: '🎁';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.3s ease;
}

.btn-book-trial:hover::before {
    left: 20px;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 0.6s ease;
}

.success-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.success-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.benefit-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

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

@media (max-width: 768px) {
    .trial-hero-title {
        font-size: 2rem;
    }
    
    .trial-card {
        padding: 30px 20px;
    }
    
    .trial-card-title {
        font-size: 1.5rem;
    }
}


/* ============================================
   ERROR PAGES STYLES
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(3, 134, 159, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.error-content {
    background: white;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(3, 134, 159, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.error-icon {
    font-size: 6rem;
    margin-bottom: 30px;
    animation: bounce 1s ease-in-out infinite;
    display: inline-block;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-error-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.btn-error-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.4);
    color: white;
}

.btn-error-secondary {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--primary-color);
}

.btn-error-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 134, 159, 0.3);
}

.error-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(3, 134, 159, 0.1);
}

.error-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.error-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.error-links a:hover {
    color: var(--secondary-color);
}

.error-links a:hover::after {
    width: 100%;
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .error-content {
        padding: 40px 25px;
    }
    
    .error-icon {
        font-size: 4rem;
        margin-bottom: 20px;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-error-primary,
    .btn-error-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .error-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   FEATURE ILLUSTRATIONS (Why Choose Us)
   ============================================ */
.feature-icon-wrapper.illustration-mode {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-illustration {
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-illustration {
    transform: scale(1.1) translateY(-5px);
}

/* SVG Specific Animations */
.feature-card:hover .feature-illustration circle[fill="#e8eaf6"],
.feature-card:hover .feature-illustration circle[fill="#fff3e0"],
.feature-card:hover .feature-illustration rect[fill="#fff"],
.feature-card:hover .feature-illustration circle[fill="#f8f9fa"] {
    /* Make background elements pulse slightly */
    animation: pulse-bg 2s infinite;
}

@keyframes pulse-bg {
    0% { transform: scale(1); transform-origin: center; }
    50% { transform: scale(1.02); transform-origin: center; }
    100% { transform: scale(1); transform-origin: center; }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-wrapper {
    position: relative;
}

.video-placeholder {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
}

.video-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.video-subtitle {
    color: var(--text-light);
}

/* ============================================
   BOTTOM REGISTRATION SECTION
   ============================================ */
.bottom-registration-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a223d 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.bottom-registration-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
    background-size: cover;
}

.registration-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.registration-title .highlight {
    color: var(--secondary-color);
}

.registration-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.registration-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.registration-benefits li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.registration-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.card-header-custom {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.card-header-custom h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.card-header-custom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.card-body-custom {
    padding: 30px;
}

.small-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.btn-register-full {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-register-full:hover {
    background: #d8691e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 121, 39, 0.3);
    color: white;
}

/* ============================================
   PROMO MODAL (POPUP) - Enhanced Design
   ============================================ */
.promo-modal-content {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.promo-image {
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(3, 134, 159, 0.8)), 
                url('../img/Quran Memorization .webp') center/cover no-repeat;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 40%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;
    text-align: center;
    z-index: 2;
}

.promo-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-icon-wrapper i {
    font-size: 4rem;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-overlay::before {
    content: '🎁';
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.promo-overlay h3 {
    font-weight: 800;
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
    margin-bottom: 12px;
    line-height: 1.2;
}

.promo-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    max-width: 300px;
}

.promo-form-wrapper {
    padding: 45px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.promo-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

.promo-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.8rem;
    text-align: center;
}

.promo-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

.promo-form-wrapper .hero-form-group {
    margin-bottom: 18px;
}

.promo-form-wrapper input[type="text"],
.promo-form-wrapper input[type="email"],
.promo-form-wrapper input[type="tel"] {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.promo-form-wrapper input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.btn-promo-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-promo-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-promo-submit:hover::before {
    left: 100%;
}

.btn-promo-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.4);
}

.promo-note {
    font-size: 0.85rem;
    color: #7a8699;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.promo-note i {
    color: #28a745;
}

.btn-close-white {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-close-white:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    opacity: 1;
}

.btn-close-white::before {
    content: '×';
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
}

@media (max-width: 991px) {
    .promo-image {
        display: none;
    }
    
    .promo-form-wrapper {
        padding: 35px 25px;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .btn-close-white {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}


