/*
Theme Name: LangoApp
Theme URI: https://langoapp.com
Author: LangoApp Team
Author URI: https://langoapp.com
Description: A modern marketing theme for LangoApp - the language learning application. Features customizable sections and color settings through an intuitive admin panel.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: langoapp
Tags: one-column, custom-colors, custom-menu, featured-images, theme-options, translation-ready

LangoApp WordPress Theme
Copyright (C) 2024 LangoApp Team
*/

/* ==========================================================================
   Typography
   ========================================================================== */

:root {
    --lango-bg: #FFFFFF;
    --lango-primary: #218BFF;
    --lango-primary-rgb: 33, 139, 255;
    --lango-text-secondary: #101522;
    --lango-text-light: #6c757d;
    --lango-border: #e9ecef;
    --lango-shadow: rgba(0, 0, 0, 0.1);
    --lango-gradient: linear-gradient(135deg, var(--lango-primary) 0%, #1a6fcc 100%);
}

/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--lango-font-main, 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lango-text-secondary);
    background-color: var(--lango-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--lango-text-secondary);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--lango-text-light);
}

a {
    color: var(--lango-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--lango-text-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.small-container {
    max-width: 900px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lango-primary);
    margin-bottom: 15px;
}

.section-header h2,
.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.section-header h2 span,
.section-title span {
    color: var(--lango-primary);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 20px;
}

.header-with-action .header-text {
    flex: 1;
}

.header-with-action .header-text .subtitle,
.header-with-action .header-text h2 {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .header-with-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--lango-primary);
    color: #fff;
    border-color: var(--lango-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--lango-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33, 139, 255, 0.3);
}

.btn-primary-small {
    background: var(--lango-primary);
    color: #fff;
    border-color: var(--lango-primary);
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-primary-small:hover {
    background: transparent;
    color: var(--lango-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 139, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--lango-text-secondary);
    border-color: var(--lango-text-secondary);
}

.btn-outline:hover {
    background: var(--lango-text-secondary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--lango-primary);
    border-color: #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--lango-bg-rgb, 255, 255, 255), 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--lango-shadow);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 45px;
    object-fit: contain;
}

.site-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lango-text-secondary);
}

.site-logo .logo-text span {
    color: var(--lango-primary);
}

.main-nav {
    margin-left: auto;
    margin-right: 25px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    color: var(--lango-text-secondary);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lango-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Dropdown / Sub-menu Styles */
.main-nav ul li {
    position: relative;
}

.main-nav ul li.menu-item-has-children>a {
    padding-right: 18px;
}

.main-nav ul li.menu-item-has-children>a::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: inherit;
    transition: transform 0.3s ease;
}

.main-nav ul li.menu-item-has-children:hover>a::before {
    transform: translateY(-50%) rotate(180deg);
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #f0f0f0;
}

.main-nav ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li {
    width: 100%;
}

.main-nav .sub-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.95rem;
    color: var(--lango-text-secondary);
    transition: all 0.2s ease;
}

.main-nav .sub-menu li a:hover {
    background: #f8faff;
    color: var(--lango-primary);
    padding-left: 30px;
}

.main-nav .sub-menu li a::after {
    display: none;
    /* Hide the underline effect for sub-menu items */
}

/* Sub-menu on sub-menu (if needed) */
.main-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--lango-text-secondary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding: 0;
    overflow: hidden;
    background: var(--lango-bg);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-text-slider {
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-text-slider {
        margin-top: 20px;
        /* Reduced from 60px/110px */
        min-height: auto;
        /* Let content dictate height */
        margin-bottom: 20px;
    }

    .hero-section {
        height: 100dvh;
        min-height: 600px;
        padding: 0;
    }

    .hero-container {
        height: 100%;
        padding: 80px 0 20px;
    }

    .hero-app-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-text-slide.active p {
    text-shadow: 2px 2px 5px rgb(0 0 0);
}

.hero-text-slide h1,
.hero-text-slide p {
    color: #fff;
}

.hero-text-slide h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 25px;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

@media (max-width: 991px) {
    .hero-text-slide h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-text-slide h1 {
        font-size: 2.2rem;
        /* Much smaller for mobile */
        margin-bottom: 15px;
    }

    .hero-text-slide p {
        font-size: 1rem;
    }
}

.hero-text-slide.active h1 {
    transform: translateY(0);
}

.hero-text-slide p {
    font-size: 1.25rem;
    color: #bcbcbc;
    margin-bottom: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.hero-text-slide.active p {
    transform: translateY(0);
}

.hero-read-more {
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 5px;
    font-size: 14px;
    font-style: italic;
}

.hero-read-more:hover {
    color: var(--lango-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 21, 34, 0.8) 0%, rgba(16, 21, 34, 0.4) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(var(--lango-primary-rgb), 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    height: 100%;
    position: relative;
    z-index: 10;
    padding-top: 80px;
    /* Account for fixed header */
    padding-bottom: 40px;
}

.hero-stat .number,
.hero-stat .label {
    color: #fff;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Bottom Bar Styling Removed - Items now in hero-inner */
.hero-app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 170px;
}

.app-btn:hover {
    transform: translateY(-2px);
}

a.app-btn:hover {
    color: #fff;
}

.app-btn .app-icon {
    display: flex;
    align-items: center;
    font-size: 24px;
}

.app-btn .app-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-btn .app-text span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1;
}

.app-btn .app-text strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-social .social-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--lango-text-secondary);
    transition: all 0.3s ease;
}

.hero-social .social-icon:hover {
    background: var(--lango-primary);
    color: #fff;
    transform: translateY(-3px);
}

.hero-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav button:hover {
    background: var(--lango-primary);
    border-color: var(--lango-primary);
}

.hero-prev svg {
    transform: rotate(180deg);
}



/* Hero Button Glow */
.hero-buttons .btn-primary {
    box-shadow: 0 0 20px rgba(var(--lango-primary-rgb), 0.4);
    animation: btnGlow 3s infinite alternate;
}

.hero-buttons .btn-outline {
    background: #fff;
    color: var(--lango-primary) !important;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation: btnGlowWhite 3s infinite alternate;
}

.hero-buttons .btn-outline:hover {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 10px rgba(var(--lango-primary-rgb), 0.3);
    }

    100% {
        box-shadow: 0 0 30px rgba(var(--lango-primary-rgb), 0.6);
    }
}

@keyframes btnGlowWhite {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--lango-gradient);
    border-radius: 50% 0 0 50%;
    opacity: 0.05;
    z-index: 0;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 600px;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgb(0 0 0 / 39%);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c5cacf;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-inner h1 span {
    color: var(--lango-primary);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #bcbcbc;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lango-text-secondary);
}

.hero-stat .number span {
    color: var(--lango-primary);
}

.hero-stat .label {
    font-size: 0.875rem;
    color: var(--lango-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(33, 139, 255, 0.2);
}

.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 40px var(--lango-shadow);
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    top: 20%;
    left: -30px;
}

.hero-float-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Legacy hero styles removed to support new flex distribution */

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    background: var(--lango-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid .feature-card:nth-child(n+4) {
        display: none;
    }
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--lango-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--lango-shadow);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(33, 139, 255, 0.1) 0%, rgba(33, 139, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--lango-gradient);
}

.feature-icon svg,
.feature-icon i {
    font-size: 2rem;
    color: var(--lango-primary);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card h4 {
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9375rem;
    margin: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, var(--lango-bg) 100%);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px var(--lango-shadow);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--lango-primary);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(33, 139, 255, 0.4);
}

.about-image-badge .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lango-primary);
    margin-bottom: 15px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 30px;
    font-size: 1.0625rem;
}

.about-list {
    list-style: none;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--lango-text-secondary);
}

.about-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--lango-primary);
    margin-top: 2px;
}

/* ==========================================================================
   Courses/Features Section
   ========================================================================== */
.courses-section {
    background: var(--lango-bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px var(--lango-shadow);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--lango-shadow);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--lango-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-content {
    padding: 25px;
}

.course-content h4 {
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.course-card:hover .course-content h4 {
    color: var(--lango-primary);
}

.course-content p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--lango-border);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--lango-text-light);
}

.course-meta svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Counter Section
   ========================================================================== */
.counter-section {
    background: var(--lango-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.counter-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 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') repeat;
    background-size: 100px;
    opacity: 0.3;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon svg,
.counter-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Video/CTA Section
   ========================================================================== */
.video-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 21, 34, 0.9) 0%, rgba(33, 139, 255, 0.8) 100%);
}

.video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.video-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 25px;
}

.video-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--lango-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--lango-primary);
    animation: pulse 2s ease infinite;
}

.play-button svg {
    position: relative;
    z-index: 1;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, var(--lango-bg) 100%);
}

.testimonials-slider-container {
    position: relative;
    padding: 0 50px;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0 40px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    color: var(--lango-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: var(--lango-primary);
    color: #fff;
    border-color: var(--lango-primary);
}

.testimonial-nav .testi-prev svg {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    font-size: 0.875rem;
}

.testimonial-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--lango-text-secondary);
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.user-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-placeholder {
    width: 100%;
    height: 100%;
    background: var(--lango-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.user-info h4 {
    margin: 0 0 4px;
    font-size: 1.125rem;
    color: var(--lango-text-secondary);
}

.user-info span {
    font-size: 0.875rem;
    color: var(--lango-primary);
    display: block;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
    background: var(--lango-bg);
}

.blog-section .section-header p {
    text-align: left;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px var(--lango-shadow);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--lango-shadow);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .placeholder-img {
    transform: scale(1.1);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--lango-primary);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--lango-text-light);
}

.blog-meta a {
    color: var(--lango-primary);
}

.blog-content h4 {
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-content h4 a {
    color: inherit;
}

.blog-card:hover .blog-content h4 {
    color: var(--lango-primary);
}

.blog-content p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--lango-primary);
}

.read-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    position: relative;
    background: #0a0d14;
    color: #fff;
    padding: 40px 0;
    overflow: hidden;
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/footer-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.footer-premium-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-brand-side .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-side .footer-logo img {
    height: 50px;
    object-fit: contain;
}

.footer-brand-side .footer-logo span {
    color: var(--lango-primary);
    text-shadow: 0 0 15px rgba(var(--lango-primary-rgb), 0.5);
}



.footer-social-glass {
    display: flex;
    gap: 15px;
}

.social-glass-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-glass-item:hover {
    background: var(--lango-primary);
    border-color: var(--lango-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--lango-primary-rgb), 0.3);
}





.footer-nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav-links li {
    margin-bottom: 0;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-nav-links a:hover {
    color: var(--lango-primary);
}



.footer-premium-bottom {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    margin-top: 20px;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}



@media (max-width: 991px) {
    .footer-premium-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-nav-links {
        justify-content: center;
    }

    .footer-social-glass {
        justify-content: center;
    }

    .footer-copyright {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-premium-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-glass {
        justify-content: center;
    }


}

@media (max-width: 480px) {
    .footer-nav-links {
        gap: 15px;
    }

    .footer-nav-links a {
        font-size: 0.875rem;
    }
}


/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .courses-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 100px 30px 40px;
        display: flex;
        flex-direction: column;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        margin: 0;
        /* Reset user margin on mobile */
    }

    .main-nav.mobile-open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #f5f7fa;
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        font-size: 1.15rem;
        color: var(--lango-text-secondary);
        font-weight: 600;
        width: 100%;
    }

    /* Reset desktop hover underlines on mobile */
    .main-nav ul li a::after {
        display: none !important;
    }

    /* Mobile Sub-menu adjustment */
    .main-nav ul li.menu-item-has-children>a {
        position: relative;
        padding-right: 35px;
        /* Ensure space for the icon */
    }

    /* Create a clean mobile dropdown icon using a DIFFERENT approach to avoid desktop conflict */
    .main-nav ul li.menu-item-has-children>a::before {
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: var(--lango-primary);
        display: block !important;
        /* Force override display:none */
        transition: transform 0.3s ease;
        width: auto;
        height: auto;
        background: transparent;
    }

    .main-nav ul li.menu-item-has-children.active>a::before {
        transform: translateY(-50%) rotate(180deg);
    }

    .main-nav .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 15px;
        background: #f8faff;
        border: none;
        display: block;
        transition: all 0.4s ease;
    }

    .main-nav ul li.menu-item-has-children.active>.sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding-bottom: 15px;
    }

    .main-nav .sub-menu li {
        border-bottom: none;
    }

    .main-nav .sub-menu li a {
        font-size: 1rem;
        padding: 10px 0;
        font-weight: 500;
        color: #64748b;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 13, 20, 0.4);
        backdrop-filter: blur(4px);
        z-index: 999;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat .number {
        font-size: 2rem;
    }

    .features-grid,
    .courses-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .counter-number {
        font-size: 2.75rem;
    }

    .video-content h2 {
        font-size: 2.25rem;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-content p {
        font-size: 1.125rem;
    }


}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .about-image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--lango-primary);
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

/* ==========================================================================
   Archive & Pagination
   ========================================================================== */
.pagination-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination-wrap .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.pagination-wrap .page-numbers li a,
.pagination-wrap .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    font-weight: 600;
    color: var(--lango-text-secondary);
    transition: all 0.3s ease;
}

.pagination-wrap .page-numbers li a:hover,
.pagination-wrap .page-numbers li span.current {
    background: var(--lango-primary);
    color: #fff;
    border-color: var(--lango-primary);
    box-shadow: 0 5px 15px rgba(var(--lango-primary-rgb), 0.3);
}

.pagination-wrap .page-numbers li a.prev svg {
    transform: rotate(180deg);
}

.page-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
    padding: 110px 0 60px;
    border-bottom: 1px solid #f0f0f0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-archive-section {
    padding: 80px 0;
    background: var(--lango-bg);
}

.archive-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--lango-text-light);
    font-size: 1.1rem;
}

.pagination-wrap {
    margin-top: 60px;
}

.pagination-wrap ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--lango-border);
    color: var(--lango-text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current {
    background: var(--lango-primary);
    border-color: var(--lango-primary);
    color: #fff;
}

/* ==========================================================================
   Single Post
   ========================================================================== */
.post-header {
    position: relative;
    padding: 120px 0 80px;
    background: #101522;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.post-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Blog Search Bar Styles */
.blog-search-bar {
    max-width: 600px;
    margin: 40px auto 0;
}

.blog-search-bar .search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.blog-search-bar .search-input-group:focus-within {
    box-shadow: 0 15px 40px rgba(33, 139, 255, 0.15);
    border-color: var(--lango-primary);
    transform: translateY(-2px);
}

.blog-search-bar .search-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 25px;
    font-size: 1rem;
    color: var(--lango-text-secondary);
    outline: none;
}

.blog-search-bar .search-field::placeholder {
    color: #94a3b8 !important;
}

.blog-search-bar .search-submit {
    background: var(--lango-primary);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-search-bar .search-submit:hover {
    background: #1a6fcc;
    transform: scale(1.05);
}


.post-featured-placeholder {
    background-image: url('assets/images/blog-placeholder.png');
    background-size: cover;
    background-position: center;
}

.post-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(16, 21, 34, 1) 0%, rgba(16, 21, 34, 0.4) 100%);
    z-index: 1;
}

.post-header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.post-categories {
    margin-bottom: 20px;
}

.post-categories a {
    display: inline-block;
    padding: 5px 15px;
    background: var(--lango-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 25px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.875rem;
    opacity: 0.8;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-content-wrap {
    padding: 80px 0;
    background: #fff;
}

.entry-content {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #444;
}

/* Post Share Styling */
.post-share {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

.post-share h4 {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--lango-text-secondary);
}

.share-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.share-btn::after {
    display: none !important;
}


.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.share-facebook {
    background: #3b5998;
}

.share-twitter {
    background: #000;
}

.share-linkedin {
    background: #0077b5;
}

.share-whatsapp {
    background: #25d366;
}

.share-facebook:hover {
    box-shadow: 0 10px 20px rgba(59, 89, 152, 0.3);
}

.share-twitter:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.share-linkedin:hover {
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.share-whatsapp:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}


.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 1.6em 0 0.6em;
    color: var(--lango-text-secondary);
    font-weight: 700;
    line-height: 1.3;
}

.entry-content h1 {
    font-size: 2.5rem;
}

.entry-content h2 {
    font-size: 2rem;
}

.entry-content h3 {
    font-size: 1.75rem;
}

.entry-content h4 {
    font-size: 1.5rem;
}

.entry-content h5 {
    font-size: 1.25rem;
}

.entry-content h6 {
    font-size: 1.1rem;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content a {
    color: var(--lango-primary);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: var(--lango-text-secondary);
    text-decoration: none;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 30px;
    padding-left: 30px;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 12px;
}

.entry-content ul {
    list-style: none;
}

.entry-content ul li {
    position: relative;
    padding-left: 25px;
}

.entry-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--lango-primary);
    border-radius: 50%;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.entry-content blockquote {
    padding: 40px 50px;
    background: #f8f9fa;
    border-left: 6px solid var(--lango-primary);
    border-radius: 0 16px 16px 0;
    margin: 50px 0;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--lango-text-secondary);
    position: relative;
}

.entry-content blockquote::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--lango-primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.entry-content hr {
    border: none;
    height: 1px;
    background: #eef0f2;
    margin: 50px 0;
}

.entry-content pre {
    background: #1a1e2b;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    overflow-x: auto;
    margin-bottom: 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
}

.entry-content code {
    background: #f1f3f5;
    color: #d63384;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.entry-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: inherit;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.entry-content th,
.entry-content td {
    padding: 15px;
    border: 1px solid #eef0f2;
    text-align: left;
}

.entry-content th {
    background: #f8f9fa;
    font-weight: 700;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tags-label {
    font-weight: 700;
    color: var(--lango-text-secondary);
}

.post-tags a {
    padding: 4px 12px;
    background: #f1f1f1;
    color: #666;
    border-radius: 4px;
    font-size: 0.875rem;
}

.post-tags a:hover {
    background: var(--lango-primary);
    color: #fff;
}

/* Post Navigation */
.post-navigation {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #f6f8fa;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-links.single-nav {
    grid-template-columns: 1fr;
}

.nav-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 220px;
    padding: 40px;
    background: #101522;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.nav-card-placeholder {
    background-image: url('assets/images/blog-placeholder.png');
    background-size: cover;
    background-position: center;
}

.nav-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(16, 21, 34, 0.9) 0%, rgba(16, 21, 34, 0.4) 100%);
    z-index: 1;
}

.nav-card:hover .nav-card-bg {
    transform: scale(1.1);
}

.nav-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.nav-card .nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lango-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1.5px;
}

.prev-card .nav-label svg {
    transform: rotate(180deg);
}

.nav-card .nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .nav-links {
        grid-template-columns: 1fr;
    }

    .nav-card {
        min-height: 180px;
        padding: 30px;
    }

    .nav-card .nav-title {
        font-size: 1.25rem;
    }
}

/* Comments Section */
.comments-area {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
    color: var(--lango-text-secondary);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f5f5f5;
}

.comment-item .children {
    list-style: none;
    margin-top: 30px;
    padding-left: 60px;
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author-name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.comment-author-name a {
    color: var(--lango-text-secondary);
}

.comment-author-name a:hover {
    color: var(--lango-primary);
}

.comment-meta {
    font-size: 0.8125rem;
    color: #999;
}

.comment-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.comment-awaiting-moderation {
    font-style: italic;
    font-size: 0.875rem;
    color: var(--lango-primary);
    margin-bottom: 10px;
}

.comment-reply a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--lango-primary);
    text-transform: uppercase;
}

.comment-reply a:hover {
    color: var(--lango-text-secondary);
}

/* Comment Form */
.comment-respond {
    margin-top: 60px;
    padding: 40px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: block;
}

.comment-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.comment-form p {
    margin-bottom: 0;
}

.comment-form-comment,
.comment-form-cookies-consent,
.form-submit {
    grid-column: span 2;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--lango-text-secondary);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--lango-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 139, 255, 0.1);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
}

.comment-form-cookies-consent input {
    width: auto;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.5rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }

    .comment-body {
        flex-direction: column;
    }

    .comment-item .children {
        padding-left: 20px;
    }

    .comment-form {
        grid-template-columns: 1fr;
    }

    .comment-form-comment,
    .comment-form-cookies-consent,
    .form-submit {
        grid-column: span 1;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.5rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

/* ==========================================================================
   Video Modal
   ========================================================================== */
.langoapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.langoapp-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--lango-primary);
    transform: rotate(90deg);
}

.video-container {
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #000;
    border-radius: 12px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--lango-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-3 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--lango-bg);
}

.contact-wrapper {
    margin-top: 60px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* Info Cards */
.contact-info-cards {
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(33, 139, 255, 0.1);
    color: var(--lango-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 8px;
    color: var(--lango-text-secondary);
    font-size: 1.125rem;
    font-weight: 700;
}

.info-content p {
    margin: 0;
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.social-card {
    flex-direction: column;
    gap: 15px;
}

.contact-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.contact-socials a {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    color: var(--lango-text-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background: var(--lango-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Form Styling */
.contact-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 5px 20px var(--lango-shadow);
    width: 100%;
    max-width: 1100px;
}

.contact-form-container .wpcf7-form .row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-form-container .wpcf7-form .row p input,
.contact-form-container .wpcf7-form .row p textarea {
    margin-top: 5px;
}

.contact-form-container .wpcf7-form p {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-form-container .wpcf7-form .row {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* Name, Email, Subject - Row 1 */
    .contact-form-container .wpcf7-form p:nth-of-type(1),
    .contact-form-container .wpcf7-form p:nth-of-type(2),
    .contact-form-container .wpcf7-form p:nth-of-type(3) {
        grid-column: span 1;
    }

    /* Message - Row 2 */
    .contact-form-container .wpcf7-form p:nth-of-type(4) {
        grid-column: span 3;
    }

    /* Submit wrapper - Row 3 */
    /* Target both P wrapper or the button itself if direct child */
    .contact-form-container .wpcf7-form p:nth-of-type(5),
    .contact-form-container .wpcf7-form .wpcf7-submit {
        grid-column: span 3 !important;
        text-align: center;
        width: 100%;
    }
}

.contact-form-container .wpcf7-form label {
    display: block;
    font-weight: 700;
    color: var(--lango-text-secondary);
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.contact-form-container .wpcf7-form input[type="text"],
.contact-form-container .wpcf7-form input[type="email"],
.contact-form-container .wpcf7-form input[type="tel"],
.contact-form-container .wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-container .wpcf7-form input:focus,
.contact-form-container .wpcf7-form textarea:focus {
    border-color: var(--lango-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(33, 139, 255, 0.1);
}

.contact-form-container .wpcf7-form textarea {
    height: 150px;
    resize: none;
}

.contact-form-container .wpcf7-submit {
    width: 100%;
    padding: 18px 30px;
    background: var(--lango-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.contact-form-container .wpcf7-submit:hover {
    background: var(--lango-text-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 21, 34, 0.2);
}

.contact-form-container .wpcf7-spinner {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px;
    }
}

/* ==========================================================================
   Error 404 Page
   ========================================================================== */
.error-404-section {
    padding: 150px 0;
    background: #fcfdfe;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.error-icon svg {
    color: var(--lango-primary);
    opacity: 0.15;
}

.error-code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: var(--lango-text-secondary);
    line-height: 1;
}

.error-text {
    font-size: 1.125rem;
    color: var(--lango-text-light);
    margin-bottom: 40px;
}

/* Search Styling */
.search-form {
    width: 100%;
}

.search-form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-field {
    width: 100%;
    padding: 20px 75px 20px 35px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    outline: none;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.search-submit {
    width: 52px;
    height: 52px;
    background: var(--lango-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.search-submit:hover {
    background: #fff;
    color: var(--lango-primary);
}

.search-submit svg {
    transition: transform 0.3s ease;
}

.search-submit:hover svg {
    transform: scale(0.9);
}

.error-search {
    max-width: 550px;
    margin: 0 auto 40px;
}

/* Contextual fixes (404/Blog Archive) */
.blog-archive-section .search-field,
.error-404-section .search-field {
    background: #fff;
    border: 2px solid #eee;
    color: var(--lango-text-secondary);
}

.blog-archive-section .search-field::placeholder,
.error-404-section .search-field::placeholder {
    color: #94a3b8 !important;
}

/* Header Search Toggle */
.search-toggle {
    background: none;
    border: none;
    color: var(--lango-text-secondary);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 20px;
}

.search-toggle:hover {
    color: var(--lango-primary);
    transform: scale(1.2);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.search-overlay.active {
    visibility: visible;
    opacity: 1;
}

.search-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(15px);
}

.search-overlay-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 1;
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-close:hover {
    background: var(--lango-primary);
    border-color: var(--lango-primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(var(--lango-primary-rgb), 0.4);
}

.search-overlay .container {
    max-width: 800px;
    text-align: center;
}

.search-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.search-overlay .search-field {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.search-overlay .search-submit {
    right: 20px;
    width: 65px;
    height: 65px;
}

.search-hint {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 35px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .search-title {
        font-size: 2.5rem;
    }

    .search-overlay .search-field {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .search-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .search-close {
        top: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }

    .search-overlay .search-field {
        font-size: 1.15rem;
        padding: 20px 75px 20px 30px;
    }

    .search-overlay .search-submit {
        width: 50px;
        height: 50px;
        right: 12px;
    }
}

.search-field.shake {
    animation: searchShake 0.4s ease-in-out;
    border-color: #ff4d4d !important;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.2) !important;
}

@keyframes searchShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-10px);
    }

    40%,
    80% {
        transform: translateX(10px);
    }
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
    background-color: #fff;
    padding: 100px 0;
}

.team-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.team-heading {
    font-size: 4rem;
    font-weight: 900;
    color: var(--lango-text-secondary);
    margin-bottom: 40px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.team-logo-wrap {
    margin-bottom: 50px;
}

.team-logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
}

.team-description p {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--lango-text-secondary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .team-heading {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .team-description p {
        font-size: 1.125rem;
    }

    .team-logo {
        max-width: 180px;
    }
}

/* ==========================================================================
   App Info Section
   ========================================================================== */
.app-info-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.app-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 21, 34, 0.85);
    /* Dark dim overlay */
    z-index: 1;
}

.app-info-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-info-mockup-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.app-info-content-col {
    flex: 1.2;
}

.app-info-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.app-info-desc {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.app-info-desc p {
    margin-bottom: 1.5rem;
    color: inherit;
}

.app-info-desc ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.app-info-desc ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 500;
}

.app-info-desc ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lango-primary);
    font-size: 20px;
}

.app-info-btn {
    background: #fff;
    color: var(--lango-primary);
    padding: 16px 40px;
    font-size: 1.125rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
}

.app-info-btn:hover {
    background: var(--lango-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* App Image Wrap */
.app-info-image-wrap {
    width: 100%;
    max-width: 280px;
}

.app-info-image-wrap img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.app-info-btn-wrap {
    display: flex;
    gap: 20px;
}

.mockup-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--lango-primary);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 700;
    color: #101522;
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    color: var(--lango-primary);
}

.faq-item.active .faq-question {
    color: var(--lango-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Adjust based on content */
}

.faq-answer-inner {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.6;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* Premium FAQ Decor */
.faq-page-wrapper {
    position: relative;
    overflow: hidden;
}

.faq-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--lango-primary-rgb) 0%, rgba(var(--lango-primary-rgb), 0) 70%);
    opacity: 0.05;
    z-index: -1;
    border-radius: 50%;
}

.faq-decor-1 {
    top: -100px;
    right: -100px;
}

.faq-decor-2 {
    bottom: 100px;
    left: -150px;
    width: 600px;
    height: 600px;
}

.faq-cta {
    background: #f8faff;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-cta p {
    margin-bottom: 30px;
    color: #64748b;
}

.faq-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.875rem;
    color: #94a3b8;
}

.faq-breadcrumb a {
    color: inherit;
}

.faq-breadcrumb span {
    margin: 0 10px;
    color: #cbd5e1;
}


@media (max-width: 991px) {
    .app-info-section {
        min-height: auto;
        padding: 60px 0;
    }

    .app-info-grid {
        flex-direction: column;
        text-align: center;
    }

    .app-info-mockup-col {
        margin-bottom: 50px;
        order: 2;
    }

    .app-info-content-col {
        order: 1;
    }

    .app-info-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .phone-secondary {
        right: -30px;
    }
}