/* ============================================
   PEN MY PAPERS - PREMIUM ACADEMIC THEME
   Fully Responsive Design
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --primary: #ffffff;
    --primary-light: #F8FAFC;
    --secondary: #F1F5F9;
    --accent: #1E40AF;
    --accent-light: #3B82F6;
    --accent-hover: #2563EB;
    --accent-secondary: #F59E0B;
    --accent-secondary-hover: #D97706;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-1: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --gradient-2: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    --gradient-hero: linear-gradient(160deg, #FFFFFF 0%, #EFF6FF 40%, #F8FAFC 100%);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(30, 64, 175, 0.12);
    --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.1);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border-color: #E2E8F0;
    --radius-sm: 2px;
    --radius-md: 2px;
    --radius-lg: 2px;
    --radius-xl: 2px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(30, 64, 175, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
    color: #fff;
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:active {
    transform: translateY(0);
}

.btn-outline-premium {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: none;
    font-family: var(--font-primary);
}

.btn-outline-premium::before {
    display: none;
}

.btn-outline-premium:hover {
    background: var(--primary-light);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}

/* === SITE HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

/* === TOP BAR === */
.top-bar {
    background: var(--text-primary);
    padding: 8px 0;
    font-size: 0.78rem;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar a,
.top-bar span {
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar-contact a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact a:hover {
    color: #fff !important;
}

.top-bar-contact a i {
    font-size: 0.68rem;
    color: var(--accent-secondary);
}

.top-icon {
    color: var(--accent-secondary);
    font-size: 0.78rem;
}

.top-social-link {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: var(--transition-fast);
    font-size: 0.65rem;
}

.top-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff !important;
    transform: translateY(-1px);
}

/* === NAVBAR === */
.main-nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.main-nav > .container {
    display: flex;
    align-items: center;
    height: 68px;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 20px rgba(15, 23, 42, 0.06);
    border-bottom-color: transparent;
}

.main-nav .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: auto;
}

.navbar-logo {
    height: 46px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 44px;
    width: auto;
    display: block;
}

.main-nav .navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 15px;
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 2px;
    line-height: 1.4;
}

.main-nav .navbar-nav .nav-link:hover {
    color: var(--accent);
    background: rgba(30, 64, 175, 0.04);
}

.main-nav .navbar-nav .nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

.main-nav .navbar-nav .nav-link::after {
    display: none;
}

/* Nav CTA Button */
.nav-cta {
    margin-left: 8px;
}

.btn-nav-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 2px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

/* Hamburger Toggler */
.navbar-toggler {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    background: var(--primary-light);
}

.navbar-toggler:hover {
    background: var(--primary-light);
}

.toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar-toggler:hover .toggler-bar {
    background: var(--accent);
}

/* Nav Dropdown */
@media (min-width: 992px) {
    .nav-dropdown {
        background: #fff;
        border: none;
        border-radius: 2px;
        padding: 10px;
        box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05);
        margin-top: 12px;
        min-width: 240px;
    }

    .nav-drop-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        color: var(--text-secondary);
        border-radius: 2px;
        font-size: 0.86rem;
        font-weight: 500;
        transition: var(--transition-fast);
    }

    .nav-drop-item:hover,
    .nav-drop-item:focus {
        background: linear-gradient(135deg, #EFF6FF, #EEF2FF);
        color: var(--accent);
    }

    .nav-drop-item i {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.06), rgba(139, 92, 246, 0.06));
        border-radius: 2px;
        color: var(--accent);
        font-size: 0.78rem;
        flex-shrink: 0;
        transition: var(--transition-fast);
    }

    .nav-drop-item:hover i {
        background: linear-gradient(135deg, #2563EB, #7C3AED);
        color: #fff;
    }
}

@media (max-width: 991px) {
    .nav-dropdown {
        background: var(--primary-light);
        border: none;
        box-shadow: none;
        padding: 6px 0;
        margin: 4px 16px 4px 16px;
        border-radius: 8px;
        border-left: 3px solid var(--accent-light);
    }

    .nav-drop-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        color: var(--text-secondary);
        font-size: 0.88rem;
        font-weight: 500;
        transition: var(--transition-fast);
        border-radius: 0;
    }

    .nav-drop-item:hover,
    .nav-drop-item:focus,
    .nav-drop-item:active {
        color: var(--accent);
        background: rgba(30, 64, 175, 0.06);
    }

    .nav-drop-item i {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.08));
        border-radius: 6px;
        color: var(--accent);
        font-size: 0.72rem;
        flex-shrink: 0;
    }

    .dropdown-toggle::after {
        transition: var(--transition-fast);
    }

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

.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    font-size: 0.65rem;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 160px 0 80px;
}

.hero-section .row {
    align-items: center;
}

.hero-content {
    padding-right: 48px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(239, 246, 255, 0.90) 40%,
        rgba(248, 250, 252, 0.88) 100%);
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 64, 175, 0.05);
    border: 1px solid rgba(30, 64, 175, 0.12);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    max-width: 480px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item i {
    color: var(--success);
    font-size: 0.72rem;
}

/* Hero Form */
.hero-form {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 1px 3px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.08);
}

.hero-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.hero-form-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.form-discount {
    background: var(--gradient-2);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-form-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 22px 22px;
}

.hero-form .form-control {
    background: var(--primary-light);
    border: 1px solid rgba(30, 64, 175, 0.08);
    border-radius: 2px;
    color: var(--text-primary);
    padding: 10px 14px;
    font-size: 0.86rem;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.hero-form .form-control:focus {
    background: #fff;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.hero-form .form-control::placeholder {
    color: var(--text-muted);
}

.hero-form textarea.form-control {
    min-height: 56px;
    resize: vertical;
}

.hero-form .btn-premium {
    width: 100%;
    justify-content: center;
    padding: 11px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: 2px;
}

/* === COUNTER SECTION === */
.counter-section {
    background: linear-gradient(90deg, #0B111E 0%, #111827 50%, #0B111E 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 0%, rgba(139, 92, 246, 0.04) 50%, rgba(59, 130, 246, 0.06) 100%);
}

.counter-section .row {
    --bs-gutter-x: 0;
}

.counter-item {
    text-align: center;
    padding: 24px 16px;
    position: relative;
    transition: var(--transition);
}

.counter-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.col-6.col-md-3:last-child .counter-item::after {
    display: none;
}

.counter-icon {
    display: none;
}

.counter-info {
    text-align: center;
}

.counter-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60A5FA, #93C5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.counter-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 88px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 100%);
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.services-header .section-title {
    margin-bottom: 0;
    font-size: 2rem;
}

.services-header .section-tag {
    margin-bottom: 8px;
}

.services-header-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 320px;
    text-align: right;
    margin: 0;
    flex-shrink: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.svc-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    position: relative;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #3B82F6, #8B5CF6) 1;
    border-image-slice: 0 0 0 1;
}

.svc-card:hover {
    border-image: linear-gradient(180deg, #2563EB, #7C3AED) 1;
    border-image-slice: 0 0 0 1;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    color: inherit;
}

.svc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.06) 0%, rgba(59, 130, 246, 0.06) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    transition: var(--transition);
}

.svc-card:hover .svc-icon {
    background: linear-gradient(135deg, #1E40AF 0%, #7C3AED 100%);
    color: #fff;
}

.svc-body {
    flex: 1;
    min-width: 0;
}

.svc-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-light);
    background: rgba(59, 130, 246, 0.06);
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.svc-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.svc-body p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.svc-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 0.72rem;
    transition: var(--transition);
    align-self: center;
}

.svc-card:hover .svc-arrow {
    background: rgba(30, 64, 175, 0.06);
    color: var(--accent);
    transform: translateX(2px);
}

/* Service Card Colors */
.svc-blue { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); border-image: linear-gradient(180deg, #3B82F6, #2563EB) 1; border-image-slice: 0 0 0 1; }
.svc-blue .svc-icon { background: rgba(59, 130, 246, 0.12); color: #2563EB; }
.svc-blue .svc-tag { background: rgba(59, 130, 246, 0.1); color: #2563EB; }
.svc-blue:hover { background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%); }
.svc-blue:hover .svc-icon { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }

.svc-purple { background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%); border-image: linear-gradient(180deg, #8B5CF6, #7C3AED) 1; border-image-slice: 0 0 0 1; }
.svc-purple .svc-icon { background: rgba(139, 92, 246, 0.1); color: #7C3AED; }
.svc-purple .svc-tag { background: rgba(139, 92, 246, 0.08); color: #7C3AED; }
.svc-purple:hover { background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%); }
.svc-purple:hover .svc-icon { background: linear-gradient(135deg, #7C3AED, #6D28D9); color: #fff; }

.svc-amber { background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%); border-image: linear-gradient(180deg, #F59E0B, #D97706) 1; border-image-slice: 0 0 0 1; }
.svc-amber .svc-icon { background: rgba(245, 158, 11, 0.1); color: #D97706; }
.svc-amber .svc-tag { background: rgba(245, 158, 11, 0.08); color: #D97706; }
.svc-amber:hover { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); }
.svc-amber:hover .svc-icon { background: linear-gradient(135deg, #D97706, #B45309); color: #fff; }

.svc-teal { background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%); border-image: linear-gradient(180deg, #14B8A6, #0D9488) 1; border-image-slice: 0 0 0 1; }
.svc-teal .svc-icon { background: rgba(20, 184, 166, 0.1); color: #0D9488; }
.svc-teal .svc-tag { background: rgba(20, 184, 166, 0.08); color: #0D9488; }
.svc-teal:hover { background: linear-gradient(135deg, #CCFBF1 0%, #99F6E4 100%); }
.svc-teal:hover .svc-icon { background: linear-gradient(135deg, #0D9488, #0F766E); color: #fff; }

.svc-rose { background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%); border-image: linear-gradient(180deg, #F43F5E, #E11D48) 1; border-image-slice: 0 0 0 1; }
.svc-rose .svc-icon { background: rgba(244, 63, 94, 0.08); color: #E11D48; }
.svc-rose .svc-tag { background: rgba(244, 63, 94, 0.06); color: #E11D48; }
.svc-rose:hover { background: linear-gradient(135deg, #FFE4E6 0%, #FECDD3 100%); }
.svc-rose:hover .svc-icon { background: linear-gradient(135deg, #E11D48, #BE123C); color: #fff; }

.svc-emerald { background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%); border-image: linear-gradient(180deg, #10B981, #059669) 1; border-image-slice: 0 0 0 1; }
.svc-emerald .svc-icon { background: rgba(16, 185, 129, 0.1); color: #059669; }
.svc-emerald .svc-tag { background: rgba(16, 185, 129, 0.08); color: #059669; }
.svc-emerald:hover { background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%); }
.svc-emerald:hover .svc-icon { background: linear-gradient(135deg, #059669, #047857); color: #fff; }

/* === WHY CHOOSE US === */
.why-section {
    padding: 88px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 50%, #F0F9FF 100%);
    background-image: radial-gradient(rgba(30, 64, 175, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.why-layout {
    display: flex;
    align-items: flex-start;
    gap: 56px;
}

.why-left {
    flex: 0 0 380px;
    position: sticky;
    top: 140px;
}

.why-left .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.why-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.why-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    border: none;
    border-radius: var(--radius-md);
}

.why-highlight-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.why-highlight-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.why-highlight-text span {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.6);
}

.why-right {
    flex: 1;
    min-width: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.why-card:hover {
    background: linear-gradient(145deg, #FFFFFF 0%, #EEF2FF 100%);
    border-color: rgba(30, 64, 175, 0.15);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.08);
}

.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.06) 0%, rgba(59, 130, 246, 0.06) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--accent);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #1E40AF 0%, #7C3AED 100%);
    color: #fff;
}

.why-stat {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.why-card h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Why Card Colors */
.why-blue { background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%); border-color: rgba(59, 130, 246, 0.12); }
.why-blue .why-icon { background: rgba(59, 130, 246, 0.12); color: #2563EB; }
.why-blue .why-stat { color: #2563EB; }
.why-blue:hover { background: linear-gradient(145deg, #DBEAFE 0%, #BFDBFE 100%); border-color: rgba(59, 130, 246, 0.2); }
.why-blue:hover .why-icon { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }

.why-emerald { background: linear-gradient(145deg, #ECFDF5 0%, #D1FAE5 100%); border-color: rgba(16, 185, 129, 0.12); }
.why-emerald .why-icon { background: rgba(16, 185, 129, 0.12); color: #059669; }
.why-emerald .why-stat { color: #059669; }
.why-emerald:hover { background: linear-gradient(145deg, #D1FAE5 0%, #A7F3D0 100%); border-color: rgba(16, 185, 129, 0.2); }
.why-emerald:hover .why-icon { background: linear-gradient(135deg, #059669, #047857); color: #fff; }

.why-amber { background: linear-gradient(145deg, #FFFBEB 0%, #FEF3C7 100%); border-color: rgba(245, 158, 11, 0.12); }
.why-amber .why-icon { background: rgba(245, 158, 11, 0.12); color: #D97706; }
.why-amber .why-stat { color: #D97706; }
.why-amber:hover { background: linear-gradient(145deg, #FEF3C7 0%, #FDE68A 100%); border-color: rgba(245, 158, 11, 0.2); }
.why-amber:hover .why-icon { background: linear-gradient(135deg, #D97706, #B45309); color: #fff; }

.why-purple { background: linear-gradient(145deg, #F5F3FF 0%, #EDE9FE 100%); border-color: rgba(139, 92, 246, 0.12); }
.why-purple .why-icon { background: rgba(139, 92, 246, 0.12); color: #7C3AED; }
.why-purple .why-stat { color: #7C3AED; }
.why-purple:hover { background: linear-gradient(145deg, #EDE9FE 0%, #DDD6FE 100%); border-color: rgba(139, 92, 246, 0.2); }
.why-purple:hover .why-icon { background: linear-gradient(135deg, #7C3AED, #6D28D9); color: #fff; }

/* === SUBJECTS SECTION === */
.subjects-section {
    padding: 100px 0;
}

.subject-card {
    background: var(--primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subject-card:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: var(--shadow-md);
}

.subject-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.1rem;
    color: var(--accent);
    transition: var(--transition);
}

.subject-card:hover .subject-icon {
    background: var(--gradient-1);
    color: #fff;
}

.subject-card h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
}

/* === PROCESS TIMELINE === */
.process-section {
    padding: 100px 0;
    background: var(--primary-light);
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #3B82F6 0%, #8B5CF6 33%, #D97706 66%, #059669 100%);
    opacity: 0.25;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 2;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(30, 64, 175, 0.1), 0 4px 12px rgba(30, 64, 175, 0.25);
}

.process-content {
    width: 42%;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 2px;
    padding: 24px;
    transition: var(--transition);
}

.process-content:hover {
    border-color: rgba(30, 64, 175, 0.15);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
    transform: translateY(-2px);
}

.process-step:nth-child(1) .process-content { background: linear-gradient(145deg, #EFF6FF, #DBEAFE); }
.process-step:nth-child(2) .process-content { background: linear-gradient(145deg, #F5F3FF, #EDE9FE); }
.process-step:nth-child(3) .process-content { background: linear-gradient(145deg, #FFFBEB, #FEF3C7); }
.process-step:nth-child(4) .process-content { background: linear-gradient(145deg, #ECFDF5, #D1FAE5); }

.process-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 88px 0;
    background: linear-gradient(180deg, #F0F9FF 0%, #F8FAFC 50%, #FDF4FF 100%);
}

.testimonials-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.testimonials-header .section-title {
    margin-bottom: 6px;
    font-size: 2rem;
}

.testimonials-header .section-subtitle {
    margin: 0;
    font-size: 0.92rem;
    max-width: none;
}

.tp-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #00B67A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tp-brand i {
    font-size: 0.72rem;
}

.tp-score-box {
    text-align: center;
    flex-shrink: 0;
    padding: 20px 28px;
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
    border: 1px solid rgba(0, 182, 122, 0.15);
    border-radius: var(--radius-md);
}

.tp-rating-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.tp-stars-row {
    color: #00B67A;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin: 4px 0;
}

.tp-review-count {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-swiper {
    overflow: hidden;
    padding-bottom: 44px;
}

.tp-card {
    background: linear-gradient(160deg, #FFFFFF 0%, #F0FDF4 100%);
    border: 1px solid rgba(0, 182, 122, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border-top: 2px solid #00B67A;
}

.tp-card:hover {
    background: linear-gradient(160deg, #FFFFFF 0%, #ECFDF5 100%);
    border-color: rgba(0, 182, 122, 0.2);
    border-top-color: #00B67A;
    box-shadow: 0 4px 20px rgba(0, 182, 122, 0.1);
}

.tp-card-stars {
    color: #00B67A;
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.tp-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.tp-card-text {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.tp-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.72rem;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.tp-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.tp-role {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.tp-card-date {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.reviews-pagination {
    bottom: 0 !important;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    opacity: 0.3;
    transition: var(--transition-fast);
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: #00B67A;
    opacity: 1;
    width: 24px;
    border-radius: 2px;
}

/* === HOME PRICING === */
.pricing-home-section {
    padding: 88px 0;
    background: linear-gradient(160deg, #0B111E 0%, #111827 40%, #0F1729 100%);
    position: relative;
    overflow: hidden;
}

.pricing-home-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
}

.pricing-home-section .section-tag {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.pricing-home-section .section-title {
    color: #fff;
}

.pricing-home-section .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.ph-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}

.ph-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.ph-featured {
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.06) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.ph-featured:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.35);
}

.ph-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: #fff;
    padding: 4px 16px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ph-tier {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.ph-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.ph-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    align-self: flex-start;
    margin-top: 6px;
}

.ph-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.ph-unit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.ph-level {
    font-size: 0.78rem;
    color: #60A5FA;
    font-weight: 500;
    margin-bottom: 20px;
}

.ph-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

.ph-features li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ph-features li i {
    color: #00B67A;
    font-size: 0.68rem;
}

.ph-card .btn-outline-premium {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.ph-card .btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.ph-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.ph-more-link:hover {
    color: #60A5FA;
    gap: 10px;
}

/* === HOME SUBJECTS === */
.subjects-home-section {
    padding: 88px 0;
    background: linear-gradient(160deg, #FFFFFF 0%, #EFF6FF 40%, #FDF4FF 100%);
}

.subj-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.subj-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 22px;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.subj-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.sc-icon {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 14px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.subj-card:hover .sc-icon {
    transform: scale(1.1);
}

.subj-card h6 {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    line-height: 1.35;
}

/* Subject Card Colors */
.sc-blue { background: linear-gradient(145deg, #EFF6FF, #DBEAFE); }
.sc-blue .sc-icon { background: rgba(37, 99, 235, 0.12); color: #2563EB; }
.sc-blue h6 { color: #1E40AF; }
.sc-blue:hover { background: linear-gradient(145deg, #DBEAFE, #BFDBFE); border-color: rgba(59, 130, 246, 0.15); }
.sc-blue:hover .sc-icon { background: #2563EB; color: #fff; }

.sc-purple { background: linear-gradient(145deg, #F5F3FF, #EDE9FE); }
.sc-purple .sc-icon { background: rgba(124, 58, 237, 0.1); color: #7C3AED; }
.sc-purple h6 { color: #6D28D9; }
.sc-purple:hover { background: linear-gradient(145deg, #EDE9FE, #DDD6FE); border-color: rgba(139, 92, 246, 0.15); }
.sc-purple:hover .sc-icon { background: #7C3AED; color: #fff; }

.sc-rose { background: linear-gradient(145deg, #FFF1F2, #FFE4E6); }
.sc-rose .sc-icon { background: rgba(225, 29, 72, 0.08); color: #E11D48; }
.sc-rose h6 { color: #BE123C; }
.sc-rose:hover { background: linear-gradient(145deg, #FFE4E6, #FECDD3); border-color: rgba(244, 63, 94, 0.15); }
.sc-rose:hover .sc-icon { background: #E11D48; color: #fff; }

.sc-amber { background: linear-gradient(145deg, #FFFBEB, #FEF3C7); }
.sc-amber .sc-icon { background: rgba(217, 119, 6, 0.1); color: #D97706; }
.sc-amber h6 { color: #B45309; }
.sc-amber:hover { background: linear-gradient(145deg, #FEF3C7, #FDE68A); border-color: rgba(245, 158, 11, 0.15); }
.sc-amber:hover .sc-icon { background: #D97706; color: #fff; }

.sc-teal { background: linear-gradient(145deg, #F0FDFA, #CCFBF1); }
.sc-teal .sc-icon { background: rgba(13, 148, 136, 0.1); color: #0D9488; }
.sc-teal h6 { color: #0F766E; }
.sc-teal:hover { background: linear-gradient(145deg, #CCFBF1, #99F6E4); border-color: rgba(20, 184, 166, 0.15); }
.sc-teal:hover .sc-icon { background: #0D9488; color: #fff; }

.sc-indigo { background: linear-gradient(145deg, #EEF2FF, #E0E7FF); }
.sc-indigo .sc-icon { background: rgba(79, 70, 229, 0.1); color: #4F46E5; }
.sc-indigo h6 { color: #4338CA; }
.sc-indigo:hover { background: linear-gradient(145deg, #E0E7FF, #C7D2FE); border-color: rgba(99, 102, 241, 0.15); }
.sc-indigo:hover .sc-icon { background: #4F46E5; color: #fff; }

.sc-emerald { background: linear-gradient(145deg, #ECFDF5, #D1FAE5); }
.sc-emerald .sc-icon { background: rgba(5, 150, 105, 0.1); color: #059669; }
.sc-emerald h6 { color: #047857; }
.sc-emerald:hover { background: linear-gradient(145deg, #D1FAE5, #A7F3D0); border-color: rgba(16, 185, 129, 0.15); }
.sc-emerald:hover .sc-icon { background: #059669; color: #fff; }

.sc-red { background: linear-gradient(145deg, #FEF2F2, #FEE2E2); }
.sc-red .sc-icon { background: rgba(220, 38, 38, 0.08); color: #DC2626; }
.sc-red h6 { color: #B91C1C; }
.sc-red:hover { background: linear-gradient(145deg, #FEE2E2, #FECACA); border-color: rgba(239, 68, 68, 0.15); }
.sc-red:hover .sc-icon { background: #DC2626; color: #fff; }

/* === FAQ SECTION === */
.faq-section {
    padding: 100px 0;
    background: var(--primary-light);
}

.faq-accordion .accordion-item {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 2px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.06);
    background: linear-gradient(145deg, #EFF6FF 0%, #F5F3FF 100%);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 20px 24px;
    font-size: 0.95rem;
    box-shadow: none;
    font-family: var(--font-primary);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--accent);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231E40AF' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: var(--transition);
}

.faq-accordion .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.8;
}

/* === PAYMENT METHODS === */
.payment-section {
    padding: 0;
    background: var(--primary);
}

.payment-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.12), transparent) 1;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.payment-label i {
    color: var(--accent);
    font-size: 0.7rem;
}

.payment-divider {
    width: 1px;
    height: 20px;
    background: var(--border-color);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.pay-icon i {
    font-size: 1.7rem;
    transition: var(--transition-fast);
}

.pay-icon i.fa-cc-visa { color: #1A1F71; }
.pay-icon i.fa-cc-mastercard { color: #EB001B; }
.pay-icon i.fa-cc-paypal { color: #003087; }
.pay-icon i.fa-cc-stripe { color: #635BFF; }

.payment-badges {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.pay-badge i {
    color: var(--success);
    font-size: 0.62rem;
}

/* === CTA SECTION === */
.cta-section {
    padding: 48px 0;
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 50%, #2563EB 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: 15%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
    min-width: 0;
}

.cta-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    max-width: 520px;
    margin: 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cta-section .btn-premium.btn-primary-grad {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px 22px;
    font-size: 0.84rem;
}

.cta-section .btn-premium.btn-primary-grad::before {
    display: none;
}

.cta-section .btn-premium.btn-primary-grad:hover {
    background: #f0f4ff;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline-premium {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 10px 22px;
    font-size: 0.84rem;
}

.cta-section .btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* === FOOTER === */
.footer {
    background: #0B111E;
    padding: 0;
    border-top: none;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-main {
    padding: 56px 0 40px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand img {
    height: 38px;
}

.footer-about {
    color: #6B7A90;
    font-size: 0.84rem;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 6px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A6A80;
    transition: var(--transition-fast);
    font-size: 0.78rem;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.footer h5 {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #8896A8;
    position: relative;
    padding-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer h5::after {
    display: none;
}

.footer ul li {
    margin-bottom: 0;
}

.footer ul li a {
    color: #C1CBD8;
    font-size: 0.84rem;
    font-weight: 400;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0;
    padding: 5px 0;
}

.footer ul li a:hover {
    color: #fff;
    padding-left: 0;
}

.footer ul li a i.fa-chevron-right {
    display: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding: 6px 0;
    color: #C1CBD8;
    font-size: 0.84rem;
}

.footer-contact li a {
    color: #C1CBD8;
}

.footer-contact li a:hover {
    color: #fff;
}

.footer-contact li i {
    color: #4A6A8A;
    margin-top: 0;
    width: 14px;
    font-size: 0.8rem;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 0;
    margin-top: 0;
    text-align: center;
    color: #3E4E62;
    font-size: 0.78rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: #566878;
    font-size: 0.78rem;
    margin-left: 20px;
}

.footer-bottom a:first-child {
    margin-left: 0;
}

.footer-bottom a:hover {
    color: #C1CBD8;
}

/* === PAGE BANNER === */
.page-banner-section {
    position: relative;
    padding: 140px 0 48px;
    background: linear-gradient(160deg, #0B111E 0%, #111827 40%, #0F1729 100%);
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-banner-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.04);
    border-radius: 50%;
    filter: blur(60px);
}

.page-banner-bg::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: rgba(139, 92, 246, 0.04);
    border-radius: 50%;
    filter: blur(50px);
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner-breadcrumb {
    margin-bottom: 20px;
}

.page-banner-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    padding: 8px 16px;
    margin: 0;
    display: inline-flex;
}

.page-banner-breadcrumb .breadcrumb-item {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.page-banner-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.page-banner-breadcrumb .breadcrumb-item a:hover {
    color: #60A5FA;
}

.page-banner-breadcrumb .breadcrumb-item a i {
    font-size: 0.68rem;
    color: var(--accent-secondary);
}

.page-banner-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.page-banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.15);
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    padding: 0 8px;
}

.page-banner-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 50%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 640px;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0;
    font-weight: 400;
}

/* === PAGE CONTENT === */
.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 2rem 0 1.25rem;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    display: inline-block;
    position: relative;
    letter-spacing: -0.02em;
}

.page-content h2:not(.section-title):not(.section-subtitle):not(.h3)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--accent);
}

.page-content h2.section-title {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.page-content h2.section-title::after {
    display: none;
}

.page-content h2.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
    display: block;
    text-align: center;
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.page-content h2.section-subtitle::after {
    display: none;
}

.page-content h2.h3 {
    font-size: 1.4rem;
    border-bottom: none;
    padding-bottom: 0;
    margin: 1.5rem 0 1rem;
}

.page-content h2.h3::after {
    display: none;
}

.page-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    padding-left: 14px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #3B82F6, #8B5CF6) 1;
}

.page-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.page-content ul, .page-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.page-content ul li, .page-content ol li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    line-height: 1.75;
    font-size: 0.95rem;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 11px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 50%;
}

.page-content ul li:nth-child(2)::before { background: linear-gradient(135deg, #7C3AED, #8B5CF6); }
.page-content ul li:nth-child(3)::before { background: linear-gradient(135deg, #059669, #10B981); }
.page-content ul li:nth-child(4)::before { background: linear-gradient(135deg, #D97706, #F59E0B); }
.page-content ul li:nth-child(5)::before { background: linear-gradient(135deg, #E11D48, #F43F5E); }
.page-content ul li:nth-child(6)::before { background: linear-gradient(135deg, #0D9488, #14B8A6); }

/* About Page Stats */
.about-stats {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid rgba(30, 64, 175, 0.08);
    border-radius: 2px;
    padding: 32px;
    height: 100%;
}

.about-stats .counter-number {
    font-size: 2rem;
    color: var(--accent);
    background: none;
    -webkit-text-fill-color: unset;
}

.about-stats .counter-label {
    font-size: 0.78rem;
}

/* === GLASS CARD === */
.glass-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 2px;
    padding: 24px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(30, 64, 175, 0.12);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.06);
}

.glass-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.glass-card h6 {
    color: var(--text-primary);
    font-size: 0.88rem;
}

.glass-card p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.75;
    font-size: 0.88rem;
}

.glass-card p:last-child {
    margin-bottom: 0;
}

/* === PRICING CARDS === */
.pricing-card {
    background: var(--primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: #fff;
    padding: 5px 22px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-card ul {
    text-align: left;
    padding: 0;
    margin: 24px 0;
}

.pricing-card ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li::before {
    display: none;
}

.pricing-card ul li i {
    color: var(--success);
    font-size: 0.85rem;
}

/* === REVIEWS PAGE === */
.reviews-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-page-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.rp-stat-box {
    text-align: center;
}

.rp-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.rp-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.reviews-page-header .tp-stars-row {
    margin: 4px 0 2px;
}

.page-content .tp-card {
    height: 100%;
}

.page-content .tp-card-text {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

/* === CONTACT FORM === */
.contact-form .form-control {
    background: var(--primary-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 13px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.contact-form .form-control:focus {
    background: var(--primary);
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-info-card {
    background: var(--primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #fff;
}

.contact-info-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 88px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 100%);
}

.contact-form-wrapper {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
}

.contact-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: var(--text-primary);
}

.contact-form-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-header h4 i {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-badge {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.contact-form-badge i {
    font-size: 0.6rem;
}

.contact-form-wrapper .contact-form {
    padding: 22px;
}

.contact-form-wrapper .contact-form .form-control {
    background: var(--primary-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 12px 16px;
    font-size: 0.88rem;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.contact-form-wrapper .contact-form .form-control:focus {
    background: #fff;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.contact-form-wrapper .contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form-wrapper .contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

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

.cc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cc-body h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cc-body p {
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.cc-body a {
    transition: var(--transition-fast);
}

/* Contact Card - Blue (Phone) */
.cc-blue {
    background: linear-gradient(145deg, #EFF6FF, #DBEAFE);
    border-color: rgba(59, 130, 246, 0.12);
    border-left-color: #3B82F6;
}
.cc-blue .cc-icon {
    background: rgba(59, 130, 246, 0.12);
    color: #2563EB;
}
.cc-blue .cc-body h6 { color: #1E40AF; }
.cc-blue .cc-body p,
.cc-blue .cc-body a { color: #475569; }
.cc-blue .cc-body a:hover { color: #2563EB; }
.cc-blue:hover {
    background: linear-gradient(145deg, #DBEAFE, #BFDBFE);
    border-color: rgba(59, 130, 246, 0.2);
    border-left-color: #2563EB;
}
.cc-blue:hover .cc-icon {
    background: #2563EB;
    color: #fff;
}

/* Contact Card - Purple (Email) */
.cc-purple {
    background: linear-gradient(145deg, #F5F3FF, #EDE9FE);
    border-color: rgba(139, 92, 246, 0.12);
    border-left-color: #8B5CF6;
}
.cc-purple .cc-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
}
.cc-purple .cc-body h6 { color: #6D28D9; }
.cc-purple .cc-body p,
.cc-purple .cc-body a { color: #475569; }
.cc-purple .cc-body a:hover { color: #7C3AED; }
.cc-purple:hover {
    background: linear-gradient(145deg, #EDE9FE, #DDD6FE);
    border-color: rgba(139, 92, 246, 0.2);
    border-left-color: #7C3AED;
}
.cc-purple:hover .cc-icon {
    background: #7C3AED;
    color: #fff;
}

/* Contact Card - Emerald (WhatsApp) */
.cc-emerald {
    background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
    border-color: rgba(16, 185, 129, 0.12);
    border-left-color: #10B981;
}
.cc-emerald .cc-icon {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}
.cc-emerald .cc-body h6 { color: #047857; }
.cc-emerald .cc-body p,
.cc-emerald .cc-body a { color: #475569; }
.cc-emerald .cc-body a:hover { color: #059669; }
.cc-emerald:hover {
    background: linear-gradient(145deg, #D1FAE5, #A7F3D0);
    border-color: rgba(16, 185, 129, 0.2);
    border-left-color: #059669;
}
.cc-emerald:hover .cc-icon {
    background: #059669;
    color: #fff;
}

/* Contact Card - Amber (Location) */
.cc-amber {
    background: linear-gradient(145deg, #FFFBEB, #FEF3C7);
    border-color: rgba(245, 158, 11, 0.12);
    border-left-color: #F59E0B;
}
.cc-amber .cc-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}
.cc-amber .cc-body h6 { color: #B45309; }
.cc-amber .cc-body p,
.cc-amber .cc-body a { color: #475569; }
.cc-amber .cc-body a:hover { color: #D97706; }
.cc-amber:hover {
    background: linear-gradient(145deg, #FEF3C7, #FDE68A);
    border-color: rgba(245, 158, 11, 0.2);
    border-left-color: #D97706;
}
.cc-amber:hover .cc-icon {
    background: #D97706;
    color: #fff;
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    background: #25D366;
    color: #fff !important;
    border-radius: 50px;
    padding: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float i {
    font-size: 1.45rem;
    flex-shrink: 0;
    width: 52px;
    text-align: center;
    line-height: 52px;
}

.whatsapp-float-label {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    letter-spacing: 0.01em;
}

.whatsapp-float:hover {
    width: auto;
    padding-right: 20px;
    border-radius: 50px;
    background: #20ba5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    color: #fff !important;
}

.whatsapp-float:hover .whatsapp-float-label {
    opacity: 1;
    max-width: 140px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1199px) {
    .hero-title { font-size: 2.2rem; }
    .hero-content { padding-right: 32px; }
    .section-title { font-size: 2.2rem; }
    .navbar-logo { height: 40px; }
    .main-nav .navbar-nav .nav-link {
        padding: 6px 12px;
        font-size: 0.88rem;
    }
    .main-nav > .container { height: 60px; }
}

@media (max-width: 991px) {
    .hero-section { padding: 140px 0 48px; }
    .hero-title { font-size: 2rem; }
    .hero-content { padding-right: 0; margin-bottom: 28px; }
    .hero-description { max-width: 100%; }
    .hero-illustration { margin-top: 40px; min-height: 350px; }
    .hero-card-float { display: none; }
    .process-timeline::before { left: 20px; }
    .process-step, .process-step:nth-child(odd) { flex-direction: row; }
    .process-content { width: calc(100% - 50px); margin-left: 50px; }
    .process-number { left: 20px; transform: translateX(0); width: 36px; height: 36px; font-size: 0.95rem; }
    .section-title { font-size: 1.9rem; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .services-header-desc { text-align: left; max-width: none; }
    .services-grid { grid-template-columns: 1fr; }
    .subj-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .payment-strip { flex-wrap: wrap; justify-content: center; gap: 16px; padding: 18px 0; }
    .payment-divider { display: none; }
    .why-layout { flex-direction: column; gap: 32px; }
    .why-left { flex: none; width: 100%; position: static; }
    .why-left .section-title { font-size: 1.75rem; }
    .testimonials-header { flex-direction: column; gap: 20px; }
    .testimonials-header .section-title { font-size: 1.75rem; }
    .tp-score-box { align-self: flex-start; padding: 14px 20px; }
    .tp-rating-number { font-size: 1.6rem; }
    .contact-section { padding: 64px 0; }
    .page-banner-section { padding: 136px 0 44px; }
    .page-banner-title { font-size: 2rem; }
    .pricing-home-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-home-grid .ph-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; width: 100%; }

    .main-nav > .container { height: 56px; }
    .navbar-logo { height: 36px; }
    .footer-logo { height: 38px; }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--border-color);
        padding: 12px 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav .navbar-nav .nav-link {
        padding: 13px 24px;
        font-size: 0.92rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }
    .main-nav .navbar-nav .nav-item:last-child .nav-link,
    .main-nav .navbar-nav .nav-cta .btn-nav-cta {
        border-bottom: none;
    }
    .main-nav .navbar-nav .nav-link:hover,
    .main-nav .navbar-nav .nav-link:active {
        background: var(--primary-light);
    }
    .main-nav .navbar-nav .nav-link.active {
        color: var(--accent);
        background: rgba(30, 64, 175, 0.04);
    }
    .main-nav .navbar-nav .dropdown .nav-link {
        border-bottom: none;
    }
    .nav-cta {
        margin: 12px 24px 8px;
        border-bottom: none !important;
    }
    .btn-nav-cta { width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
    .page-banner-section { padding: 130px 0 40px; }
    .page-banner-title { font-size: 1.75rem; }
    .page-banner-subtitle { font-size: 0.86rem; }
    .page-banner-breadcrumb { margin-bottom: 16px; }
    .hero-section { padding: 130px 0 40px; }
    .hero-title { font-size: 1.75rem; }
    .hero-description { font-size: 0.88rem; }
    .hero-trust { gap: 14px; }
    .trust-item { font-size: 0.74rem; }
    .section-title { font-size: 1.7rem; }
    .counter-number { font-size: 1.5rem; }
    .counter-item { padding: 20px 12px; }
    .counter-item::after { height: 28px; }
    .col-6.col-md-3:nth-child(2) .counter-item::after { display: none; }
    .col-6.col-md-3:nth-child(3) .counter-item::after { display: block; }
    .cta-content { flex-direction: column; text-align: center; gap: 20px; }
    .cta-content h2 { font-size: 1.35rem; }
    .cta-content p { margin: 0 auto; }
    .cta-buttons { justify-content: center; }
    .footer-bottom .col-md-6 { margin-bottom: 8px; }
    .testimonials-header .section-title { font-size: 1.5rem; }
    .svc-card { padding: 18px; gap: 14px; }
    .svc-icon { width: 38px; height: 38px; min-width: 38px; font-size: 1rem; }
    .svc-arrow { display: none; }
    .pricing-home-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .ph-card { padding: 24px 20px; }
    .ph-amount { font-size: 2.2rem; }
    .payment-methods { gap: 14px; }
    .pay-icon i { font-size: 1.5rem; }
    .subj-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .subj-card { padding: 22px 12px 18px; }
    .sc-icon { width: 42px; height: 42px; font-size: 1rem; }
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .why-card { padding: 20px; }
    .why-highlight { flex-direction: column; text-align: center; gap: 8px; }
    .tp-card { padding: 20px; }
    .reviews-page-stats { gap: 24px; }
    .rp-stat-number { font-size: 1.4rem; }
    .services-section,
    .why-section,
    .testimonials-section,
    .subjects-section,
    .faq-section,
    .contact-section { padding: 64px 0; }
    .page-content { padding: 56px 0; }
    .contact-card { padding: 20px; gap: 14px; }
    .cc-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1.05rem; }
    .contact-form-wrapper .contact-form { padding: 18px; }
    .contact-form-header { padding: 12px 18px; }
    .contact-form-header h4 { font-size: 0.88rem; }
}

@media (max-width: 575px) {
    .hero-section { padding: 120px 0 36px; }
    .hero-title { font-size: 1.6rem; }
    .hero-badge { font-size: 0.72rem; padding: 5px 12px; margin-bottom: 0.75rem; }
    .hero-description { font-size: 0.85rem; margin-bottom: 1rem; }
    .hero-actions { margin-bottom: 1.25rem; }
    .hero-actions .btn-premium { width: 100%; justify-content: center; }
    .hero-trust { gap: 10px; flex-wrap: wrap; }
    .trust-item { font-size: 0.72rem; }
    .hero-form-header { padding: 12px 16px; }
    .hero-form-header h4 { font-size: 0.88rem; }
    .hero-form-fields { padding: 14px 16px 18px; gap: 8px; }
    .hero-form .form-control { padding: 9px 12px; font-size: 0.84rem; }
    .btn-premium { padding: 11px 22px; font-size: 0.86rem; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.92rem; margin-bottom: 2rem; }
    .section-tag { font-size: 0.68rem; padding: 6px 14px; letter-spacing: 1px; }
    .container { padding: 0 16px; }
    .navbar-logo { height: 32px; }
    .footer-logo { height: 34px; }
    .process-content { width: calc(100% - 40px); margin-left: 40px; }
    .process-number { width: 30px; height: 30px; font-size: 0.85rem; }
    .page-banner-section { padding: 120px 0 36px; }
    .page-banner-title { font-size: 1.6rem; }
    .page-banner-subtitle { font-size: 0.84rem; max-width: 100%; }
    .page-banner-breadcrumb .breadcrumb { padding: 6px 12px; }
    .page-banner-breadcrumb .breadcrumb-item { font-size: 0.7rem; }
    .cta-section { padding: 36px 0; }
    .cta-content h2 { font-size: 1.2rem; }
    .cta-content p { font-size: 0.82rem; }
    .cta-buttons { width: 100%; }
    .cta-buttons .btn-premium { width: 100%; justify-content: center; }
    .counter-number { font-size: 1.3rem; }
    .counter-item { padding: 16px 8px; }
    .counter-label { font-size: 0.58rem; letter-spacing: 0.5px; }
    .subj-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .subj-card { padding: 18px 10px 14px; }
    .subj-card h6 { font-size: 0.72rem; }
    .sc-icon { width: 38px; height: 38px; font-size: 0.92rem; margin-bottom: 10px; }
    .footer-main { padding: 40px 0 28px; }
    .footer-about { font-size: 0.8rem; }
    .footer h5 { margin-bottom: 12px; }
    .footer ul li a { font-size: 0.8rem; padding: 4px 0; }
    .footer-contact li { font-size: 0.8rem; padding: 4px 0; }
    .footer-bottom { padding: 14px 0; }
    .footer-bottom a { margin-left: 12px; font-size: 0.72rem; }
    .footer-bottom p { font-size: 0.72rem; }
    .whatsapp-float { width: 46px; height: 46px; bottom: 20px; left: 16px; }
    .whatsapp-float i { font-size: 1.25rem; width: 46px; line-height: 46px; }
    .reviews-page-stats { flex-direction: column; gap: 16px; }
    .faq-accordion .accordion-button { padding: 16px 18px; font-size: 0.88rem; }
    .faq-accordion .accordion-body { padding: 0 18px 16px; font-size: 0.88rem; }
    .page-content h2 { font-size: 1.5rem; }
    .page-content h3 { font-size: 1.05rem; }
    .page-content p { font-size: 0.9rem; }
    .svc-inner-grid { grid-template-columns: 1fr; }
    .contact-cards-stack { gap: 12px; }
    .contact-card { flex-direction: column; text-align: center; gap: 10px; }
    .cc-icon { margin: 0 auto; }
    .pricing-home-grid { gap: 14px; }
}

@media (max-width: 375px) {
    .hero-title { font-size: 1.45rem; }
    .section-title { font-size: 1.35rem; }
    .btn-premium { padding: 10px 18px; font-size: 0.84rem; }
    .hero-form-fields { gap: 6px; }
    .hero-content { margin-bottom: 24px; }
    .page-banner-section { padding: 110px 0 30px; }
    .page-banner-title { font-size: 1.4rem; }
    .page-banner-subtitle { font-size: 0.8rem; }
    .page-banner-breadcrumb .breadcrumb-item { font-size: 0.65rem; }
    .footer-bottom .col-md-6 { text-align: center !important; }
    .footer-bottom a { display: inline-block; margin: 2px 6px; }
    .ph-amount { font-size: 2rem; }
    .counter-number { font-size: 1.15rem; }
    .counter-label { font-size: 0.52rem; }
    .why-highlight-number { font-size: 1.6rem; }
    .svc-card { padding: 14px; gap: 12px; }
    .svc-icon { width: 34px; height: 34px; min-width: 34px; font-size: 0.9rem; }
    .svc-body h4 { font-size: 0.88rem; }
    .svc-body p { font-size: 0.76rem; }
}

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

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

/* === UTILITY CLASSES === */
.text-accent { color: var(--accent) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.bg-light-accent { background: rgba(30, 64, 175, 0.04); }

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

::-webkit-scrollbar-track {
    background: var(--primary-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #93C5FD, #C4B5FD);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3B82F6, #8B5CF6);
}

/* === SELECTION === */
::selection {
    background: rgba(30, 64, 175, 0.12);
    color: var(--text-primary);
}

/* === POLICY CONTENT STYLES === */
.policy-content h3 {
    font-size: 1.15rem;
    padding-left: 16px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #3B82F6, #8B5CF6) 1;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* === PROCESS STEP COLORFUL NUMBERS === */
.process-step:nth-child(1) .process-number {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1), 0 4px 12px rgba(37, 99, 235, 0.25);
}

.process-step:nth-child(2) .process-number {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
    box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.1), 0 4px 12px rgba(124, 58, 237, 0.25);
}

.process-step:nth-child(3) .process-number {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    box-shadow: 0 0 0 5px rgba(217, 119, 6, 0.1), 0 4px 12px rgba(217, 119, 6, 0.25);
}

.process-step:nth-child(4) .process-number {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.1), 0 4px 12px rgba(5, 150, 105, 0.25);
}

/* === EDITING PAGE GLASS CARD BLUE === */
.glass-card-blue {
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.glass-card-blue h4 {
    color: #1E40AF;
}

/* === EDITING PAGE BULLET ITEMS === */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.styled-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.styled-list li:nth-child(2)::before { background: linear-gradient(135deg, #7C3AED, #8B5CF6); }
.styled-list li:nth-child(3)::before { background: linear-gradient(135deg, #D97706, #F59E0B); }
.styled-list li:nth-child(4)::before { background: linear-gradient(135deg, #E11D48, #F43F5E); }
.styled-list li:nth-child(5)::before { background: linear-gradient(135deg, #059669, #10B981); }

/* === INNER PAGE SERVICE CARDS === */
.svc-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 2rem;
}

.svc-inner-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 2px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.svc-inner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sic-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.svc-inner-card:hover .sic-icon {
    transform: scale(1.08);
}

.svc-inner-card strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2px;
}

.svc-inner-card span {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.sic-blue { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.sic-blue .sic-icon { background: rgba(37, 99, 235, 0.12); color: #2563EB; }
.sic-blue strong { color: #1E40AF; }
.sic-blue:hover { border-color: rgba(59, 130, 246, 0.15); }
.sic-blue:hover .sic-icon { background: #2563EB; color: #fff; }

.sic-purple { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.sic-purple .sic-icon { background: rgba(124, 58, 237, 0.1); color: #7C3AED; }
.sic-purple strong { color: #6D28D9; }
.sic-purple:hover { border-color: rgba(139, 92, 246, 0.15); }
.sic-purple:hover .sic-icon { background: #7C3AED; color: #fff; }

.sic-amber { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); }
.sic-amber .sic-icon { background: rgba(217, 119, 6, 0.1); color: #D97706; }
.sic-amber strong { color: #B45309; }
.sic-amber:hover { border-color: rgba(245, 158, 11, 0.15); }
.sic-amber:hover .sic-icon { background: #D97706; color: #fff; }

.sic-teal { background: linear-gradient(135deg, #F0FDFA, #CCFBF1); }
.sic-teal .sic-icon { background: rgba(13, 148, 136, 0.1); color: #0D9488; }
.sic-teal strong { color: #0F766E; }
.sic-teal:hover { border-color: rgba(20, 184, 166, 0.15); }
.sic-teal:hover .sic-icon { background: #0D9488; color: #fff; }

.sic-emerald { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.sic-emerald .sic-icon { background: rgba(5, 150, 105, 0.1); color: #059669; }
.sic-emerald strong { color: #047857; }
.sic-emerald:hover { border-color: rgba(16, 185, 129, 0.15); }
.sic-emerald:hover .sic-icon { background: #059669; color: #fff; }

.sic-rose { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }
.sic-rose .sic-icon { background: rgba(225, 29, 72, 0.08); color: #E11D48; }
.sic-rose strong { color: #BE123C; }
.sic-rose:hover { border-color: rgba(244, 63, 94, 0.15); }
.sic-rose:hover .sic-icon { background: #E11D48; color: #fff; }

.sticky-form {
    position: sticky;
    top: 120px;
}

.why-inner-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.why-inner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 991px) {
    .svc-inner-grid { grid-template-columns: 1fr; }
    .why-inner-grid { grid-template-columns: 1fr; }
    .sticky-form { position: static; }
}

@media (max-width: 767px) {
    .why-inner-grid { grid-template-columns: 1fr; }
}
