/* Panapal UI Style - Modern Design System */

/* CSS Variables */
:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;

    --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;

    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;

    --stone-100: #f5f5f4;
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: "yekanbakh", "IRANSansWeb", Tahoma, sans-serif !important;
    background-color: #ffffff !important;
    color: var(--gray-700) !important;
    line-height: 1.6 !important;
    direction: rtl !important;
    text-align: right !important;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "yekanbakh", "IRANSansWeb", Tahoma, sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.2;
    color: var(--gray-900);
}

p,
span,
a,
li,
td,
th,
label,
input,
textarea,
select,
button {
    font-family: "yekanbakh", "IRANSansWeb", Tahoma, sans-serif !important;
}

h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    color: inherit;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    outline: none;
}

/* Global Styles for Other Pages Compatibility */

/* Override Bootstrap link styles */
a.btn,
a.nav-link,
a.dropdown-item,
a.footer-link,
a.mobile-nav-link {
    text-decoration: none !important;
}

a.btn:hover,
a.nav-link:hover,
a.dropdown-item:hover,
a.footer-link:hover,
a.mobile-nav-link:hover {
    text-decoration: none !important;
}

/* Ensure all links have no underline */
a:not(.btn):not(.nav-link):not(.dropdown-item):not(.footer-link):not(
        .mobile-nav-link
    ) {
    text-decoration: none !important;
}

a:not(.btn):not(.nav-link):not(.dropdown-item):not(.footer-link):not(
        .mobile-nav-link
    ):hover {
    text-decoration: none !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===========================================
   HEADER STYLES - Exact Panapal UI Match
   =========================================== */
#site-header {
    position: fixed;
    top: 0.5rem;
    z-index: 50;
    width: 100%;
}

@media (min-width: 768px) {
    #site-header {
        top: 1.5rem;
    }
}

#site-header > div {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    #site-header > div {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 1rem;
    border: 1px solid #bfdbfe;
    background-color: rgba(147, 197, 253, 0.3);
    padding: 0.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0.15rem 0.75rem;
        gap: 0;
        border-radius: 0.75rem;
    }

    .header-inner > div:first-child {
        flex: 1;
    }

    .btn-login {
        margin-left: 6px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    width: 3rem;
    height: 3rem;
    outline: none;
    flex-shrink: 0;
    order: 1;
}

@media (max-width: 768px) {
    .logo-link {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.logo-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .logo-link {
        width: 4rem;
        height: 4rem;
    }
}

.main-nav-wrapper {
    display: inline-flex;
    align-items: center;
    order: 0;
}

@media (max-width: 767px) {
    .main-nav-wrapper {
        display: none;
    }
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        flex-grow: 1;
    }
}

.nav-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-weight: 300;
    list-style: none;
    margin: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (min-width: 768px) {
    .nav-list {
        margin-top: 0;
        flex-direction: row;
        border-width: 0;
        background-color: #fff;
        padding-left: 0.75rem;
        padding-right: 0.5rem;
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

@media (min-width: 1024px) {
    .nav-list {
        padding-left: 1.5rem;
        padding-right: 1rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.nav-item {
    border-radius: 0.375rem;
    background-color: #fff;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    color: #1f2937;
    transition-property: all;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
    background-color: #f1f5f9;
}

.nav-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
    font-weight: 500 !important;
}

.nav-link:hover {
    text-decoration: none !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    outline: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: inherit;
}

.dropdown-arrow {
    width: 0.875rem;
    height: 0.875rem;
}

@media (min-width: 1024px) {
    .dropdown-arrow {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.dropdown-menu-panel {
    position: absolute;
    left: 50%;
    z-index: 10;
    margin-top: 1.25rem;
    display: flex;
    width: 100vw;
    max-width: 28rem;
    transform: translateX(-50%);
    padding-left: 1rem;
    padding-right: 1rem;
}

.dropdown-menu-inner {
    width: 100%;
    max-width: 28rem;
    flex: 1 1 auto;
    overflow: hidden;
    border-radius: 1.5rem;
    background-color: #fff;
    font-size: 0.875rem;
    line-height: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dropdown-item-group {
    padding: 1rem;
}

.dropdown-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    border-radius: 0.5rem;
    padding: 1rem;
}

.dropdown-item:hover {
    background-color: #f9fafb;
}

.dropdown-item-icon {
    margin-top: 0.25rem;
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #f9fafb;
}

.dropdown-item:hover .dropdown-item-icon {
    background-color: #fff;
}

.dropdown-item-title {
    font-weight: 600;
    color: #1f2937;
    position: relative;
    text-decoration: none !important;
}

.dropdown-item-title:hover {
    text-decoration: none !important;
}

.dropdown-item-description {
    margin-top: 0.25rem;
    color: #4b5563;
}

/* Auth Buttons */
.auth-buttons {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .auth-buttons {
        margin-right: 0;
        order: 2;
    }
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #1e40af;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #fff;
    outline: none;
    text-decoration: none !important;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    gap: 0.375rem;
    white-space: nowrap;
    line-height: 1;
}

.btn-login:hover {
    background-color: #1d4ed8;
    color: #fff;
    text-decoration: none !important;
    opacity: 0.9;
}

@media (min-width: 480px) {
    .btn-login {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
}

@media (min-width: 768px) {
    .btn-login {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .btn-login {
        padding: 0.625rem 1.25rem;
    }
}

.btn-login-text {
    display: inline;
    white-space: nowrap;
}

.login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    color: #fff;
    transition-property: transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.login-icon svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 480px) {
    .login-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 768px) {
    .login-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 1024px) {
    .login-icon {
        margin-left: 0.5rem;
    }

    .login-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    margin-left: 0.5rem;
    display: flex;
    order: 3;
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.menu-toggle-button {
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1f2937;
    transition-property: all;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle-button {
        height: 1.75rem;
        width: 1.75rem;
    }
}

.menu-toggle-icon {
    pointer-events: none;
    fill: currentColor;
    width: 1rem;
    height: 1rem;
}

.menu-toggle-rect-top {
    transform-origin: center;
    transform: translateY(-5px) translateX(7px);
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.5, 0.85, 0.25, 1.1);
}

.menu-toggle-button[aria-expanded="true"] .menu-toggle-rect-top,
.menu-toggle-button[aria-expanded="true"] .menu-toggle-rect-bottom {
    transform: translateX(0) translateY(0) rotate(315deg);
}

.menu-toggle-rect-middle {
    transform-origin: center;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.5, 0.85, 0.25, 1.8);
}

.menu-toggle-button[aria-expanded="true"] .menu-toggle-rect-middle {
    transform: rotate(45deg);
}

.menu-toggle-rect-bottom {
    transform-origin: center;
    transform: translateY(5px);
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.5, 0.85, 0.25, 1.1);
}

.menu-toggle-button[aria-expanded="true"] .menu-toggle-rect-bottom {
    transform: translateY(0) rotate(135deg);
}

.mobile-nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 50;
    margin-top: 0.25rem;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mobile-nav-panel[x-cloak] {
    display: none !important;
}

.mobile-nav-inner {
    overflow: hidden;
    transition-property: opacity;
    transition-duration: 300ms;
}

.mobile-nav-list {
    border-top: 1px solid #e5e7eb;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.875rem;
    list-style: none;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    background-color: #fff;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #1f2937;
    text-decoration: none !important;
}

.mobile-nav-link:hover {
    background-color: #f1f5f9;
    text-decoration: none !important;
}

.mobile-nav-auth {
    border-top: 2px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.mobile-login-btn {
    background-color: #1e40af !important;
    color: #fff !important;
    justify-content: center;
    font-weight: 500;
}

.mobile-login-btn:hover {
    background-color: #1e3a8a !important;
}

.mobile-register-btn {
    background-color: #f9fafb !important;
    color: #1e40af !important;
    justify-content: center;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

.mobile-register-btn:hover {
    background-color: #f3f4f6 !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block !important;
    }
}

/* ===========================================
   DOCUMENTS SECTION STYLES
   =========================================== */
.documents-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #f9fafb;
}

@media (min-width: 1024px) {
    .documents-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .documents-grid {
        gap: 2rem;
    }
}

.document-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.document-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.document-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 1rem;
}

.document-icon {
    width: 48px;
    height: 48px;
    color: #1e40af;
}

.document-card-title {
    text-align: center;
    color: #1e40af;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

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

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.document-check-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.document-link {
    color: #1e40af;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.document-link:hover {
    color: #1e3a8a;
    text-decoration: none !important;
}

@media (min-width: 1024px) {
    .lg\:inline-block {
        display: inline-block !important;
    }
}

/* SVG Size Utilities */
.md\:size-4 {
    width: 1rem;
    height: 1rem;
}

.lg\:size-5 {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .md\:size-4 {
        width: 1rem;
        height: 1rem;
    }
}

@media (min-width: 1024px) {
    .lg\:size-5 {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* ===========================================
   HERO SECTION - Pattern Background
   =========================================== */
.panapal-hero {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
    background-color: #ffffff;
}

.panapal-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.panapal-hero-pattern {
    width: 100%;
    height: 100%;
    background-image: url("../img/pana-pattern-blue.png");
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.panapal-hero-gradient {
    display: none;
}

.panapal-hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 310px;
    height: 310px;
    background: radial-gradient(
        circle,
        rgb(30 64 175 / 62%) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(100px);
}

.panapal-hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 1024px) {
    .panapal-hero-container {
        flex-direction: row;
        padding: 96px 64px;
    }
}

.panapal-hero-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 1024px) {
    .panapal-hero-content {
        width: 50%;
        padding-left: 64px;
        margin-top: 0;
    }
}

.panapal-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 24px;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .panapal-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .panapal-hero-title {
        font-size: 3.5rem;
    }
}

.panapal-hero-title span {
    color: var(--blue-700);
}

.panapal-hero-text {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 1.125rem;
    color: var(--slate-700);
    text-align: justify;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .panapal-hero-text {
        text-align: right;
    }
}

.panapal-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.panapal-hero-image {
    display: none;
    width: 100%;
    justify-content: flex-end;
}

@media (min-width: 640px) {
    .panapal-hero-image {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .panapal-hero-image {
        width: 50%;
        padding-right: 64px;
    }
}

.panapal-hero-image figure {
    width: 100%;
    padding: 40px;
}

@media (min-width: 1024px) {
    .panapal-hero-image figure {
        padding: 0;
    }
}

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

/* Hero Scroll Down Arrow */
.hero-scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--blue-600);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    animation: scrollDownFloat 2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    text-decoration: none;
}

.hero-scroll-down:hover {
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5);
    animation: none;
    color: #ffffff !important;
}

.hero-scroll-down:active {
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.hero-scroll-down svg {
    width: 28px;
    height: 28px;
}

@keyframes scrollDownFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

@media (max-width: 767px) {
    .hero-scroll-down {
        width: 48px;
        height: 48px;
        bottom: 20px;
    }

    .hero-scroll-down svg {
        width: 24px;
        height: 24px;
    }
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--blue-700);
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--blue-900);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ffffff;
    color: var(--slate-900);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--gray-50);
    color: var(--slate-900);
}

.btn-secondary svg {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.btn-info {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-600);
    font-weight: 600;
}

.btn-info:hover {
    background: var(--blue-50);
    color: var(--blue-700);
    border-color: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    background: transparent;
    color: var(--gray-500);
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-outline:hover {
    background: #f43f5e;
    color: #ffffff;
    border-color: #f43f5e;
    transform: translateY(2px);
}

/* ===========================================
   SECTIONS
   =========================================== */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

.section-blue-gradient {
    background: linear-gradient(to right, var(--blue-50) 5%, #ffffff 100%);
}

.section-blue-50 {
    background: var(--blue-50);
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 56px;
}

.section-badge {
    display: inline-block;
    color: var(--blue-600);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .section-badge {
        font-size: 1.125rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--blue-700);
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-dark {
    color: var(--blue-700);
}

/* All section titles should have the same color */
.section-title {
    color: var(--gray-700) !important;
}

.section-desc {
    color: var(--gray-800);
    font-weight: 400;
    font-size: 1rem;
}

/* ===========================================
   STEPS SECTION
   =========================================== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 16px;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steps-line {
    display: none;
    position: absolute;
    top: 16px;
    right: 24px;
    width: 75%;
    border-top: 1px dashed var(--gray-300);
}

@media (min-width: 1280px) {
    .steps-line {
        display: block;
    }
}

.step-item {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1280px) {
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue-200);
    color: var(--blue-900);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 24px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

@media (min-width: 1280px) {
    .step-title {
        margin-bottom: 20px;
    }
}

.step-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===========================================
   TABS SECTION
   =========================================== */
.tabs-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    position: relative;
    z-index: 20;
}

.tabs-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    overflow-x: auto;
}

@media (min-width: 768px) {
    .tabs-list {
        flex-direction: row;
    }
}

.tab-btn {
    width: 100%;
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .tab-btn {
        font-size: 1.25rem;
    }
}

.tab-btn:hover {
    color: var(--gray-600);
    border-color: var(--gray-300);
}

.tab-btn.active {
    background: var(--blue-100);
    color: var(--blue-600);
    border-color: var(--blue-600);
}

.tabs-content {
    background: #ffffff;
    border: 1px solid var(--gray-100);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.tab-pane {
    display: none;
    flex-direction: column-reverse;
    padding: 32px;
}

@media (min-width: 768px) {
    .tab-pane {
        flex-direction: row;
        padding: 80px 32px;
    }
}

.tab-pane.active {
    display: flex;
}

.tab-content-text {
    width: 100%;
}

@media (min-width: 1024px) {
    .tab-content-text {
        width: 60%;
    }
}

.tab-content-text p {
    margin-top: 12px;
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: justify;
    line-height: 2;
    max-width: 384px;
}

@media (max-width: 767px) {
    .tab-content-text p {
        text-align: right;
    }
}

.tab-content-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding: 0;
}

@media (min-width: 768px) {
    .tab-content-buttons {
        flex-direction: row;
    }
}

.tab-content-image {
    display: none;
    padding: 40px;
}

@media (min-width: 768px) {
    .tab-content-image {
        display: block;
    }
}

.tab-content-image img {
    max-width: 100%;
    height: auto;
}

/* ===========================================
   FEATURE CARDS
   =========================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-card-highlight {
    transform: scale(1.02);
}

.feature-card-highlight:hover {
    transform: scale(1.02) translateY(-4px);
}

.feature-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16px;
}

.feature-icon svg {
    width: 64px;
    height: 64px;
    color: var(--gray-600);
}

.feature-content {
    display: flex;
    flex-direction: column;
    padding-right: 28px;
    text-align: right;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
    padding-right: 28px;
}

.feature-desc {
    font-size: 1rem;
    color: var(--gray-600);
    padding-right: 28px;
    line-height: 1.6;
}

/* ===========================================
   SERVICES SHOWCASE SECTION
   =========================================== */
.services-showcase-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-showcase-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .services-showcase-content {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.services-showcase-text {
    text-align: right;
}

@media (max-width: 1023px) {
    .services-showcase-text {
        text-align: center;
    }
}

.services-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(-4px);
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 12px;
    color: #ffffff;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

@media (max-width: 767px) {
    .service-desc {
        text-align: right;
    }
}

.services-showcase-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* ===========================================
   SERVICES PAGE STYLES
   =========================================== */
.services-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .services-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-feature-card {
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--blue-300);
}

.service-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 16px;
    color: #ffffff;
    margin-bottom: 24px;
}

.service-feature-icon svg {
    width: 32px;
    height: 32px;
}

.service-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-feature-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

@media (max-width: 767px) {
    .service-feature-desc {
        text-align: right;
    }
}

.services-benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-item {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
    border-radius: 16px;
    color: var(--blue-600);
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 1023px) {
    .services-showcase-image {
        order: -1;
    }

    .services-svg {
        max-width: 100%;
    }
}

/* ===========================================
   CLIENTS SECTION
   =========================================== */
.clients-section {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #eff6ff;
}

.clients-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    flex-direction: column;
    align-items: center;
    color: #374151;
}

@media (min-width: 1024px) {
    .clients-content {
        padding-top: 6rem;
        padding-bottom: 5rem;
        flex-direction: row;
        align-items: flex-start;
    }
}

.clients-text {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .clients-text {
        width: 33.333333%;
        margin-top: 0.5rem;
        flex: none;
    }
}

.clients-badge {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

@media (min-width: 1280px) {
    .clients-badge {
        font-size: 1rem;
    }
}

.clients-title {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e40af;
}

@media (min-width: 640px) {
    .clients-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1280px) {
    .clients-title {
        font-size: 3rem;
    }
}

.clients-description {
    margin-top: 1rem;
    color: #1f2937;
    font-weight: 400;
}

.clients-logos-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 2.5rem 0;
}

@media (min-width: 1024px) {
    .clients-logos-wrapper {
        width: 66.666667%;
        flex: none;
        padding: 0 2rem;
    }
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 640px) {
    .clients-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .clients-logos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.client-logo-item {
    width: 144px;
    display: flex;
    align-items: center;
    justify-self: center;
}

.client-logo-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease-out;
}

.client-logo-item:hover .client-logo-img {
    filter: grayscale(0%);
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-title {
    margin-top: 16px;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--blue-700);
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
}

.testimonials-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testimonial-avatar {
    position: relative;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.5;
    background: radial-gradient(
        100% 100% at 50% 50%,
        rgba(30, 167, 253, 0.0001) 0%,
        #1ea7fd 100%
    );
    animation: testimonial-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 0;
}

@keyframes testimonial-ping {
    75%,
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.testimonial-avatar img {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-200);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    margin-bottom: 24px;
    width: 100%;
}

.testimonial-quote p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-700);
    text-align: justify;
    margin: 0;
}

@media (max-width: 767px) {
    .testimonial-quote p {
        text-align: right;
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    width: 100%;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* Testimonials Carousel Navigation */
.testimonials-carousel {
    position: relative;
}

.testimonials-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin-top: 0;
    pointer-events: none;
    z-index: 10;
}

.testimonials-carousel .owl-nav button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--blue-600);
    border-radius: 50%;
    border: 2px solid var(--blue-200);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    position: relative;
}

.testimonials-carousel .owl-nav button.owl-prev {
    margin-right: -24px;
}

.testimonials-carousel .owl-nav button.owl-next {
    margin-left: -24px;
}

.testimonials-carousel .owl-nav button:hover {
    background: var(--blue-600);
    color: #ffffff;
    border-color: var(--blue-600);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
}

.testimonials-carousel .owl-nav button:active {
    transform: scale(0.95);
}

.testimonials-carousel .owl-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonials-carousel .owl-nav button i {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .testimonials-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .testimonials-carousel .owl-nav button.owl-prev {
        margin-right: -20px;
    }

    .testimonials-carousel .owl-nav button.owl-next {
        margin-left: -20px;
    }
}

.testimonials-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonials-carousel .owl-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-carousel .owl-dots button.active {
    background: var(--blue-600);
    width: 24px;
    border-radius: 5px;
}

/* ===========================================
   FOOTER - Gradient Design
   =========================================== */
.panapal-footer-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        to left,
        var(--blue-600),
        var(--blue-800),
        #000000
    );
}

.panapal-footer-cta-decor {
    position: absolute;
    top: 0;
    right: -20px;
    transform: rotate(45deg);
    opacity: 0.3;
}

.panapal-footer-cta-decor-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 20;
    width: 288px;
    height: 288px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.panapal-footer-cta-decor-2 {
    position: relative;
    z-index: 30;
    width: 208px;
    height: 160px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.panapal-footer-cta-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    padding: 32px 16px;
    text-align: center;
}

@media (min-width: 1024px) {
    .panapal-footer-cta-content {
        padding: 64px 16px;
    }
}

.panapal-footer-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 16px 4px 4px;
    background: var(--blue-100);
    color: var(--blue-700);
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-bottom: 28px;
}

.panapal-footer-cta-badge-inner {
    margin-left: 12px;
    padding: 6px 16px;
    background: var(--blue-600);
    color: #ffffff;
    font-size: 0.75rem;
    border-radius: 9999px;
}

.panapal-footer-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .panapal-footer-cta-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .panapal-footer-cta-title {
        font-size: 3rem;
    }
}

.panapal-footer-cta-text {
    font-size: 1.125rem;
    color: var(--gray-200);
    padding: 0 16px;
}

@media (min-width: 640px) {
    .panapal-footer-cta-text {
        padding: 0 64px;
    }
}

@media (min-width: 1024px) {
    .panapal-footer-cta-text {
        padding: 0 192px;
    }
}

/* Footer Main */
.panapal-footer {
    background: #ffffff;
    padding: 24px 0 32px;
}

@media (min-width: 1024px) {
    .panapal-footer {
        padding: 32px 0;
    }
}

.panapal-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.panapal-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .panapal-footer-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.panapal-footer-brand {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .panapal-footer-brand {
        margin-bottom: 0;
    }
}

.panapal-footer-logo img {
    width: 96px;
    height: 96px;
}

.panapal-footer-desc {
    margin-top: 16px;
    text-align: justify;
    font-size: 1rem;
    line-height: 2;
    color: var(--gray-700);
}

@media (max-width: 767px) {
    .panapal-footer-desc {
        text-align: right;
    }
}

.panapal-footer-desc ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.panapal-footer-desc li {
    margin-bottom: 4px;
}

.panapal-footer-trust {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.panapal-footer-trust-item {
    width: 80px;
    height: 80px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.15s ease;
}

.panapal-footer-trust-item:hover {
    background: var(--blue-100);
    box-shadow: 0 0 0 3px var(--blue-400);
}

.panapal-footer-trust-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.panapal-footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .panapal-footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

.panapal-footer-col h3 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.panapal-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: #ffffff;
}

.panapal-footer-col li {
    padding: 8px 16px;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.15s ease;
}

.panapal-footer-col li:last-child {
    border-bottom: none;
}

.panapal-footer-col li:hover {
    color: var(--blue-600);
}

.panapal-footer-col a {
    font-size: 0.875rem;
    color: var(--gray-900);
}

.panapal-footer-col li:hover a {
    color: var(--blue-600);
}

.panapal-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

@media (min-width: 640px) {
    .panapal-footer-bottom {
        flex-direction: row;
    }
}

.panapal-footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.panapal-footer-copyright span {
    color: var(--blue-500);
}

.panapal-footer-social {
    display: none;
    flex-direction: row;
    gap: 8px;
}

@media (min-width: 1024px) {
    .panapal-footer-social {
        display: flex;
    }
}

.panapal-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    color: var(--gray-900);
    transition: all 0.15s ease;
}

.panapal-footer-social a:hover {
    color: var(--blue-600);
    border-color: var(--blue-600);
    transform: translateY(-4px);
}

.panapal-footer-social svg {
    width: 16px;
    height: 16px;
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}

@media (max-width: 767px) {
    .text-justify {
        text-align: right;
    }
}

.text-blue-700 {
    color: var(--blue-700);
}
.text-gray-600 {
    color: var(--gray-600);
}
.text-gray-700 {
    color: var(--gray-700);
}
.text-gray-800 {
    color: var(--gray-800);
}
.text-gray-900 {
    color: var(--gray-900);
}
.text-white {
    color: #ffffff;
}

.bg-white {
    background: #ffffff;
}
.bg-blue-50 {
    background: var(--blue-50);
}
.bg-gray-50 {
    background: var(--gray-50);
}

.font-bold {
    font-weight: 700;
}
.font-semibold {
    font-weight: 600;
}
.font-medium {
    font-weight: 500;
}
.font-normal {
    font-weight: 400;
}

.mb-4 {
    margin-bottom: 16px;
}
.mb-6 {
    margin-bottom: 24px;
}
.mb-8 {
    margin-bottom: 32px;
}
.mt-4 {
    margin-top: 16px;
}
.mt-8 {
    margin-top: 32px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
}
.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}
.px-8 {
    padding-left: 32px;
    padding-right: 32px;
}

.rounded-lg {
    border-radius: 8px;
}
.rounded-xl {
    border-radius: 12px;
}
.rounded-2xl {
    border-radius: 16px;
}
.rounded-full {
    border-radius: 9999px;
}

.shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}
.block {
    display: block;
}
.flex {
    display: flex;
}
.grid {
    display: grid;
}

.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 8px;
}
.gap-4 {
    gap: 16px;
}
.gap-6 {
    gap: 24px;
}
.gap-8 {
    gap: 32px;
}

.w-full {
    width: 100%;
}
.max-w-7xl {
    max-width: 1280px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}

.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}
.z-50 {
    z-index: 50;
}

.overflow-hidden {
    overflow: hidden;
}
.overflow-x-hidden {
    overflow-x: hidden;
}

.transition {
    transition: all 0.2s ease;
}

/* Responsive Utilities */
@media (min-width: 640px) {
    .sm\:flex {
        display: flex;
    }
    .sm\:hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    .md\:hidden {
        display: none;
    }
    .md\:block {
        display: block;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
    .lg\:hidden {
        display: none;
    }
    .lg\:block {
        display: block;
    }
}

/* ===========================================
   PAGE HERO SECTION (Common for all pages)
   =========================================== */
.main-content {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    overflow-x: hidden;
}

.page-hero-section {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .page-hero-section {
        padding: 7.5rem 0 4rem;
    }
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: -10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: -13rem;
    opacity: 0.4;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-hero-gradient-1 {
    height: 14rem;
    background: linear-gradient(to bottom right, var(--blue-600), #a855f7);
    filter: blur(106px);
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-hero-gradient-1 {
        height: 8rem;
        filter: blur(60px);
    }
}

.page-hero-gradient-2 {
    height: 8rem;
    background: linear-gradient(to right, #22d3ee, #0ea5e9);
    filter: blur(106px);
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-hero-gradient-2 {
        height: 5rem;
        filter: blur(60px);
    }
}

.page-hero-content {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .page-hero-content {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }
}

.page-hero-grid {
    display: grid;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .page-hero-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 3rem;
        padding-bottom: 2rem;
    }
}

.page-hero-text {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    min-width: 0;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .page-hero-text {
        grid-column: span 7;
        padding: 0;
    }
}

.page-hero-title {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--gray-900);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.page-hero-title .block {
    display: block;
}

@media (min-width: 480px) {
    .page-hero-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3rem;
        max-width: 42rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1280px) {
    .page-hero-title {
        font-size: 3.75rem;
    }
}

.page-hero-description {
    margin-bottom: 0.75rem;
    max-width: 100%;
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

@media (min-width: 480px) {
    .page-hero-description {
        font-size: 0.9375rem;
    }
}

@media (min-width: 768px) {
    .page-hero-description {
        max-width: 42rem;
        margin-bottom: 3rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-description {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
    }
}

.page-hero-actions {
    display: flex;
    width: 100%;
    margin-top: 1rem;
}

.page-hero-image {
    display: none;
    grid-column: span 12;
    padding: 2.5rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .page-hero-image {
        display: block;
        grid-column: span 5;
    }
}

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

.page-hero-text.text-center {
    text-align: center;
}

/* Mobile-specific fixes for page-hero-section */
@media (max-width: 767px) {
    .page-hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .page-hero-title div {
        display: block;
        margin-top: 0.25rem;
    }

    .page-hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .page-hero-actions {
        justify-content: flex-start;
    }

    .page-hero-actions .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
        width: auto;
        max-width: 100%;
        width: fit-content;
    }

    .page-hero-actions .btn-primary .icon-arrow-left {
        width: 16px;
        height: 16px;
    }

    /* Fix text-align justify issue in mobile for Persian text */
    p[style*="text-align: justify"],
    div[style*="text-align: justify"],
    span[style*="text-align: justify"] {
        text-align: right !important;
    }
}

/* ===========================================
   TARIFF PAGE STYLES
   =========================================== */
.tariff-calculator-section {
    padding: 2rem 0;
}

@media (max-width: 767px) {
    .tariff-calculator-section {
        padding: 1.5rem 0;
    }

    .tariff-slider-label-end {
        left: 0 !important;
    }
}

.tariff-calculator-card {
    position: relative;
    max-width: 1280px;
    margin: 0 auto 3.5rem;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background: white;
}

@media (max-width: 767px) {
    .tariff-calculator-card {
        margin: 0 auto 2rem;
        border-radius: 0.5rem;
    }
}

.tariff-calculator-header {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-bottom: 2px solid var(--gray-200);
    background: var(--gray-50);
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-800);
}

@media (max-width: 767px) {
    .tariff-calculator-header {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .tariff-calculator-header h3 {
        font-size: 1rem;
        margin: 0;
    }
}

.tariff-calculator-main {
    width: 100%;
}

.tariff-calculator-grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    border-radius: 0.75rem;
    background: white;
}

@media (min-width: 1024px) {
    .tariff-calculator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tariff-table-wrapper {
    position: relative;
    overflow-x: auto;
}

.tariff-table {
    height: 100%;
    width: 100%;
    text-align: right;
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (max-width: 767px) {
    .tariff-table {
        font-size: 0.75rem;
    }
}

.tariff-table-row {
    border-bottom: 1px solid var(--gray-200);
}

.tariff-table-row:nth-child(odd) {
    background: white;
}

.tariff-table-row:nth-child(even) {
    background: var(--gray-50);
}

.tariff-table-header {
    white-space: nowrap;
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: var(--gray-900);
}

@media (max-width: 767px) {
    .tariff-table-header {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}

.tariff-table-cell {
    padding: 1rem 1.5rem;
}

@media (max-width: 767px) {
    .tariff-table-cell {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}

.tariff-calculator-form-wrapper {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tariff-calculator-form {
    width: 66.666667%;
    padding: 2.5rem 0;
}

@media (max-width: 767px) {
    .tariff-calculator-form {
        width: 100%;
        padding: 1.5rem 1rem;
    }
}

.tariff-input-group {
    padding: 1.5rem 0;
}

@media (max-width: 767px) {
    .tariff-input-group {
        padding: 1rem 0;
    }
}

.tariff-input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
}

.tariff-input {
    display: block;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
    background: var(--gray-50);
    padding: 0.625rem;
    font-size: 0.875rem;
    color: var(--gray-900);
}

.tariff-input:focus {
    border-color: var(--blue-500);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tariff-result-group {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .tariff-result-group {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .tariff-result-group .btn-primary {
        width: 100%;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

.tariff-result {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tariff-result-label {
    margin-left: 0.25rem;
}

.tariff-slider-wrapper {
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .tariff-slider-wrapper {
        margin-bottom: 1rem;
    }
}

.tariff-slider-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.tariff-slider-inner {
    margin-top: 1rem;
    position: relative;
}

.tariff-range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    direction: ltr;
}

.tariff-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-600);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.tariff-range-slider::-webkit-slider-thumb:hover {
    background: var(--blue-700);
    transform: scale(1.1);
}

.tariff-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-600);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.tariff-range-slider::-moz-range-thumb:hover {
    background: var(--blue-700);
    transform: scale(1.1);
}

.tariff-slider-label {
    position: absolute;
    white-space: nowrap;
    border-radius: 0.125rem;
    background: var(--blue-100);
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blue-800);
}

.tariff-slider-label-start {
    top: -1.75rem;
    right: 0;
    margin-left: 0.5rem;
    text-align: right;
}

.tariff-slider-label-end {
    bottom: 0;
    left: -2rem;
    margin-left: 0.5rem;
    text-align: right;
}

@media (min-width: 640px) {
    .tariff-slider-label-end {
        left: -2.5rem;
    }
}

.tariff-slider-value {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

@media (max-width: 767px) {
    .tariff-slider-value {
        font-size: 0.8125rem;
    }
}

.tariff-settlement-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #dc2626;
    text-align: center;
}

@media (max-width: 767px) {
    .tariff-settlement-note {
        margin-top: 1rem;
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }
}

/* ===========================================
   TRACKING PAGE STYLES
   =========================================== */
.tracking-wizard {
    margin: 2rem 0;
}

.tracking-wizard-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .tracking-wizard-row {
        flex-direction: row;
        gap: 1rem;
    }
}

.tracking-wizard-step {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.tracking-wizard-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .tracking-wizard-step {
        padding: 1.25rem 0.75rem;
    }
}

.tracking-wizard-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    background: var(--blue-50);
    border-radius: 1rem;
    padding: 1rem;
}

.tracking-wizard-icon svg {
    width: 100%;
    height: 100%;
    max-width: 48px;
    max-height: 48px;
}

@media (max-width: 767px) {
    .tracking-wizard-icon {
        width: 72px;
        height: 72px;
        padding: 0.875rem;
    }

    .tracking-wizard-icon svg {
        max-width: 40px;
        max-height: 40px;
    }

    .tracking-wizard-icon svg {
        stroke-width: 2.5;
    }

    .tracking-icon-register {
        stroke-width: 2.5;
    }

    .tracking-icon-register circle:last-of-type {
        r: 2.5;
    }
}

.tracking-wizard-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-600);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
}

.tracking-wizard-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .tracking-wizard-step h3 {
        font-size: 1.25rem;
    }
}

.tracking-content {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tracking-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.tracking-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 0;
}

/* ===========================================
   PLUGINS PAGE STYLES
   =========================================== */
.plugins-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.25rem 0;
}

.plugins-section-wrapper {
    display: flex;
    width: 100%;
    max-width: 1280px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .plugins-section-wrapper {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .plugins-section-wrapper {
        padding: 0 2rem;
    }
}

.plugins-tabs-wrapper {
    margin-top: 2rem;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background: var(--gray-800);
    padding: 0.75rem 0.5rem;
    color: white;
}

.plugins-tabs {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.plugins-tab {
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.2s;
}

.plugins-tab:hover {
    background: var(--gray-600);
}

.plugins-tab.active {
    background: var(--gray-600);
}

@media (max-width: 767px) {
    .plugins-tabs-wrapper {
        padding: 0.5rem 0.375rem;
        margin-top: 1.5rem;
        gap: 0.375rem;
    }

    .plugins-tabs {
        gap: 0.375rem;
        flex-wrap: wrap;
    }

    .plugins-tab {
        font-size: 0.8125rem;
        padding: 0.375rem 0.5rem;
        font-weight: 500;
        white-space: nowrap;
        flex: 0 1 auto;
        min-width: fit-content;
    }
}

.plugins-grid {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 14rem;
    gap: 0.5rem;
}

.plugin-card-wrapper {
    width: calc(33.333333% - 0.5rem);
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    .plugin-card-wrapper {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 640px) {
    .plugin-card-wrapper {
        width: 100%;
    }
}

.plugin-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0.75rem;
    background: rgba(245, 245, 244, 0.5);
    padding: 1.5rem;
    width: 100%;
}

.plugin-card-header {
    display: flex;
    align-items: flex-start;
    padding-bottom: 1rem;
}

.plugin-icon-wrapper {
    display: flex;
    width: 5rem;
    height: 5rem;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(226, 232, 240, 0.75);
    flex-shrink: 0;
    margin-left: 1rem;
}

.plugin-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.plugin-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 1rem;
    flex: 1;
}

.plugin-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin: 0;
}

@media (min-width: 1280px) {
    .plugin-title {
        font-size: 1rem;
    }
}

.plugin-fite {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.plugin-description {
    font-weight: 500;
    font-size: 0.875rem;
    text-align: justify;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .plugin-description {
        text-align: right;
    }
}

@media (min-width: 1280px) {
    .plugin-description {
        font-size: 1rem;
    }
}

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

.plugin-card-divider {
    width: 100%;
    border-top: 1px solid var(--gray-300);
}

.plugin-card-footer-content {
    display: flex;
    margin-top: 1rem;
    align-items: center;
    justify-content: space-between;
    color: var(--slate-700);
}

.plugin-version {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.plugin-version-label {
    font-weight: 500;
    font-size: 0.875rem;
}

.plugin-version-value {
    font-weight: 500;
    font-size: 0.875rem;
}

.plugin-download-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--slate-700);
    text-decoration: none;
    transition: all 0.2s;
}

.plugin-download-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.plugin-download-text {
    margin-left: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.plugin-download-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
}

.icon-arrow-left {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-download-alt {
    font-family: "themify";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.icon-download-alt:before {
    content: "\e628";
}

/* ===========================================
   FAQ PAGE STYLES
   =========================================== */
.faq-section {
    padding: 2rem 0;
}

.faq-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 2px solid var(--gray-200);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.25rem 0;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .faq-tabs {
        flex-wrap: wrap;
        font-size: 1.5rem;
        padding: 0;
    }
}

.faq-tab {
    margin-left: 0;
    display: inline-block;
    cursor: pointer;
    padding: 0.625rem 1rem;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .faq-tab {
        margin-left: 0.5rem;
        padding: 1rem;
        font-size: inherit;
    }
}

.faq-tab:hover {
    background: var(--gray-50);
    color: var(--gray-600);
}

.faq-tab.active {
    background: var(--gray-100);
}

.faq-list {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.faq-item {
    width: 100%;
    overflow-y: hidden;
    border: 1px solid var(--gray-100);
    background: white;
    color: var(--neutral-700);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    padding: 1rem;
    align-items: center;
}

.faq-question-text {
    position: relative;
    padding-right: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-950);
    text-align: right;
    flex: 1;
}

.faq-question-text::after {
    content: "";
    position: absolute;
    top: -0.5rem;
    right: 0;
    height: 2rem;
    width: 0.25rem;
    border-radius: 0 0.25rem 0.25rem 0;
    background: var(--blue-600);
}

@media (min-width: 768px) {
    .faq-question-text {
        font-size: 1.125rem;
    }
}

.faq-arrow {
    margin-right: auto;
    height: 1.25rem;
    width: 1.25rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-arrow.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    transition: all 0.5s;
    overflow: hidden;
    max-height: 0;
}

.faq-answer-text {
    padding: 1rem 1.75rem;
    text-align: justify;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--neutral-800);
}

@media (max-width: 767px) {
    .faq-answer-text {
        text-align: right;
    }
}

@media (min-width: 768px) {
    .faq-answer-text {
        font-size: 1rem;
    }
}

/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */
.about-content-section {
    position: relative;
    padding: 2rem 3rem 1.25rem;
}

@media (min-width: 1280px) {
    .about-content-section {
        padding-right: 0;
        padding-left: 0;
    }
}

.about-content {
    max-width: 1280px;
    margin: 0 auto 2.5rem;
    text-align: justify;
    font-size: 1.125rem;
}

@media (max-width: 767px) {
    .about-content {
        text-align: right;
    }
}

.about-content-title {
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
    font-weight: 700;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.about-features-list li {
    padding: 0.5rem 0;
    padding-right: 1rem;
    position: relative;
}

.about-features-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--blue-600);
    font-weight: bold;
}

.about-divider {
    height: 1px;
    width: 100%;
    background: #a1a1aa;
    margin: 1.5rem 0;
}

.about-image-section {
    max-width: 1280px;
    margin: 0 auto;
}

.about-image-wrapper {
    position: relative;
    z-index: 0;
    height: 24rem;
    width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.about-image-wrapper img:not(.about-slider-image) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-wrapper::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, black, transparent);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: opacity, transform;
}

.about-slider-controls {
    display: none;
}

.about-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-slider-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.about-slider-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue-600);
}

.about-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.about-slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.about-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.about-slider-dot.active {
    background: white;
    width: 1.5rem;
    border-radius: 0.375rem;
}

.about-card {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    margin-top: -5rem;
    width: 90%;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    background: white;
    padding: 2.5rem;
}

.about-card-title {
    position: relative;
    line-clamp: 1;
    padding-right: 1.25rem;
    font-size: 1.875rem;
    font-weight: 700;
    transition: all 0.3s;
}

.about-card-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.25rem;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    border: 2px solid var(--blue-800);
    background: white;
}

.about-card-title:hover {
    color: var(--blue-600);
}

.about-card-text {
    margin-top: 1rem;
    padding-right: 1.25rem;
    line-height: 1.5;
}

.about-stats-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1.25rem;
}

.about-stats-list {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .about-stats-list {
        padding: 0;
    }
}

.about-stat-item {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem;
}

@media (min-width: 1024px) {
    .about-stat-item {
        width: auto;
        padding: 1.5rem;
    }
}

.about-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--main-600);
}

@media (min-width: 640px) {
    .about-stat-number {
        font-size: 4.5rem;
    }
}

.about-stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-600);
}

@media (min-width: 640px) {
    .about-stat-label {
        font-size: 1.875rem;
    }
}

.about-values-section {
    padding: 5rem 2rem;
}

.about-values-title {
    font-weight: 700;
    color: var(--zinc-800);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .about-values-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .about-values-title {
        font-size: 2.25rem;
    }
}

.about-values-grid {
    display: grid;
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    border-radius: 1.5rem;
    overflow: hidden;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-value-card {
    position: relative;
    background: white;
    transition: all 0.3s;
    border-left: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.about-value-card:hover {
    z-index: 1;
    background: var(--blue-50);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
    .about-value-card {
        border-bottom: none;
    }

    .about-value-card:not(:last-child) {
        border-left: 1px solid var(--gray-100);
    }
}

.about-value-content {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .about-value-content {
        padding: 3rem 2rem;
    }
}

.about-value-icon {
    height: 5rem;
    width: 5rem;
    color: var(--blue-600);
}

.about-value-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.about-value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zinc-700);
    transition: color 0.3s;
}

.about-value-card:hover .about-value-title {
    color: var(--blue-700);
}

.about-value-description {
    color: var(--zinc-500);
    line-height: 1.5;
}

/* ===========================================
   LEGAL PAGES STYLES (Agreement, Privacy, etc.)
   =========================================== */
.legal-content-section {
    position: relative;
    padding: 8rem 1rem 1.25rem;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}

@media (min-width: 640px) {
    .legal-content-section {
        padding-top: 12rem;
        padding-right: 3rem;
        padding-left: 3rem;
    }
}

@media (min-width: 1024px) {
    .legal-content-section {
        padding-top: 14rem;
    }
}

@media (min-width: 1280px) {
    .legal-content-section {
        padding-right: 0;
        padding-left: 0;
    }
}

.legal-content {
    max-width: 1280px;
    margin: 0 auto 2.5rem;
    text-align: justify;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-700);
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

@media (max-width: 767px) {
    .legal-content {
        text-align: right;
    }
}

@media (min-width: 640px) {
    .legal-content {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .legal-content {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

.legal-title {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

@media (min-width: 640px) {
    .legal-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .legal-title {
        font-size: 1.875rem;
    }
}

.legal-divider {
    height: 1px;
    width: 100%;
    background: var(--gray-200);
    margin: 1.5rem 0 2rem;
    border: none;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section-title {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-600);
}

@media (min-width: 640px) {
    .legal-section-title {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .legal-section-title {
        font-size: 1.25rem;
    }
}

.legal-text {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    word-break: break-word;
    text-align: right;
}

.legal-text code,
.legal-text a {
    word-break: break-all;
    overflow-wrap: break-word;
}

@media (min-width: 640px) {
    .legal-text code,
    .legal-text a {
        word-break: break-word;
    }
}

.legal-list {
    margin: 1rem 0;
    padding-right: 1.5rem;
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.legal-content code {
    background: var(--gray-100);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: "Courier New", monospace;
    font-size: 0.75rem;
    color: var(--blue-600);
    word-break: break-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 640px) {
    .legal-content code {
        word-break: break-word;
    }
}

@media (min-width: 640px) {
    .legal-content code {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}

.legal-content pre {
    background: var(--gray-900);
    color: var(--gray-100);
    padding: 0.75rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    direction: ltr;
    text-align: left;
    font-family: "Courier New", monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 1rem 0;
    -webkit-overflow-scrolling: touch;
    word-break: break-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

@media (min-width: 640px) {
    .legal-content pre {
        white-space: pre;
        word-break: normal;
    }
}

@media (min-width: 640px) {
    .legal-content pre {
        padding: 1rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

.legal-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.legal-content {
    overflow-x: visible;
}

.legal-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .legal-table-wrapper {
        overflow-x: visible;
    }
}

.legal-content table,
.legal-content .table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: table;
    min-width: 100%;
}

@media (max-width: 639px) {
    .legal-content table,
    .legal-content .table {
        min-width: 600px;
    }
}

.legal-content table td,
.legal-content .table td {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-200);
    text-align: right;
    font-size: 0.75rem;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .legal-content table td,
    .legal-content .table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

.legal-content table td.active {
    background: var(--blue-50);
    font-weight: 600;
    color: var(--blue-900);
}

@media (max-width: 639px) {
    .legal-content table td.active {
        font-size: 0.75rem;
    }
}

.legal-content table td code {
    background: var(--blue-50);
    color: var(--blue-700);
    padding: 0.125rem 0.375rem;
}

.legal-content .red {
    color: #dc2626;
    font-weight: 600;
}

.legal-content .blue {
    color: var(--blue-600);
    font-weight: 600;
}

.legal-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .legal-downloads {
        flex-direction: row;
    }
}

.legal-download-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    color: var(--gray-900);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legal-download-link:hover {
    border-color: var(--blue-400);
    color: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.legal-download-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    color: var(--blue-600);
}

.legal-download-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.legal-download-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-900);
}

.legal-download-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.legal-download-link:hover .legal-download-title {
    color: var(--blue-700);
}

.legal-download-link:hover .legal-download-subtitle {
    color: var(--blue-600);
}

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */
.contact-header-actions {
    display: flex;
    margin-bottom: 2.5rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.contact-icon {
    margin-left: 0.25rem;
    display: inline-block;
    height: 1.25rem;
    width: 1.25rem;
}

.contact-divider {
    display: inline-block;
    height: 2.5rem;
    width: 0.125rem;
    background: var(--blue-200);
}

.contact-phone {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--zinc-800);
}

.contact-image-wrapper {
    text-align: center;
}

.contact-image-wrapper img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.contact-social-section {
    background: var(--blue-50);
    padding: 2.5rem 0;
}

.contact-social-title {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-550);
}

@media (min-width: 640px) {
    .contact-social-title {
        margin-bottom: 2.25rem;
        text-align: right;
        font-size: 1.5rem;
    }
}

.contact-social-list {
    display: flex;
    gap: 0.75rem;
    padding: 0;
    list-style: none;
}

.contact-social-link {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(29, 78, 216, 0.1);
    transition: all 0.2s;
    text-decoration: none;
}

@media (min-width: 640px) {
    .contact-social-link {
        height: 4rem;
        width: 4rem;
        margin-left: 1.5rem;
    }
}

.contact-social-link:hover {
    background: var(--blue-700);
}

.contact-social-icon {
    height: 2.5rem;
    width: 2.5rem;
    transform: scale(0.75);
    fill: currentColor;
    color: var(--blue-700);
    transition: all 0.2s;
}

.contact-social-link:hover .contact-social-icon {
    color: white;
}

.contact-cards-section {
    padding: 2.5rem 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    row-gap: 5rem;
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .contact-cards-grid {
        padding: 0;
    }
}

.contact-card {
    position: relative;
    width: 100%;
    max-width: 24rem;
    border-radius: 1rem;
    background: white;
    padding: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
    .contact-card {
        padding: 1.5rem;
    }
}

.contact-card-icon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    display: flex;
    height: 5rem;
    width: 5rem;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: white;
}

.contact-card-icon-svg {
    height: 2.5rem;
    width: 2.5rem;
    fill: var(--blue-600);
}

.contact-card-title {
    margin-top: 1.25rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--blue-700);
}

.contact-card-value {
    padding-top: 0.5rem;
    font-size: 1.125rem;
}

/* ===========================================
   HOME PAGE ADDITIONAL STYLES
   =========================================== */

/* Subtle animations and enhancements */
.step-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.document-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.client-logo-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* FAQ Section Styling */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 0;
    margin: 0;
}

.faq-tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.faq-tab-btn:hover {
    background: #ffffff;
    color: #1e40af;
}

.faq-tab-btn.active {
    color: #1e40af;
    border-bottom-color: #1e40af;
    background: #ffffff;
}

.faq-tabs button:focus {
    outline: none;
}

.faq-list {
    background: #ffffff;
}

.faq-item {
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

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

.faq-item:hover {
    background: #f9fafb;
}

.faq-item.active {
    background: #f9fafb;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    gap: 20px;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding-right: 20px;
    position: relative;
    line-height: 1.6;
}

.faq-question-text::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: #1e40af;
    border-radius: 2px 0 0 2px;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: #1e40af;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-arrow.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-text {
    padding: 0 30px 24px 30px;
    margin: 0;
    padding-right: 50px;
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    text-align: justify;
}

@media (max-width: 767px) {
    .faq-answer-text {
        text-align: right;
    }
}

/* Section badge styling */
.section-badge {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.section-badge:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

/* Button enhancements */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section header styling */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.section-header-small {
    margin-bottom: 48px;
}

.section-desc {
    max-width: 700px;
    margin: 16px auto 0;
    color: #6b7280;
}

.section-description {
    max-width: 700px;
    margin: 16px auto 0;
    color: #6b7280;
}

/* Section backgrounds */
.section-bg-gradient-light {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.section-bg-gradient-reverse {
    background: linear-gradient(
        to right,
        #eff6ff 0%,
        #eff6ff 5%,
        #ffffff 5%,
        #ffffff 100%
    );
}

.section-bg-white {
    background: #ffffff;
}

/* Container max-width */
.container {
    max-width: 1280px;
}

/* Step items inline styles removal */
.step-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===========================================
   CONTACT SECTION STYLES
   =========================================== */
.contact-container {
    max-width: 1280px;
    padding: 48px 16px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: start;
}

.contact-info-title {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info-desc {
    color: #4b5563;
    text-align: justify;
    margin-bottom: 24px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .contact-info-desc {
        text-align: right;
    }
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.contact-info-icon {
    color: #1e40af;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}
.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.contact-info-link {
    color: #1e40af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-form {
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #374151;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #9ca3af;
}

.contact-form-textarea-wrapper {
    margin-bottom: 16px;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.contact-form-submit {
    text-align: left;
}

.contact-form-submit .btn-primary {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
}

/* FAQ More Button Mobile */
.faq-more-btn-mobile {
    display: none;
    text-align: center;
    padding: 24px 0;
    margin-top: 16px;
}

.faq-more-btn-mobile .btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: #1e40af;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-more-btn-mobile .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

section .container {
    overflow: visible;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-scroll-down {
        display: none;
    }

    .services-showcase-section {
        padding-top: 0 !important;
    }
    .services-showcase-section .container {
        padding-top: 0 !important;
    }

    #steps-section .step-desc {
        text-align: right;
    }

    .panapal-hero {
        min-height: unset;
    }
    /* Header Mobile Improvements */
    #site-header {
        top: 0.25rem;
    }

    p,
    .panapal-hero-text {
        text-align: right;
    }
    #site-header > div {
        margin-top: 10px;
    }

    .px-sm-0 {
        padding-left: 0;
        padding-right: 0;
    }

    section .container {
        overflow: visible;
        padding: 0;
    }
    /* Features Section Mobile Improvements */
    .features-grid {
        gap: 24px;
    }

    .feature-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 15px;
        text-align: center;
    }

    .feature-icon {
        justify-content: center;
        padding-top: 0;
    }

    .feature-icon svg {
        width: 56px;
        height: 56px;
    }

    .feature-content {
        padding-right: 0;
        text-align: center;
    }

    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
        padding-right: 0;
        line-height: 1.4;
    }

    .feature-desc {
        font-size: 0.9375rem;
        padding-right: 0;
        line-height: 1.7;
        text-align: center;
    }

    .feature-card-highlight {
        transform: none;
    }

    .feature-card-highlight:hover {
        transform: translateY(-4px);
    }

    /* Section padding mobile */
    .section {
        padding: 48px 16px !important;
    }

    .container[style*="padding"] {
        padding: 48px 16px !important;
    }

    /* FAQ Section Mobile */
    .faq-container {
        border-radius: 8px;
    }

    /* Hide tabs on mobile */
    .faq-tabs-desktop {
        display: none !important;
    }

    /* Show more button on mobile */
    .faq-more-btn-mobile {
        display: block;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question-text {
        font-size: 15px;
        padding-right: 16px;
    }

    .faq-question-text::after {
        width: 2px;
        height: 20px;
    }

    .faq-answer-text {
        padding: 0 20px 20px 20px;
        padding-right: 36px;
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-arrow {
        width: 18px;
        height: 18px;
    }

    /* Testimonials Section Mobile Improvements */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-header {
        margin-bottom: 32px;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 24px 20px;
        margin: 0 10px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonial-avatar img {
        width: 70px;
        height: 70px;
    }

    .testimonial-quote p {
        font-size: 0.9375rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-role {
        font-size: 0.8125rem;
    }

    /* Services Showcase Section Mobile */
    .services-showcase-section {
        padding: 48px 0;
    }

    .services-showcase-content {
        gap: 32px;
    }

    .services-list {
        margin-top: 32px;
        gap: 20px;
    }

    .service-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .service-item:hover {
        transform: translateY(-2px);
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-content {
        text-align: center;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.875rem;
        text-align: right;
    }

    /* Services Page Mobile */
    .services-content-section {
        padding: 48px 0;
    }

    .services-features-grid {
        gap: 24px;
        margin-top: 32px;
    }

    .service-feature-card {
        padding: 24px 20px;
    }

    .service-feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .service-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-feature-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }

    .service-feature-desc {
        font-size: 0.9375rem;
    }

    .services-benefits-section {
        padding: 48px 0;
    }

    .benefits-grid {
        gap: 24px;
        margin-top: 32px;
    }

    .benefit-item {
        padding: 24px 20px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-desc {
        font-size: 0.875rem;
    }

    /* Contact Section Mobile Improvements */
    .contact-container {
        padding: 48px 16px;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .contact-info-desc {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
        width: 100%;
    }

    .contact-form-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .contact-form-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .contact-form-input,
    .contact-form-textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .contact-form-textarea {
        min-height: 120px;
    }

    .contact-form-submit {
        text-align: center;
    }

    .contact-form-submit .btn-primary {
        width: 100%;
        padding: 14px 24px;
    }

    .panapal-footer-col li {
        border-bottom: none;
        padding: 2px 10px;
    }

    .panapal-footer-col h3 {
        margin-bottom: 10px;
    }

    .panapal-footer-col ul {
        border: none;
    }

    .panapal-footer-grid {
        gap: 0px;
    }
}
