/*
   LANDING PAGE STYLES
 */

/* Reset & Base Styles */
:root {
    /* Primary Colors - Blue Theme */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-blue-lighter: #60a5fa;

    /* Secondary Colors */
    --secondary-green: #10b981;
    --secondary-purple: #8b5cf6;
    --secondary-orange: #f59e0b;
    --secondary-yellow-shape: #7fb7fa;
    --secondary-blue-shape: #60a5fa;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-family:
        "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/*
   NAVBAR STYLES
 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem var(--spacing-md); /* Reduced top/bottom padding slightly */
    gap: var(--spacing-md);
    max-width: 1190px; /* ALIGNED WITH CONTENT */
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    flex-shrink: 0;
    max-width: 200px;
}

.navbar-brand img {
    max-height: 45px; /* Slightly smaller logo */
    width: auto;
    height: auto;
    object-fit: contain;
}

.navbar-brand i {
    font-size: var(--font-size-2xl);
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-800);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

/* Navbar Menu Center */
.navbar-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem; /* REDUCED SPACING */
    list-style: none;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px; /* Reduced gap icon-text */
    padding: 0.4rem 0.8rem; /* Reduced padding */
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem; /* Slightly smaller font */
    transition: var(--transition);
    white-space: nowrap;
    border-radius: var(--radius-full); /* More rounded hover effect */
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(37, 99, 235, 0.05);
}

.nav-link.active {
    color: var(--primary-blue);
    background-color: rgba(37, 99, 235, 0.08);
}

.nav-item.nav-active > .nav-link {
    color: var(--primary-blue);
    background-color: rgba(37, 99, 235, 0.08);
    font-weight: 600;
}

.nav-link i {
    font-size: 0.7rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 0.5rem;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(
        90deg,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(37, 99, 235, 0.03) 100%
    );
    color: var(--primary-blue);
    padding-left: 1.25rem;
}

.navbar-cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap between buttons */
}

.navbar-cta .btn {
    font-size: 0.85rem; /* Smaller font size */
    padding: 0.5rem 1.25rem; /* Smaller padding */
    font-weight: 600;
    border-radius: 50px; /* Pill shape */
}

/* Hide menu-daftar on desktop (show navbar-cta instead) */
.menu-daftar {
    display: none;
}

/* Mobile Menu Toggle */
@media (max-width: 991px) {
    .navbar-container {
        flex-wrap: wrap;
    }

    .navbar-brand {
        max-width: 120px;
        order: 1;
    }

    .navbar-brand img {
        max-height: 35px;
    }

    .navbar-toggler {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .navbar-menu-center {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.3s ease;
        transform: none;
        order: 4;
        width: 100%;
        z-index: 998;
    }

    .navbar-menu-center.active {
        max-height: calc(100vh - 60px);
        padding: var(--spacing-md) 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0; /* Reset gap for mobile */
        padding: 0 var(--spacing-md);
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link {
        width: 100%;
        padding: var(--spacing-md);
        justify-content: space-between;
        border-radius: var(--radius-md); /* Reset radius for mobile items */
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--gray-50);
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-item {
        padding: var(--spacing-sm) var(--spacing-xl);
    }

    /* Hide navbar-cta button on desktop, show in menu */
    .navbar-cta {
        display: none;
    }

    /* Show Daftar button inside menu on mobile */
    .menu-daftar {
        display: block;
        border: none;
        padding: var(--spacing-md);
    }

    .btn-mobile-daftar {
        width: 100%;
        justify-content: center;
        border-radius: 50px; /* Pill shape also for mobile */
    }
}

/*
   BUTTON STYLES
 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 50px; /* GLOBAL PILL SHAPE */
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark) 0%,
        #1e3a8a 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-premium {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1.8px solid var(--primary-blue);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    padding-left: 1.25rem;
}

.btn-outline-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
    transition: var(--transition);
}

.btn-outline-premium:hover {
    background: linear-gradient(
        90deg,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(37, 99, 235, 0.02) 100%
    );
    border-color: var(--primary-blue-dark);
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-outline-premium:hover::before {
    width: 5px;
    background: linear-gradient(
        180deg,
        var(--primary-blue-dark) 0%,
        #1e3a8a 100%
    );
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-success {
    background-color: var(--secondary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: var(--font-size-base);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xs);
}

/*
   HERO SECTION
 */
.hero-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(
        135deg,
        #eff6ff 0%,
        #dbeafe 100%
    ); /* Original Blue Gradient */
    overflow: visible; /* Allow shapes to overflow wrapper */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-badge i {
    color: var(--secondary-orange);
}

.rotating-text {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 100px;
    text-align: left;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat-item h3 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

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

.hero-image-wrapper {
    position: relative;
    z-index: 5; /* Ensure wrapper stays above shapes */
}

.hero-image-wrapper img {
    border-radius: var(--radius-xl);
    width: 100%;
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply; /* Makes white background of image merge with section background */
}

/* Abstract Shapes for Hero - About Us Style */
.shape-circle-blue {
    position: absolute;
    top: 40px;
    right: -70px;
    width: 140px;
    height: 140px;
    border: 25px solid #60a5fa;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
    clip-path: inset(
        0 0 0 50%
    ); /* Only show the outer half, hide overlap with image */
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: var(--font-size-2xl);
    color: var(--primary-blue);
}

.floating-card strong {
    display: block;
    font-size: var(--font-size-lg);
    color: var(--gray-900);
}

.floating-card span {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
}

.card-1 {
    top: 20%;
    left: -10%;
}

.card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1.5s;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

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

@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-badge {
        margin-top: var(--spacing-lg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: space-between;
    }

    .card-1,
    .card-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 70px 0 60px;
    }

    .hero-badge {
        font-size: var(--font-size-xs);
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: var(--font-size-sm);
    }

    .hero-stats {
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: var(--font-size-xl);
    }

    .stat-label {
        font-size: var(--font-size-xs);
    }
}

/*
   SECTION STYLES
 */
section {
    padding: var(--spacing-3xl) 0;
}

.section-header,
.section-header-center {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-lg);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 576px) {
    section {
        padding: var(--spacing-2xl) 0;
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .section-subtitle {
        font-size: var(--font-size-base);
    }

    .section-badge {
        font-size: var(--font-size-xs);
    }
}

/*
   EXPERTISE STRIP SECTION
 */
.expertise-strip-section {
    padding: 0;
    margin-top: -60px;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.expertise-strip {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 40px;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
}

.expertise-text {
    flex: 0 0 auto;
    min-width: 220px;
}

.expertise-label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.expertise-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.45;
}

.expertise-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(
        180deg,
        transparent,
        var(--gray-200),
        transparent
    );
    flex-shrink: 0;
}

.expertise-tools {
    display: flex;
    align-items: center;
    gap: 27px;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    overflow: hidden;
}

.expertise-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: default;
    flex: 0 1 auto;
    min-width: 0;
}

.expertise-tool-item:hover {
    transform: translateY(-4px);
}

.expertise-tool-img {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    transition: var(--transition);
}

.expertise-tool-item:hover .expertise-tool-img {
    transform: scale(1.05);
}

.expertise-tool-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Expertise Strip Responsive */
@media (max-width: 992px) {
    .expertise-strip-section {
        margin-top: -40px;
    }

    .expertise-strip {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .expertise-text {
        min-width: auto;
    }

    .expertise-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(
            90deg,
            transparent,
            var(--gray-200),
            transparent
        );
    }

    .expertise-tools {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .expertise-strip-section {
        margin-top: -20px;
    }
}

@media (max-width: 576px) {
    .expertise-strip-section {
        margin-top: 10px;
    }

    .expertise-strip {
        padding: 20px 16px;
    }

    .expertise-title {
        font-size: 0.95rem;
    }

    .expertise-tool-img {
        height: 36px;
    }

    .expertise-tools {
        gap: 14px;
    }

    .expertise-tool-name {
        font-size: 0.6rem;
    }
}

/*
   CLIENT SECTION
 */
.client-section {
    background-color: var(--gray-50);
    padding: var(--spacing-2xl) 0;
    margin-top: -60px;
    padding-top: 200px;
}

.client-ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

/* Gradient Mask for fading edges */
.client-ticker-wrapper::before,
.client-ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.client-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-50) 0%, transparent 100%);
}

.client-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-50) 0%, transparent 100%);
}

.client-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-x 35s linear infinite;
}

.client-ticker-track:hover {
    animation-play-state: paused;
}

.client-item-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--spacing-xl); /* Spacing between logos */
}

.client-logo-ticker {
    height: 120px; /* Increased logo height */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    max-width: 220px; /* Allowed wider max-width for balance */
}

@keyframes scroll-x {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translate left by half the track width (the original set) */
        transform: translateX(-50%);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .client-ticker-wrapper::before,
    .client-ticker-wrapper::after {
        width: 60px;
    }

    .client-logo-ticker {
        height: 40px;
        max-width: 140px;
    }

    .client-item-ticker {
        padding: 0 var(--spacing-lg);
    }
}

/*
   FEATURED PROGRAMS SECTION (v2 - Clean Layout)
 */
.featured-programs-section {
    padding: 80px 0;
    background-color: #fcfdfe;
    position: relative;
}

.fp-section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.featured-program-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.featured-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fp-card-image-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.fp-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-program-card:hover .fp-card-image {
    transform: scale(1.08);
}

.fp-card-body {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.fp-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #1e293b;
}

.fp-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #64748b;
}

.fp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.fp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.4;
}

.fp-feature-item i {
    color: #22c55e;
    font-size: 1rem;
    margin-top: 2px;
}

.fp-card-footer {
    margin-top: auto;
}

.fp-btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: 1.5px solid #2563eb;
    color: #2563eb;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fp-btn-detail:hover {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.3);
}

/* Featured Programs Responsive */
@media (max-width: 1200px) {
    .featured-programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 868px) {
    .featured-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-programs-grid {
        grid-template-columns: 1fr;
    }

    .fp-card-image-wrapper {
        height: 200px;
    }
}

/*
   WHY SADA SECTION
 */
.why-section.why-schoters-style {
    background: linear-gradient(135deg, #1e5fc2 0%, #60a5fa 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.why-schoters-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.why-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.why-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    border-radius: 12px;
}

.why-cards-container {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-card-schoters {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

.why-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon-wrapper i {
    font-size: 1.5rem;
    color: #2563eb;
}

.why-card-content {
    flex: 1;
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e88e5; /* Distinct blue for the title */
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-card-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .why-schoters-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .why-illustration {
        order: 2; /* Move image below cards on mobile */
        margin-top: 2rem;
    }

    .why-cards-container {
        order: 1;
        width: 100%;
    }
}

/*
   PROGRAMS SECTION (Refactored Slider)
 */
.programs-section {
    background-color: var(--gray-50);
}

.program-filters {
    display: flex;
    justify-content: flex-start; /* Left align */
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gray-200);
    background-color: var(--white);
    color: var(--gray-600);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.programs-slider-wrapper {
    position: relative;
    /* padding: 0 var(--spacing-lg); Removed padding as arrows are outside */
}

.programs-slider {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: var(--spacing-md) 0; /* Space for shadows */
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.programs-slider::-webkit-scrollbar {
    display: none;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* Updated Program Card Styles */
.program-card {
    min-width: 320px; /* Fixed width for slider items */
    max-width: 320px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-md);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Slider Controls (Bottom Left) */
.slider-controls {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--primary-blue);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.program-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2ff, #dbeafe);
}

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

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-size: 3rem;
    opacity: 0.5;
}

/* Badges */
.program-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.badge-webinar,
.badge-workshop,
.badge-bootcamp {
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    backdrop-filter: blur(4px);
}

/* Mode */
.program-mode {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

/* Content */
.program-content {
    padding: 20px 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.meta-date,
.meta-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #6b7280;
}

.program-meta i,
.meta-date i,
.meta-time i {
    color: #2563eb;
    font-size: 0.75rem;
}

.program-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.program-card:hover .program-title {
    color: #2563eb;
}

.program-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    margin-top: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #6b7280;
}

.info-item i {
    color: #2563eb;
    width: 16px;
    text-align: center;
    font-size: 0.75rem;
}

/* Footer */
.program-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-top: 1px solid #f3f4f6;
    background: #fafbfc;
}

.program-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2563eb;
}

.program-price.price-free-text {
    color: #10b981;
}

.price-original {
    font-size: 0.85rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
    animation: blinkPrice 1.5s ease-in-out infinite;
}

@keyframes blinkPrice {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.price-promo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #dc2626;
    display: block;
    line-height: 1.2;
}

.program-footer .btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Programs Empty State */
.programs-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.programs-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.programs-empty-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.programs-empty h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.programs-empty p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/*
   EXPERTS SECTION (SCHOTERS STYLE)
 */
.experts-section.experts-schoters-style {
    background: linear-gradient(180deg, #f0f8ff 0%, #1e5fc2 100%);
    padding: 80px 0 120px;
}

.experts-section.experts-schoters-style .section-title {
    color: #1f2937;
    font-weight: 800;
}

.experts-grid-schoters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.expert-card-schoters {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px; /* Space for the floating image */
}

.expert-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: -30px; /* Overlap with the white card */
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.expert-blob-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3b82f6; /* Blue blob */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    transform: rotate(-10deg);
}

.expert-star {
    position: absolute;
    color: #f97316; /* Orange star */
    font-size: 1.5rem;
    z-index: 3;
}

.star-1 {
    top: 15%;
    left: 5%;
    font-size: 1.2rem;
}

.star-2 {
    bottom: 30%;
    right: 0%;
    font-size: 1.8rem;
}

.expert-portrait {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px; /* Adjust to float naturally within the wrapper */
}

.expert-info-schoters {
    background: #ffffff;
    width: 100%;
    border-radius: 12px;
    padding: 40px 20px 20px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex: 1; /* Makes all cards in a row equal height */
    position: relative;
    z-index: 1;
}

.expert-category-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.expert-category-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #dbeafe;
}

.expert-name-schoters {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 4px;
}

.expert-title-schoters {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 20px;
}

.expert-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expert-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.4;
}

.achievement-icon {
    color: #10b981; /* Green checkmark */
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive constraints for the grid */
@media (max-width: 1024px) {
    .experts-grid-schoters {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .experts-grid-schoters {
        grid-template-columns: 1fr;
    }
}

/*
   TESTIMONIAL SECTION - Schoters Style
 */
.testimonial-section {
    background-color: #f8fafc;
    padding: 80px 0;
    position: relative;
}

.testi-section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
}

.testimonial-section .section-title {
    color: #1e293b;
    text-align: center;
}

.testimonial-section .section-subtitle {
    color: #64748b;
    text-align: center;
}

/* Slider Wrapper */
.testi-slider-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 -12px;
    padding: 0 12px;
}

/* Track — contiguous row of ALL cards */
.testi-track {
    display: flex;
    gap: 0;
    margin: 4px -12px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Card — 1/3 of wrapper width with gaps */
.testi-card {
    flex: 0 0 calc(100% / 3 - 24px);
    margin: 4px 12px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #e8edf4;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

.testi-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Card Top: avatar left, flag/icon right */
.testi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.testi-avatar-wrapper {
    position: relative;
}

.testi-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0eaff;
}

.testi-flag {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f0f4ff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dde8ff;
}

.testi-program-icon {
    font-size: 1.6rem;
    line-height: 1;
}

/* Card body text */
.testi-card-body {
    margin-bottom: 14px;
}

.testi-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
    line-height: 1.3;
}

.testi-institution {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    margin: 0 0 3px;
    line-height: 1.3;
}

.testi-program {
    font-size: 0.82rem;
    font-weight: 500;
    color: #3b82f6;
    margin: 0;
    line-height: 1.3;
}

/* Testimonial text */
.testi-comment {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

/* Controls */
.testi-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 2.5rem;
}

.testi-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #d0d9e8;
    color: #2563eb;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.testi-arrow:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    transform: scale(1.05);
}

.testi-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testi-dot.active {
    width: 26px;
    border-radius: 10px;
    background: #2563eb;
}

/* Responsive */
@media (max-width: 991px) {
    .testi-card {
        flex: 0 0 calc(100% / 2 - 24px);
    }
}

@media (max-width: 575px) {
    .testi-card {
        flex: 0 0 calc(100% - 24px);
    }

    .testi-section-badge {
        font-size: 0.72rem;
    }

    .testimonial-section {
        padding: 50px 0;
    }
}


/* Animated Background Circles */
.testimonial-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.testimonial-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-circle.circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: testimonialFloat 18s ease-in-out infinite;
}

.testimonial-circle.circle-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 70%
    );
    animation: testimonialFloat 22s ease-in-out infinite reverse;
}

.testimonial-circle.circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 60%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    animation: testimonialFloat 15s ease-in-out infinite;
}

@keyframes testimonialFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(15px, -20px) scale(1.03);
    }
    66% {
        transform: translate(-10px, 10px) scale(0.97);
    }
}



/* Wrapper */
.testimonial-wrapper {
    position: relative;
    z-index: 2;
}

/* Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
    border-radius: var(--radius-xl);
}

.testimonial-track {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card */
.testimonial-card {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-card-inner {
    background: var(--white);
    padding: 40px 44px;
    border-radius: 20px;
    color: var(--gray-800);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-card-accent {
    display: none;
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.testimonial-quote-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

/* Rating */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 1rem;
}

.testimonial-rating i.empty {
    color: #e5e7eb;
}

/* Comment */
.testimonial-comment {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
}

/* Divider */
.testimonial-card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gray-200),
        transparent
    );
    margin-bottom: 24px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-photo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.author-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.author-photo-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    z-index: 0;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.author-position {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--white);
}

/* Dots */
.testimonial-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card-inner {
        padding: 28px 24px;
    }

    .testimonial-comment {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-quote-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .testimonial-quote-icon i {
        font-size: 1.1rem;
    }

    .author-photo {
        width: 48px;
        height: 48px;
    }

    .testimonial-circle.circle-1 {
        width: 300px;
        height: 300px;
    }

    .testimonial-circle.circle-2 {
        width: 200px;
        height: 200px;
    }

    .testimonial-circle.circle-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: var(--spacing-2xl) 0;
    }

    .testimonial-card-inner {
        padding: 24px 20px;
    }

    .testimonial-controls {
        gap: 14px;
        margin-top: 28px;
    }

    .testimonial-btn {
        width: 42px;
        height: 42px;
        font-size: 0.85rem;
    }
}

/*
   HELP SECTION
 */
.help-section {
    background-color: var(--gray-50);
}

.help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.help-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.help-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.help-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.help-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
}

.help-features i {
    color: var(--secondary-green);
    font-size: var(--font-size-xl);
}

.help-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.help-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .help-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .help-title {
        font-size: var(--font-size-3xl);
    }
}

/*
   CONTACT & CTA SECTION (Combined)
 */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

/* Contact Card (WhatsApp) */
.contact-card {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(37, 211, 102, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

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

.contact-card-icon {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-lg);
}

.whatsapp-icon-bg {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    z-index: 2;
    position: relative;
}

.whatsapp-icon-bg i {
    font-size: 3rem;
    color: var(--white);
}

.whatsapp-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-out infinite;
    top: 0;
    left: 0;
}

/* Contact Info (Left Side) */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-benefits li i {
    color: #10b981;
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.contact-benefits li span {
    font-size: var(--font-size-base);
    color: var(--white);
    font-weight: 500;
}

/* Contact Cards (Right Side) */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-method-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-card .card-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.phone-card .card-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
}

.email-card .card-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
}

.card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.card-text {
    flex: 1;
}

.card-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: 4px;
    display: block;
}

.card-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gray-900);
    display: block;
}

.whatsapp-card .card-value {
    color: #25d366;
}

.phone-card .card-value,
.email-card .card-value {
    color: var(--primary-blue);
}

@media (max-width: 991px) {
    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact-title {
        font-size: 2rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .card-value {
        font-size: var(--font-size-base);
    }
}

/*
   FOOTER
 */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    max-width: 250px;
}

.footer-brand img {
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-brand i {
    font-size: var(--font-size-3xl);
    color: var(--primary-blue-light);
}

.footer-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-800);
    color: var(--gray-300);
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-title {
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-contact i {
    color: var(--primary-blue-light);
    flex-shrink: 0;
    font-size: var(--font-size-base);
    width: 18px;
    text-align: center;
}

.footer-contact span {
    flex: 1;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
}

/*
   FLOATING CUSTOMER SERVICE BUTTON
 */
.cs-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: csWiggle 3s ease-in-out infinite;
}

.cs-button:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.cs-button:hover .cs-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.cs-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--gray-900);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.cs-tooltip::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--gray-900);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes csWiggle {
    0%,
    100% {
        transform: rotate(0deg);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }
    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
    15%,
    35%,
    55%,
    75%,
    95% {
        box-shadow: 0 10px 35px rgba(37, 99, 235, 0.6);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/*
   RESPONSIVE DESIGN
 */
@media (max-width: 768px) {
    .cs-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: var(--font-size-2xl);
    }

    .cs-tooltip {
        display: none;
    }
}
