/*
Author        :
Author Uri    :
Template Name :
Version       : 1.0
*/
/*----------------------------------------------
[Table of contents]

01. Nav section start
02. Bottom Mobile, Tab nav section start
03. Hero section start
04. Service category section start
05. Location map section start
06. Featured section start
07. Destination section start
08. latest ads section start
09. Multiple search section start
10. Products section start
11. Product details page start
12. Ad section2 start
13. Ad section3 start
14. Review section start
15. Posts page start
16. pricing section start
17. Faq section start
18. Blog section start
19. Newsletter section start
20. Footer section start
21. Copyright section start
22. Contact section start
23. Map section start
24. Login Signup section start
25. Blog details section start
26. Pagination section start
27. Error section start


11. Blog section start
13. Banner section start
14. Docs banner section start
15. Copyright section start
16. Banner section start
17. Contact section start
18. Login Signup section start
19. Blog details section start
20. Pagination section start
21. Error section start
----------------------------------------------*/
/*----------------------------------------------
Typography
----------------------------------------------*/
/* === GENUINE DESIGN SYSTEM - Vercel/Minimal Style === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* === COLOR SCHEME === */
    color-scheme: dark;

    /* === GENUINE DESIGN SYSTEM - Premium Dark Theme === */

    /* Primary - Electric Blue */
    --gp-primary: #3b82f6;
    --gp-primary-hover: #2563eb;
    --gp-primary-light: rgba(59, 130, 246, 0.15);
    --gp-primary-rgb: 59, 130, 246;

    /* Secondary - Emerald Green */
    --gp-secondary: #10B981;
    --gp-secondary-hover: #059669;
    --gp-secondary-light: rgba(16, 185, 129, 0.15);

    /* Semantic Colors */
    --gp-success: #22c55e;
    --gp-success-light: rgba(34, 197, 94, 0.15);
    --gp-warning: #f59e0b;
    --gp-warning-light: rgba(245, 158, 11, 0.15);
    --gp-danger: #ef4444;
    --gp-danger-light: rgba(239, 68, 68, 0.15);
    --gp-info: #3b82f6;
    --gp-info-light: rgba(59, 130, 246, 0.15);

    /* === PREMIUM DARK BACKGROUNDS (Blue-tinted, not pure black) === */
    --bg-color1: #0c0f1a;      /* Page bg - Deep navy */
    --bg-color2: #131829;      /* Cards bg - Dark blue-gray */
    --bg-color3: #1a2035;      /* Elevated surfaces */
    --bg-color4: #242b42;      /* Hover states */
    --bg-color5: #2d3650;      /* Active/Selected states */

    /* Premium Dark Gradient Colors */
    --gp-dark-1: #0c0f1a;      /* Deepest dark */
    --gp-dark-2: #131829;      /* Dark blue-gray */
    --gp-dark-3: #1a2035;      /* Elevated dark */
    --gp-gradient-dark: linear-gradient(180deg, var(--gp-dark-1) 0%, var(--gp-dark-2) 50%, var(--gp-dark-3) 100%);
    --gp-gradient-dark-reverse: linear-gradient(180deg, var(--gp-dark-3) 0%, var(--gp-dark-2) 50%, var(--gp-dark-1) 100%);

    /* Card Gradients for depth */
    --card-gradient: linear-gradient(145deg, #161d2f 0%, #131829 100%);
    --card-gradient-hover: linear-gradient(145deg, #1a2238 0%, #161d2f 100%);

    /* Accent Colors */
    --gp-accent-green: #22c55e;
    --gp-accent-cyan: #06b6d4;
    --gp-accent-purple: #8B5CF6;
    --gp-accent-purple-light: #A78BFA;
    --gp-accent-pink: #EC4899;

    /* Glass/Blur Effects */
    --gp-glass-bg: rgba(148, 163, 184, 0.03);
    --gp-glass-border: rgba(148, 163, 184, 0.08);
    --gp-glass-hover: rgba(148, 163, 184, 0.05);

    /* Text Colors - Softer whites */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --heading-color: #f1f5f9;

    /* Borders - Subtle with blue tint */
    --border-color: rgba(148, 163, 184, 0.1);
    --border-color-hover: rgba(148, 163, 184, 0.2);
    --border-color1: rgba(148, 163, 184, 0.1);
    --border-color2: rgba(148, 163, 184, 0.06);

    /* Shadows - Deeper for premium feel */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.25);
    --shadow1: var(--shadow-sm);
    --shadow2: var(--shadow-md);
    --shadow3: var(--shadow-lg);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --body-font: var(--font-sans);
    --heading-font: var(--font-sans);

    /* Radius - Modern rounded */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Legacy compatibility variables */
    --primary-color: var(--gp-primary);
    --secondary-color: var(--gp-secondary);
    --white: #ffffff;
    --black: #0c0f1a;
    --grayish-blue: #94a3b8;
    --soft-blue: var(--gp-info);
    --grayish-violet: #242b42;
    --btn-hover-bg: var(--gp-primary-hover);
    --btn-hover-bg2: var(--gp-secondary-hover);
    --soft-green: var(--gp-success);
    --moderate-lime-green: var(--gp-success);
    --soft-red: var(--gp-danger);
    --lime-gray: #64748b;
    --vivid-orange: #f59e0b;
    --yellow: #f59e0b;
    --orange: #f59e0b;
    --input-color: var(--bg-color2);
    --input-color2: var(--bg-color3);
    --body-color: var(--bg-color1);
    --primary-color-opacity-low: var(--gp-primary-light);
    --primary-color-opacity-low2: var(--gp-secondary-light);
    --secondary-color-opacity-low: var(--gp-secondary-light);
    --moderate-lime-green-opacity-low: var(--gp-success-light);
    --soft-red-opacity-low: var(--gp-danger-light);

    /* Legacy HSL base (for compatibility) */
    --base: 217 91% 60%;
    --base-h: 217;
    --base-s: 91%;
    --base-l: 60%;
    --secondary: 160 84% 39%;
}

/* === DARK THEME CLASS (explicit) === */
.dark-theme,
[data-theme="dark"] {
    --bg-color1: #0c0f1a;
    --bg-color2: #131829;
    --bg-color3: #1a2035;
    --bg-color4: #242b42;
    --bg-color5: #2d3650;
    --heading-color: #f1f5f9;
    --border-color1: rgba(148, 163, 184, 0.1);
    --border-color2: rgba(148, 163, 184, 0.06);
    --input-color: var(--bg-color2);
    --body-color: #94a3b8;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* === GENUINE COMPONENT: Buttons === */
.btn-genuine,
.btn-primary-genuine {
    background: var(--gp-primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color var(--transition-base),
                transform var(--transition-base),
                box-shadow var(--transition-base);
}

.btn-genuine:hover,
.btn-primary-genuine:hover {
    background: var(--gp-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn-genuine:focus-visible,
.btn-primary-genuine:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
}

.btn-genuine:active,
.btn-primary-genuine:active {
    transform: translateY(0);
}

.btn-secondary-genuine {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: border-color var(--transition-base),
                background-color var(--transition-base);
}

.btn-secondary-genuine:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-color3);
}

.btn-secondary-genuine:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
}

.btn-success-genuine {
    background: var(--gp-success);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.btn-success-genuine:hover {
    background: var(--gp-secondary-hover);
    transform: translateY(-1px);
}

.btn-danger-genuine {
    background: var(--gp-danger);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.btn-danger-genuine:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* === GENUINE COMPONENT: Cards === */
.card-genuine {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color var(--transition-base),
                transform var(--transition-base),
                box-shadow var(--transition-base);
}

.card-genuine:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-genuine-interactive {
    cursor: pointer;
}

.card-genuine-interactive:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
}

/* === GENUINE COMPONENT: Inputs === */
.input-genuine,
.form-control-genuine {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    width: 100%;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-genuine:focus,
.form-control-genuine:focus {
    border-color: var(--gp-primary);
    box-shadow: 0 0 0 3px var(--gp-primary-light);
    outline: none;
}

.input-genuine::placeholder,
.form-control-genuine::placeholder {
    color: var(--text-muted);
}

.input-genuine:disabled,
.form-control-genuine:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === GENUINE COMPONENT: Select === */
.select-genuine {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23a1a1a1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.select-genuine:focus {
    border-color: var(--gp-primary);
    box-shadow: 0 0 0 3px var(--gp-primary-light);
    outline: none;
}

/* === GENUINE COMPONENT: Badges === */
.badge-genuine {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-sans);
}

.badge-primary {
    background: var(--gp-primary-light);
    color: var(--gp-primary);
}

.badge-success {
    background: var(--gp-success-light);
    color: var(--gp-success);
}

.badge-warning {
    background: var(--gp-warning-light);
    color: var(--gp-warning);
}

.badge-danger {
    background: var(--gp-danger-light);
    color: var(--gp-danger);
}

/* === GENUINE: Typography utilities === */
.text-balance {
    text-wrap: balance;
}

.tabular-nums {
    font-variant-numeric: tabular-nums;
}

.font-mono {
    font-family: var(--font-mono);
}

/* === GENUINE: Focus visible for all interactive elements === */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--gp-primary-light, rgba(0, 102, 255, 0.15));
    border-color: var(--gp-primary, #0066FF) !important;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding: 16px;
}

/* === GENUINE: Animations === */
@keyframes gp-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gp-slide-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gp-scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gp-animate-fade-in {
    animation: gp-fade-in var(--transition-base) ease-out;
}

.gp-animate-slide-up {
    animation: gp-slide-up var(--transition-slow) ease-out;
}

.gp-animate-scale-in {
    animation: gp-scale-in var(--transition-base) ease-out;
}

/*----------------------------------------------
Reset section start
----------------------------------------------*/

[v-cloak] {
    display: none;
}

.rtl {
    direction: rtl;
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color);
}

::selection {
    color: #fff;
    background: var(--primary-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield;
}

/*----------------------------------------------
preloader section start
----------------------------------------------*/
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: var(--bg-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader .preloader-image {
    max-width: 200px;
    animation: rotate 15s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(45deg);
    }
    75% {
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/*----------------------------------------------
preloader end
----------------------------------------------*/
/*----------------------------------------------
scroll up section start
----------------------------------------------*/
.scroll-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99999;
}

.rtl .scroll-up {
    left: 50px;
    right: auto;
}

@media (max-width: 767px) {
    .scroll-up {
        bottom: 50px;
        right: 20px;
    }

    .rtl .scroll-up {
        left: 20px;
    }
}

.scroll-up i {
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

/*----------------------------------------------
scroll up end
----------------------------------------------*/
*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    font-size: 18px;
    color: #eeeeee;
    margin-bottom: 10px;
    line-height: 1.4;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

button {
    background: none;
    border: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading-font);
    font-weight: 500;
    line-height: 1.3;
    color: var(--heading-color);
}

h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 68px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 36px;
        line-height: 50px;
    }
}

h2 {
    font-size: 38px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--heading-color);
}

@media (max-width: 991px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 32px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    h3 {
        font-size: 24px;
    }
}

h4 {
    font-size: 24px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

h6 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

img {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

.logo {
    max-width: 150px;
    min-width: 100px;
}

.footer-logo {
    max-width: 150px;
    min-width: 100px;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
    background-color: var(--bg-color1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}


@media (max-width: 991px) {
    body {
        padding-bottom: 50px;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


.form-label {
    color: var(--heading-color);
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-select {
    color: var(--body-color);
    background-image: url(../img/accordion/down-arrow-white.png);
    background-size: 12px;
}

option {
    background-color: var(--bg-color1);
}

.form-control,
.form-select {
    border-radius: var(--radius-md, 8px);
    background-color: var(--bg-color2, #111111);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    height: 48px;
    color: var(--text-primary, #ffffff);
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--border-color-hover, rgba(255, 255, 255, 0.2));
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px var(--gp-primary-light, rgba(0, 102, 255, 0.15));
    border: 1px solid var(--gp-primary, #0066FF);
    background-color: var(--bg-color2, #111111);
    color: var(--text-primary, #ffffff);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted, #737373);
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: var(--text-muted, #737373);
}

.form-control::-moz-placeholder {
    color: var(--text-muted, #737373);
}

.form-check label,
.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--gp-primary, #0066FF);
    border-color: var(--gp-primary, #0066FF);
}

.form-check-input:focus {
    border-color: var(--gp-primary, #0066FF);
    box-shadow: 0 0 0 3px var(--gp-primary-light, rgba(0, 102, 255, 0.15));
}

.form-check-input:focus-visible {
    outline: none;
}

.rtl .form-check {
    padding-right: 1.5em;
}

.rtl .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
}

.form-select {
    background-repeat: no-repeat;
}

.input-group {
    height: 45px;
    box-shadow: var(--shadow2);
    border-radius: 8px;
}

.input-group-text {
    min-width: 45px;
    border: none;
    display: flex;
    justify-content: center;
    background-color: var(--primary-color-opacity-low);
}

/*----------------------------------------------
intlTelInput section start
----------------------------------------------*/
.iti {
    display: flex !important;
}

.iti__country-list {
    background-color: var(--input-color) !important;
}

.iti__selected-flag {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.iti__country-list {
    box-shadow: var(--shadow1);
    border: 1px solid var(--border-color2);
    border-radius: 5px;
}

.iti-mobile .iti__country-list {
    z-index: 9999;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: var(--primary-color-opacity-low);
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: var(--primary-color-opacity-low);
}

.rtl .iti--allow-dropdown .iti__flag-container,
.rtl .iti--separate-dial-code .iti__flag-container {
    right: 0;
    left: auto;
}

.rtl .iti__selected-flag {
    border-top-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
}

.rtl .iti--allow-dropdown input,
.rtl .iti--allow-dropdown input[type=tel],
.rtl .iti--allow-dropdown input[type=text],
.rtl .iti--separate-dial-code input,
.rtl .iti--separate-dial-code input[type=tel],
.rtl .iti--separate-dial-code input[type=text] {
    padding-left: 6px !important;
    padding-right: 96px;
}


/*----------------------------------------------
intlTelInput end
----------------------------------------------*/
/*----------------------------------------------
Select2 section start
----------------------------------------------*/
img.img-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color2);
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border: 1px solid transparent;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container .select2-dropdown {
    border: 1px solid var(--input-color);;
}

.select2-container .select2-dropdown .select2-search__field {
    border-radius: 5px;
    border: 1px solid var(--border-color2);
    outline: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: var(--input-color);
}

.select2-container .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
    border: 1px solid var(--border-color1);
    box-shadow: 0 0 1rem 0 rgba(140, 152, 164, 0.25);
}

.select2-container .select2-dropdown .select2-search__field:focus-visible {
    box-shadow: 0 0 1rem 0 rgba(140, 152, 164, 0.25);
    border: 1px solid var(--border-color2);
}

.select2-results__option {
    border-radius: 5px;
}

.select2-search--dropdown {
    background-color: var(--input-color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--primary-color-opacity-low);
    color: var(--heading-color);
}

.select2-container--default .select2-results__option--selected {
    background: var(--primary-color);
    color: var(--white);
}

.select2-container--default .select2-results__option--selected:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.select2-container--default .select2-results > .select2-results__options {
    text-transform: capitalize;
    padding: 5px;
    max-height: 300px;
    background-color: var(--bg-color3);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 141, 255, 0.1);
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid var(--border-color2);
    height: 45px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single {
    /*background-color: #fff;*/
    background-color: var(--input-color) !important;
    border: 1px solid var(--input-color) !important;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--body-color) transparent transparent transparent;
    border-width: 5px 6px 0 6px;
    margin-left: -10px;
}

.theme-service .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px;
    right: 1px;
    width: 20px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--primary-color) transparent;
    border-width: 0 6px 5px 6px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 5px;
}

.rtl .select2-container .select2-selection--single .select2-selection__rendered {
    text-align: right;
    width: 100%;
}

/*----------------------------------------------
Select2 end
----------------------------------------------*/
/*----------------------------------------------
Breadcrumb start
----------------------------------------------*/
.breadcrumb {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    color: var(--white);
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}

.breadcrumb .breadcrumb-item a {
    color: var(--white);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--white);
    text-transform: capitalize;
}

.rtl .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
    transform: rotate(180deg);
}

/*----------------------------------------------
Breadcrumb end
----------------------------------------------*/
.cmn-scroll {
    max-height: 255px;
    overflow: scroll;
    padding-right: 5px;
    padding-top: 10px;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: var(--primary-color);
    visibility: hidden;
    opacity: 0;
}

:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
    border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: hsl(var(--base)/0.8);
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 5px;
    background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots span {
    background: var(--primary-color);
    width: 30px;
    height: 5px;
}

.owl-theme .owl-dots .owl-dot span {
    transition: all 0.5s ease-in-out;
}

.modal-content {
    background-color: var(--bg-color3);
}

.modal-header {
    border-bottom: 1px solid var(--border-color1);
    padding: 12px 16px;
}

.modal-header .modal-title {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.modal-footer {
    border-top: 1px solid var(--border-color1);
}

.cmn-btn-close {
    font-size: 18px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border-color1);
    opacity: 1;
    box-shadow: none;
    border-radius: 6px;
    transition: var(--transition);
    color: var(--white);
    background-color: var(--bg-color3);
}

.cmn-btn-close:hover {
    background-color: var(--primary-color-opacity-low);
    color: var(--primary-color);
}

.accordion-button::after {
    background: url(../img/accordion/plus.png);
    width: 25px;
    height: 25px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
}

.accordion-button:not(.collapsed)::after {
    background: url(../img/accordion/minus.png);
    width: 25px;
    height: 25px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
}

/*----------------------------------------------
Reset end
----------------------------------------------*/
/*----------------------------------------------
Reusable style section start
----------------------------------------------*/
.language-box {
    display: flex;
    align-items: center;
}

.language-box .form-select {
    width: initial;
    border: none;
    font-weight: 500;
    cursor: pointer;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 15px;
    padding: 10px 15px 10px 5px;
    background-position: right 0px center;
}

.language-box .form-select:focus {
    box-shadow: none;
}

@media (max-width: 575px) {
    .author-box-top .content-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


.rtl .language-box .form-select {
    padding: 10px 5px 10px 15px;
    background-position: left 0px center;
}

.cmn-box {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--bg-color3);
    gap: 20px;
    height: 100%;
    background-size: cover;
    background-position: top right;
}

.cmn-box .icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--primary-color);
    background-color: var(--primary-color-opacity-low);
}

.cmn-box .content-area .title {
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .cmn-box {
        padding: 20px;
    }
}

.cmn-box2 {
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--bg-color3);
    border-radius: 10px;
}

.cmn-box2 .icon-box {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color-opacity-low);
    border-radius: 5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmn-box2 .content-box .title {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .cmn-box2-item {
        border: none !important;
    }
}

.cmn-box3 {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-color3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmn-box3 .icon-area {
    font-size: 35px;
    color: var(--primary-color);
}

.text-underline {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.text-underline::after {
    -webkit-mask-image: url(../img/svg/download2.svg);
    mask-image: url(../img/svg/download2.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    bottom: -0.1em;
    content: "";
    display: block;
    height: 0.3em;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    background: var(--gradient-bg);
}

.link {
    color: var(--primary-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.link:hover {
    gap: 10px;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-right: 1px solid var(--border-color1);
}

.input-box .icon-area {
    position: absolute;
    left: 5px;
    font-size: 18px;
    color: var(--primary-color);
}

@media (min-width: 576px) {
    .input-box {
        margin-right: 10px;
    }
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box .form-control {
    border-radius: var(--radius-md, 8px);
    padding-right: 50px;
}

.search-box .search-btn {
    position: absolute;
    background-color: var(--gp-primary, #0066FF);
    width: 45px;
    height: 90%;
    border-radius: var(--radius-sm, 6px);
    right: 2px;
    transition: var(--transition-base, 200ms ease);
}

.search-box .search-btn:hover {
    background-color: var(--gp-primary-hover, #0052CC);
}

.search-box .search-btn i {
    color: var(--white);
    font-size: 18px;
}

.rtl .search-box .search-btn {
    left: 2px;
    right: auto;
}

.rtl .search-box .search-btn i {
    transform: rotateY(180deg);
}

.rtl .search-box .form-control {
    padding-right: 10px;
    padding-left: 50px;
}

.search-box2 {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box2 .form-control {
    background-color: var(--white);
    border-radius: 4px;
    height: 60px;
    padding: 10px 70px 10px 20px;
    border-radius: 9999px;
}

.search-box2 .search-btn2 {
    transition: var(--transition);
    position: absolute;
    right: 5px;
    background-color: var(--primary-color);
    height: calc(100% - 10px);
    border-radius: 9999px;
    padding: 17px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.search-box2 .search-btn2:hover {
    background-color: var(--btn-hover-bg);
    border-color: var(--btn-hover-bg);
    color: var(--white);
}

@media (max-width: 575px) {
    .search-box2 .form-control {
        height: 45px;
        padding: 10px 100px 10px 10px;
    }

    .search-box2 .search-btn2 {
        padding: 10px 20px;
    }
}

.rtl .search-box2 .form-control {
    padding: 10px 20px 10px 145px;
}

.rtl .search-box2 .search-btn2 {
    right: auto;
    left: 5px;
}

@media (max-width: 575px) {
    .rtl .search-box2 .form-control {
        padding: 10px 20px 10px 100px;
    }
}

.multiple-search-box {
    padding: 7px;
    display: flex;
    background-color: var(--white);
    border-radius: 9999999px;
}

.multiple-search-box .form-control {
    height: 45px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    padding-left: 35px;
}

.multiple-search-box .select2-container .select2-selection--single:focus,
.multiple-search-box .select2-container .select2-selection--multiple:focus {
    border: 1px solid transparent;
}

.multiple-search-box .select2-container .select2-selection--single,
.multiple-search-box .select2-container .select2-selection--multiple {
    height: 45px;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.multiple-search-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

.multiple-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: capitalize;
    min-width: 45px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 9999999px;
    transition: var(--transition);
}

.multiple-search-btn:hover {
    background-color: var(--btn-hover-bg);
}

@media (max-width: 575px) {
    .multiple-search-box {
        background-color: transparent;
        flex-direction: column;
        gap: 10px;
    }

    .multiple-search-box .form-control {
        background-color: var(--white);
        border-radius: 9999999px;
    }

    .input-box {
        border-right: none;
    }

    .input-box .icon-area {
        left: 10px;
    }

    .multiple-search-btn {
        width: 100%;
    }
}

.rtl .multiple-search-box .form-control {
    padding-left: 0.75rem;
    padding-right: 35px;
}

.rtl .input-box {
    border-left: 1px solid var(--border-color1);
    border-right: none;
}

.rtl .input-box .icon-area {
    left: auto;
    right: 5px;
}

@media (max-width: 575px) {
    .rtl .input-box {
        border-left: none;
    }

    .rtl .input-box .icon-area {
        right: 10px;
    }
}

/*----------------------------------------------
Offcanvas section start
----------------------------------------------*/
.offcanvas {
    background: var(--bg-color3);
}

.offcanvas.offcanvas-end {
    border-left: 1px solid var(--border-color2);
}

/*----------------------------------------------
Offcanvas end
----------------------------------------------*/
@keyframes jkit-ripple {
    70% {
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0;
    }
}

.shape {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background-color: var(--primary-color-opacity-low);
    top: 0;
    left: 0;
    border-radius: 0 0% 100% 0;
}

.shape2 {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background-color: var(--primary-color-opacity-low);
    top: 0;
    right: 0;
    border-radius: 0 0 0 100%;
}

.shape3 {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background-color: var(--primary-color-opacity-low);
    bottom: 0;
    right: 0;
    border-radius: 100% 0 0 0;
}

.rtl .shape {
    left: auto;
    right: 0;
    border-radius: 0 0 0 100%;
}

.rtl .shape2 {
    right: auto;
    left: 0;
    border-radius: 0 0 100% 0;
}

.rtl .shape3 {
    left: 0;
    right: auto;
    border-radius: 0 100% 0 0;
}

.section-header {
    margin-bottom: 50px;
}

.top-right-radius-0 {
    border-top-right-radius: 0 !important;
}

.top-left-radius-0 {
    border-top-left-radius: 0 !important;
}

.bottom-right-radius-0 {
    border-bottom-right-radius: 0 !important;
}

.bottom-left-radius-0 {
    border-bottom-left-radius: 0 !important;
}

.highlight {
    color: var(--primary-color);
}

.highlight-title {
    background-color: var(--yellow);
    padding: 3px 0 5px 10px;
}

.bg-highlight {
    background: var(--primary-color) !important;
}

.text-gradient {
    background-image: linear-gradient(90deg, #47beb9, #ddcd86);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cmn-btn {
    background: linear-gradient(135deg, var(--gp-primary, #0066FF) 0%, #0052CC 100%);
    padding: 12px 24px;
    border-radius: var(--radius-md, 8px);
    transition: var(--transition);
    font-size: 16px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--heading-font);
    gap: 5px;
}

.cmn-btn:hover {
    color: var(--white);
    background: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
}

.cmn-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
}

.cmn-btn:focus-visible {
    outline: 2px solid var(--gp-primary, #0066FF);
    outline-offset: 2px;
}

.cmn-btn2 {
    background-color: transparent;
    padding: 12px 24px;
    border-radius: var(--radius-md, 8px);
    border: 1px solid var(--border-color1);
    transition: var(--transition);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--heading-font);
}

.cmn-btn2:hover {
    box-shadow: var(--shadow1);
    color: var(--gp-primary, #0066FF);
    border: 1px solid var(--gp-primary, #0066FF);
    transform: translateY(-1px);
}

.cmn-btn2:focus-visible {
    outline: 2px solid var(--gp-primary, #0066FF);
    outline-offset: 2px;
}

.cmn-btn3 {
    background: var(--bg-color4);
    padding: 10px 20px;
    border-radius: var(--radius-md, 8px);
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    color: var(--white);
}

.cmn-btn3:hover {
    box-shadow: var(--shadow1);
    background-color: var(--bg-color3, #1a1a1a);
    transform: translateY(-1px);
}

.cmn-btn3:focus-visible {
    outline: 2px solid var(--gp-primary, #0066FF);
    outline-offset: 2px;
}

.rtl .cmn-btn3 img {
    margin-right: 0;
    margin-left: 5px;
}

.login-btn {
    display: flex;
    padding: 12px 16px;
    transition: var(--transition);
    color: var(--white);
    background: var(--primary-color);
    border-radius: 5px;
    font-family: var(--heading-font);
    gap: 5px;
    font-size: 15px;
}

.login-btn:hover {
    background: var(--btn-hover-bg);
    color: var(--white);
}

@media (max-width: 767px) {
    .login-btn {
        padding: 5px;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 62% 38% 46% 54%/60% 63% 37% 40%;
    }
}

.get-start-btn {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--white);
    transition: var(--transition);
    text-transform: capitalize;
    font-family: var(--heading-font);
    border: 1px solid var(--primary-color);
    gap: 5px;
}

.get-start-btn:hover {
    color: var(--white);
    background-color: var(--btn-hover-bg);
    border: 1px solid var(--btn-hover-bg);
    box-shadow: 0 4px 11px rgba(0, 140, 255, 0.35);
}

.get-start-btn:focus {
    box-shadow: 0 4px 11px rgba(0, 140, 255, 0.35);
}

/*----------------------------------------------
Alerts section start
----------------------------------------------*/
.alert {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15px;
    border-left: 15px solid;
}

.alert .icon-area i {
    font-size: 30px;
    margin-right: 15px;
}

.alert .title {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.alert .title {
    font-size: 18px;
}

.alert .title,
.alert .description {
    color: var(--heading-color);
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0;
    background: none;
    height: initial;
    width: initial;
}

.alert-dismissible .btn-close i {
    font-size: 24px;
}

.alert-success {
    color: #3AC279;
    background: #C5F7DC;
    border-color: #C5F7DC;
    border-left-color: #3ac279;
}

.alert-success .btn-close {
    color: #3AC279;
}

.alert-danger {
    color: #E9594C;
    background: #FFCFCB;
    border-color: #FFCFCB;
    border-left-color: #E9594C;
}

.alert-danger .btn-close {
    color: #E9594C;
}

.alert-warning {
    color: #E89F29;
    background: #FFE8C3;
    border-color: #FFE8C3;
    border-left-color: #E89F29;
}

.alert-warning .btn-close {
    color: #E89F29;
}

.alert-message {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fcf2e3;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: var(--heading-color);
    font-weight: 500;
}

.alert-message i {
    color: var(--orange);
    font-size: 16px;
}


/*----------------------------------------------
Alerts end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab section start
----------------------------------------------*/
.cmn-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.cmn-tabs .nav-pills {
    flex-wrap: initial;
    width: 100%;
    gap: 5px;
}

.cmn-tabs .nav-pills .nav-link {
    height: 100%;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 5px;
    color: var(--heading-color);
    background-color: var(--primary-color-opacity-low);
}

.cmn-tabs .nav-pills .nav-link.active, .cmn-tabs .nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/*----------------------------------------------
Cmn tab end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab2 section start
----------------------------------------------*/
.cmn-tabs2 .nav-pills .nav-link {
    color: var(--white);
    opacity: 0.5;
    font-size: 13px;
    transition: var(--transition);
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.cmn-tabs2 .nav-pills .nav-link.active, .cmn-tabs2 .nav-pills .nav-link:hover {
    opacity: 1;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
}

/*----------------------------------------------
Cmn tab2 end
----------------------------------------------*/
.video-play-btn {
    position: relative;
}

.video-play-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 currentColor;
    animation: jkit-ripple 3s infinite;
    opacity: 0.6;
    z-index: -1;
}

.video-play-btn i {
    color: var(--white);
    background: var(--primary-color);
    height: 50px;
    width: 50px;
    font-size: 20px;
    transition: var(--transition);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section {
    padding: 100px 0;
}

@media (max-width: 991px) {
    section {
        padding: 50px 0;
    }
}

.cmn-para-text {
    max-width: 728px;
    font-size: 18px;
}

.section-title {
    max-width: 560px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-flex;
    letter-spacing: 4px;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .section-subtitle {
        font-size: 14px;
    }
}

.social-area ul li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    border-radius: 2px;
    background: var(--bg-color3);
    color: var(--primary-color);
    box-shadow: var(--shadow1);
}

.social-area ul li a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.rtl .social-area ul li a {
    margin-right: 0;
    margin-left: 14px;
}

.star ul li i {
    color: var(--primary-color);
}

.star_area li .active {
    color: var(--primary-color);
}

.opacity {
    opacity: 0.5;
}

.badge {
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
    padding: 3px;
    border-radius: 3px;
}

.badge:hover {
    background: var(--primary-color);
}

.rtl .badge {
    margin-right: 8px;
    margin-left: 0;
}

hr {
    margin: 10px 0;
    border-color: var(--border-color1);
    opacity: 1;
}

.footer-hr {
    margin: 30px 0;
    border-color: var(--border-color1);
}

.cmn-hr {
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(206, 211, 246, 0) 0, #CED3F6 38%, #CED3F6 64%, rgba(206, 211, 246, 0) 99%);
    opacity: 0.3;
    border-top: initial;
    height: 1px;
    margin: 50px 0;
}

.cmn-hr2 {
    margin: 20px 0;
    border-color: var(--border-color1);
}

hr.divider {
    margin-top: 50px;
    padding: 0;
    overflow: visible;
    border: none;
    border-top: 1px solid var(--border-color2);
    color: #6e6d7a;
    text-align: center;
    opacity: 0.75;
}

hr.divider:after {
    content: "Or continue with";
    display: inline-block;
    position: relative;
    top: -12px;
    padding: 0 16px;
    background: var(--bg-color3);
    color: var(--heading-color);
}

.dropdown-menu {
    max-height: 30rem;
    min-width: 13rem;
    overflow-y: auto;
    border-radius: var(--radius-md, 8px);
    padding: 8px;
    background: var(--bg-color2, #111111);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.5));
}

.dropdown-menu .dropdown-item {
    border-radius: var(--radius-sm, 6px);
    padding: 8px 12px;
    transition: var(--transition-fast, 150ms ease);
    font-size: 14px;
    font-family: var(--font-sans, 'Inter', sans-serif);
    margin-bottom: 4px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--text-secondary, #a1a1a1);
    display: flex;
    gap: 5px;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--bg-color4, #262626);
    color: var(--text-primary, #ffffff);
}

.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item.active {
    background: var(--gp-primary, #0066FF);
    color: var(--white);
}

.title-border {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 30px;
}

.title-border::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    height: 5px;
    width: 70px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    overflow: hidden;
}

.title-border::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -33px;
    height: 5px;
    width: 35px;
    background-color: var(--primary-color);
    animation: divider-effect 5s linear infinite;
}

#slider {
    height: 10px;
}

#slider .noUi-connect {
    background-color: var(--primary-color);
}

#slider .noUi-handle {
    height: 18px;
    width: 18px;
    top: -5px;
    right: -9px;
    /* half the width */
    border-radius: 9px;
    background-color: var(--primary-color);
}

#slider .noUi-handle::after, #slider .noUi-handle::before {
    background: transparent;
}

.slider-value {
    margin-top: 10px;
    text-align: center;
}

.bg-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.text-with-icon {
    display: inline-flex;
    gap: 5px;
}

.multi-step-progress-section {
    width: 100%;
}

.multi-step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.multi-step-list .item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.multi-step-list .item::before {
    content: "";
    width: 100%;
    height: 2px;
    left: 50%;
    top: 12px;
    position: absolute;
    background-color: var(--body-color);
}

.multi-step-list .item:last-child::before {
    display: none;
}

.multi-step-list .item.active::before {
    background-color: var(--primary-color);
}

.multi-step-list .item.active .number {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

.multi-step-list .item.active .title {
    color: var(--heading-color);
}

.multi-step-list .item .progress-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.multi-step-list .item .number {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid var(--body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    text-align: center;
    background-color: var(--white);
    z-index: 1;
}

.multi-step-list .item .title {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.rtl .multi-step-list .item::before {
    left: -50%;
}

.cmn-list-container {
    display: flex;
    gap: 30px;
}

.cmn-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rtl .cmn-list .item:not(:last-child)::after {
    left: 0;
    right: 12px;
}

.ratings li i {
    color: var(--orange);
    opacity: 0.5;
}

.ratings li .active {
    color: var(--orange);
    opacity: 1;
}

.countdown-area {
    display: flex;
    gap: 10px;
}

.countdown-area #countdown1 {
    display: flex;
}

.country-flags-container .item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
    text-transform: capitalize;
}

.country-flags-container .item:hover {
    background-color: var(--primary-color-opacity-low);
}

.country-flags-container .item img {
    width: 25px;
    border: 1px solid var(--border-color1);
    height: 18px;
    border-radius: 3px;
}

.category-modal-section .category-list {
    padding-bottom: 10px;
}

.category-modal-section .category-list .item {
    min-width: 212px;
}

@media (max-width: 1199px) {
    .category-modal-section .category-list {
        flex-wrap: wrap;
        justify-content: start;
    }

    .category-modal-section .category-list .item {
        box-shadow: var(--shadow1);
    }
}

@media (max-width: 575px) {
    .category-modal-section .category-list {
        flex-wrap: wrap;
        justify-content: start;
    }

    .category-modal-section .category-list .item {
        width: 100%;
    }
}

.Location-modal-section .country-flags-container .item {
    justify-content: center;
}

.Location-modal-section .search-box {
    position: sticky;
    top: 0;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--bg-color1);
    box-shadow: var(--shadow1);
}

.card .card-header {
    padding: 20px;
    background-color: var(--white);
    padding-bottom: 15px;
    border-color: var(--border-color1);
}

.card .card-header .title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card .card-header .title .icon-area {
    color: var(--primary-color);
}

.card .card-body {
    padding: 20px;
}

.nice-select-section {
    padding-bottom: 50px;
}

.nice-select {
    width: 100%;
    border-color: var(--border-color1);
}

.nice-select .list {
    min-width: 200px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--primary-color-opacity-low);
}

.range-area .irs--flat .irs-bar {
    height: 3px;
    background-color: var(--primary-color);
}

.range-area .irs--flat .irs-line {
    height: 3px;
}

.range-area .irs--flat .irs-from,
.range-area .irs--flat .irs-to,
.range-area .irs--flat .irs-single {
    background: var(--primary-color);
}

.range-area .irs--flat .irs-from:before,
.range-area .irs--flat .irs-to:before,
.range-area .irs--flat .irs-single:before {
    border-top-color: var(--primary-color);
}

.range-area .irs--flat .irs-handle > i:first-child {
    width: 12px;
    height: 12px;
    border-radius: 7px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
}

.range-area .irs--flat .irs-handle > i:first-child {
    top: -3px;
    left: 0;
    margin-left: 0;
}

.fancybox__container {
    z-index: 99999;
}

.fancybox-carousel {
    width: 100%;
    margin: 0 auto 1rem auto;
    --carousel-button-color: var(--primary-color);
    --carousel-button-bg: #fff;
    --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 2.5;
    border-radius: 5px;
    overflow: hidden;
}

.fancybox-carousel .carousel__slide {
    width: 100%;
    padding: 0;
}

.fancybox-carousel .carousel__slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 5/3;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0px !important;
}

.fancybox-carousel .carousel__button.is-prev {
    left: 1rem;
}

.fancybox-carousel .carousel__button.is-next {
    right: 1rem;
}

.fancybox-carousel .carousel__button:focus {
    outline: none;
    box-shadow: 0 0 0 0px var(--primary-color);
}

.fancybox-carousel .carousel__button svg {
    color: var(--primary-color);
}

.thumb_carousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 5px;
    width: 100px;
    height: 60px;
    cursor: pointer;
}

.thumb_carousel .carousel__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
}

.thumb_carousel .carousel__slide.is-nav-selected {
    opacity: 1;
}

.rtl .thumb_carousel,
.rtl .main_carousel {
    direction: ltr;
}

@media (max-width: 767px) {
    .carousel__button {
        width: 40px;
        height: 40px;
    }
}

/*----------------------------------------------
user nav Profile start
----------------------------------------------*/
.profile-box {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0;
}

.profile-box:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    top: 55px;
}

.profile-box .profile {
    cursor: pointer;
    border: 1px solid var(--border-color1);
    background-color: var(--white);
    border-radius: 50%;
}

.profile-box .profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-box .user-dropdown {
    background: var(--bg-color4);
    box-shadow: var(--shadow2);
    width: 200px;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 0%;
    border-radius: 5px;
    visibility: hidden;
    transition: 0.2s;
    transition: var(--transition);
    opacity: 0;
    z-index: 3;
}

.profile-box .user-dropdown li {
    list-style: none;
}

.profile-box .user-dropdown li button {
    width: 190px;
    height: 38px;
    padding: 5px;
    margin: 5px;
    margin-bottom: 0;
    border-radius: 5px;
    font-size: 13px;
}

.profile-box .user-dropdown li a {
    color: var(--heading-color);
    font-weight: 400;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    display: flex;
    transition: 0.4s;
}

.profile-box .user-dropdown li a:active, .profile-box .user-dropdown li a:focus, .profile-box .user-dropdown li a:hover {
    background-color: var(--bg-color3);
}

.profile-box .user-dropdown li a:last-child {
    border-bottom: none;
}

.profile-box .user-dropdown li a i {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    color: var(--primary-color);
    margin: 0 5px;
    font-size: 16px;
    text-align: center;
}

.rtl .navbar-brand {
    margin-right: 0;
    margin-left: var(--bs-navbar-brand-margin-end);
}

.rtl .navbar .nav-right {
    left: 65px;
    right: auto;
}

.rtl .profile-box .user-dropdown {
    left: 0;
    right: auto;
}

@media (max-width: 767px) {
    .rtl .navbar .nav-right {
        left: 60px;
    }
}

/*----------------------------------------------
user nav Profile end
----------------------------------------------*/
.notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 0;
}

.notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 54px;
}

.notification-panel .dropdown-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    margin-right: 5px;
}

.notification-panel .dropdown-toggle i {
    font-size: 24px;
    color: var(--heading-color);
}

.notification-panel .dropdown-toggle::after {
    display: none;
}

.notification-panel .dropdown-toggle .count {
    background: var(--primary-color);
    min-width: 20px;
    height: 20px;
    border-radius: 3px;
    color: var(--white);
    position: absolute;
    top: -2px;
    right: -3px;
    font-size: 14px;
}

.notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 285px;
}

.notification-panel .dropdown-box::-webkit-scrollbar {
    width: 0px;
    height: 100%;
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.notification-panel .notification-dropdown {
    background: var(--bg-color4);
    box-shadow: var(--shadow2);
    width: 290px;
    max-height: 336px;
    overflow: hidden;
    padding: 5px;
    padding-bottom: 44px;
    position: absolute;
    right: -60px;
    top: 0%;
    border-radius: 5px;
    visibility: hidden;
    transition: var(--transition);
    opacity: 0;
    z-index: 151;
}

.notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--border-color1);
}

.notification-panel .notification-dropdown li:not(:last-child) {
    margin-bottom: 5px;
}

.notification-panel .notification-dropdown li a {
    padding: 10px 10px 10px 15px;
    display: flex;
    gap: 10px;
    white-space: normal;
    transition: var(--transition);
}

.notification-panel .notification-dropdown li a:active, .notification-panel .notification-dropdown li a:focus, .notification-panel .notification-dropdown li a:hover {
    background: var(--bg-color3);
}

.notification-panel .notification-dropdown li a i {
    background: var(--primary-color);
    border-radius: 5px;
    padding: 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-panel .notification-dropdown li a .text {
    width: calc(100% - 40px);
}

.notification-panel .notification-dropdown li a .text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.notification-panel .notification-dropdown li a .text .time {
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
}

.notification-panel .notification-dropdown .clear-all {
    background: var(--bg-color4);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    border-top: 1px solid var(--borderColor);
    text-align: center;
    padding: 10px 10px 11px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--border-color1);
}

.notification-panel .notification-dropdown .clear-all a {
    color: var(--primary-color);
    transition: 0.4s;
}

.notification-panel .notification-dropdown .clear-all a:hover {
    color: var(--primary-color);
}

.rtl .notification-panel .notification-dropdown {
    left: -60px;
    right: auto;
}

/*----------------------------------------------
chat section start
----------------------------------------------*/
.single-btn2 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 16px;
}

.single-btn2:hover {
    background-color: var(--primary-color-opacity-low);
}

@media (max-width: 575px) {
    .single-btn2 {
        font-size: 14px;
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
}

.message-send-btn {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--primary-color);
    margin-left: 10px;
    color: var(--white);
    font-size: 16px;
}

@media (max-width: 575px) {
    .message-send-btn {
        height: 30px;
        min-width: 30px;
        font-size: 14px;
        margin-left: 5px;
    }
}

.rtl .message-send-btn {
    margin-right: 10px;
    margin-left: 0;
}

.chat-box {
    position: relative;
    background-color: var(--gray);
    background-color: #EFF3F8;
    border-radius: 10px;
    padding: 5px 0;
}

.chat-box .chat-box-inner {
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
}

.chat-box .message-bubble {
    display: flex;
    margin: 25px 0;
}

.chat-box .message-bubble .message-thumbs {
    margin-right: 10px;
}

.chat-box .message-bubble .message-thumbs img {
    border-radius: 50%;
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
}

.chat-box .message-bubble .message-text {
    padding: 5px 10px;
    border-radius: 15px;
    border-top-left-radius: 0;
    background-color: var(--primary-color);
    color: var(--white);
    max-width: 85%;
}

.chat-box .message-bubble-right {
    flex-direction: row-reverse;
}

.chat-box .message-bubble-right .message-thumbs {
    margin-right: 0;
    margin-left: 10px;
}

.chat-box .message-bubble-right .message-text {
    border-top-left-radius: 15px;
    border-top-right-radius: 0;
    background-color: var(--white);
    color: var(--heading-color);
}

.chat-box .chat-box-bottom {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--white);
    margin: 0 15px 15px 15px;
    border-radius: 20px;
}

.chat-box .chat-box-bottom textarea {
    height: 40px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .chat-box {
        margin-top: 0;
    }

    .chat-box .chat-box-inner {
        max-height: 300px;
    }
}

@media (max-width: 575px) {
    .chat-box .chat-box-bottom {
        padding: 7px 10px;
        margin: 0 10px 10px 10px;
    }

    .chat-box .chat-box-bottom textarea {
        height: 35px;
    }
}

.rtl .chat-box .profile-info .thumbs-area {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .chat-box .message-bubble .message-thumbs {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .chat-box .message-bubble .message-text {
    border-top-left-radius: 15px;
    border-top-right-radius: 0;
}

.rtl .chat-box .message-bubble-right .message-thumbs {
    margin-right: 10px;
    margin-left: 0;
}

.rtl .chat-box .message-bubble-right .message-text {
    border-top-right-radius: 15px;
    border-top-left-radius: 0;
}

/*----------------------------------------------
Ai chat section end
----------------------------------------------*/
/*----------------------------------------------
File of Image upload section start
----------------------------------------------*/
.file-upload-wrap {
    position: relative;
}

.file-upload-wrap .file-upload-input {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0;
}

.file-upload-wrap .file-upload-input:hover + .drag-text {
    background-color: var(--primary-color-opacity-low);
}

.file-upload-wrap .drag-text {
    padding: 100px 30px;
    border: 2px dashed var(--gp-primary, #0066FF);
    border-radius: var(--radius-lg, 12px);
    transition: var(--transition-base, 200ms ease);
    text-align: center;
    background-color: var(--gp-primary-light, rgba(0, 102, 255, 0.05));
}

.file-upload-wrap .drag-text .icon-area {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.file-upload-wrap .drag-text .title {
    font-size: 22px;
}

/*----------------------------------------------
File of Image upload section end
----------------------------------------------*/
/*----------------------------------------------
Payment section start
-----------------------------------------------*/
.package-container {
    margin-top: 20px;
}

.package-container .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.package-container .form-check-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    box-shadow: var(--shadow1);
    border-radius: 5px;
    transition: var(--transition);
    border: 1px solid var(--border-color1);
    gap: 15px;
}

.package-container .form-check-label .icon-area {
    font-size: 30px;
    color: var(--primary-color);
}

.package-container .form-check-label .label-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-container .form-check-input {
    position: absolute;
    left: 15px;
    display: none;
}

.package-container .form-check-input[type=radio]:checked + .form-check-label {
    background-color: var(--primary-color-opacity-low);
}

.payment-method-section {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-method-section .left-side {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 20px;
}

.payment-method-section span.select2.select2-container.select2-container--default {
    min-width: 200px !important;
}

.payment-method-section .select2-container .select2-selection--single,
.payment-method-section .select2-container .select2-selection--multiple {
    border: 1px solid var(--border-color1);
    height: 40px;
    display: flex;
    align-items: center;
}

.payment-method-section .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 3px;
}

@media (max-width: 767px) {
    .payment-method-section .left-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .payment-method-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/*----------------------------------------------
Payment section end
-----------------------------------------------*/
/*----------------------------------------------
Cmn table start
----------------------------------------------*/
.cmn-table {
    border-radius: 10px;
    background: var(--white);
}

.cmn-table table {
    margin-bottom: 0;
}

.cmn-table table thead tr th {
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
    padding: 20px 10px;
    text-transform: capitalize;
    background-color: var(--bg-color1);
}

.cmn-table table thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.cmn-table table thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cmn-table tbody td {
    padding: 15px 10px;
}

.cmn-table tbody td .icon-area {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cmn-table tbody td .icon-area.icon1 {
    background-color: var(--lime-green);
}

.cmn-table tbody td .icon-area.icon2 {
    background-color: var(--soft-red);
}

.cmn-table tbody,
.cmn-table td,
.cmn-table tfoot,
.cmn-table th,
.cmn-table thead,
.cmn-table tr {
    border: none;
}

@media (min-width: 768px) {
    .table-striped > tbody > tr:nth-of-type(odd) > * {
        --bs-table-accent-bg: transparent;
    }
}

@media (max-width: 991px) {
    .cmn-btn {
        font-size: 16px;
    }

    .cmn-table .table-img {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .cmn-table .text-bold {
        font-weight: 500;
    }
}

@media (max-width: 767px) {

}

.rtl .cmn-table-card .search-bar {
    margin-right: 0;
    margin-left: 20px;
}

.rtl .cmn-table-card .search-bar button {
    margin-left: 0;
    margin-right: -30px;
}

.rtl .cmn-table-card .search-bar .form-control {
    padding: 5px 5px 5px 35px;
}

.rtl .cmn-table .table-img {
    margin-right: 0;
    margin-left: 10px;
}


/*----------------------------------------------
Cmn table end
----------------------------------------------*/
/*----------------------------------------------
Reusable style section end
----------------------------------------------*/
/*----------------------------------------------
Margin top start
----------------------------------------------*/
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-190 {
    margin-top: 190px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Margin bottom start
----------------------------------------------*/
.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-150 {
    margin-bottom: 150px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding top start
----------------------------------------------*/
.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-200 {
    padding-top: 200px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding bottom
----------------------------------------------*/
.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-150 {
    padding-bottom: 150px;
}

/*----------------------------------------------
Padding bottom
----------------------------------------------*/
/*----------------------------------------------
01. Nav section start
----------------------------------------------*/
.navbar.active {
    background-color: var(--bg-color3);
    box-shadow: var(--shadow1);
    z-index: 999;
    padding: 10px 0;
}

.navbar {
    transition: var(--transition);
    padding: 15px;
    z-index: 9999;
}

.navbar .container {
    position: relative;
}

.navbar .navbar-toggler {
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color1);
    box-shadow: none;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color3);
    color: var(--white);
}

.navbar .navbar-toggler:hover {
    background-color: var(--primary-color-opacity-low);
    color: var(--primary-color);
}

.navbar .navbar-nav {
    text-align: center;
}

.navbar .navbar-nav .nav-link {
    font-size:18px;
    font-weight: 500;
    color: var(--heading-color);
    text-transform: capitalize;
    padding: 12px 15px;
    transition: var(--transition);
    border-radius: 5px;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar .navbar-nav .nav-link i {
    margin-right: 5px;
    color: var(--primary-color);
}

.navbar .nav-right {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
}

.navbar .nav-right .custom-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .toggle-btn {
    font-size: 20px;
    cursor: pointer;
}

.transparent {
    background-color: transparent;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 15px;
    }

    .navbar.active {
        padding: 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 15px;
    }

    .navbar .nav-right {
        position: absolute;
        right: 65px;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px 5px;
    }

    .navbar.active {
        padding: 10px 5px;
    }

    .navbar .nav-right {
        right: 60px;
    }

    .navbar .nav-right .custom-nav {
        gap: 5px;
    }
}

.rtl .navbar-nav.ms-auto {
    margin-right: auto;
    margin-left: 0 !important;
}

.rtl .navbar .navbar-nav .nav-link i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .navbar .navbar-nav .nav-link.active::after {
    right: 0;
    left: auto;
}

/*----------------------------------------------
Nav end
----------------------------------------------*/
/*----------------------------------------------
02. Bottom Mobile, Tab nav section start
----------------------------------------------*/
.bottom-nav {
    background: var(--bg-color3);
    justify-content: space-around;
    box-shadow: var(--shadow2);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    height: 55px;
    display: flex;
    align-items: center;
}

.bottom-nav .nav-item .nav-link {
    color: var(--heading-color);
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.bottom-nav .nav-item .nav-link.active, .bottom-nav .nav-item .nav-link:hover {
    color: var(--white);
    background: var(--primary-color);
    margin-top: -22px;
}

.bottom-nav .nav-item .nav-link i {
    font-size: 20px;
}

/*----------------------------------------------
Bottom Mobile, Tab nav end
----------------------------------------------*/

/*----------------------------------------------
REMOVED: Old dark_voilet section styles (Jan 2026)
- .hero-section (replaced by .hero-premium-v2)
- .feature-section, .feature-box
- .about-section
- .service-section, .service-page-area
- .why-choose-us-thumbs
- .achivement-section
- .how-it-works-thumbs
- .faq-section (replaced by .gp-faq)
- .testimonial-section
- .payment-section
See GP Design System styles below for new implementations.
----------------------------------------------*/

/*----------------------------------------------
18. Blog section start
----------------------------------------------*/
.blog-btn {
    display: inline-block;
    margin-top: 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-btn:hover {
    gap: 10px;
}

.blog-box {
    background: var(--bg-color3);
    padding: 10px;
    border-radius: 10px;
}

.blog-box:hover .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.blog-box:hover .img-box img {
    transform: scale(1);
}

.blog-box .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.blog-box .img-box img {
    transition: var(--transition);
    transform: scale(1.1);
    width: 100%;
    height: 14vw;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-box .content-box {
    padding: 5px;
}

.blog-box .content-box .para-text {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
}

.blog-box .blog-title {
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

.blog-box .cmn-btn3 {
    margin-top: 30px;
}

.meta {
    display: flex;
    margin: 15px 0;
    gap: 20px;
    font-size: 14px;
    justify-content: space-between;
}

.meta .item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta .icon {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    h5 {
        font-size: 18px;
    }

    .blog-box .img-box img {
        height: 20vw;
    }

    .blog-box .blog-author .author-info span {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .blog-box .img-box img {
        height: 40vw;
    }
}

@media (max-width: 575px) {
    .blog-box .img-box img {
        height: 55vw;
    }
}

.rtl .blog-btn i {
    transform: rotate(180deg);
}

.rtl .blog-box .blog-author .author-img {
    margin-right: 0;
    margin-left: 10px;
}


/*----------------------------------------------
Blog section end
----------------------------------------------*/
/*----------------------------------------------
00. Author section start
----------------------------------------------*/
.author-section {
    background-color: var(--bg-color1);
}

.author-box {
    background-color: var(--bg-color3);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow1);
}

.author-box-top {
    display: flex;
    align-items: center;
    gap: 40px;
}

.author-box-top .thumbs-area img {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    background-color: var(--white);
    padding: 5px;
    box-shadow: var(--shadow2);
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 575px) {
    .author-box-top {
        flex-direction: column;
    }

    .author-box-top .thumbs-area img {
        width: 150px;
        height: 150px;
    }
}

/*----------------------------------------------
Author section end
----------------------------------------------*/
/*----------------------------------------------
19. Newsletter section start
----------------------------------------------*/
.bg-img-overlay {
    opacity: 0.3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.newsletter-form {
    margin-top: 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form .form-control {
    border-radius: 50px;
    height: 50px;
    padding: 10px 50px 10px 10px;
    border-color: var(--border-color1);
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
}

.newsletter-form .subscribe-btn {
    transition: var(--transition);
    position: absolute;
    right: 5px;
    background-color: var(--primary-color);
    height: calc(100% - 10px);
    width: 40px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form .subscribe-btn:hover {
    background-color: var(--btn-hover-bg);
    color: var(--white);
}

.rtl .newsletter-form .form-control {
    padding: 10px 10px 10px 50px;
}

.rtl .newsletter-form .subscribe-btn {
    left: 5px;
    right: auto;
}

.rtl .newsletter-form .subscribe-btn i {
    transform: rotatey(180deg);
}

/*----------------------------------------------
Newsletter end
----------------------------------------------*/
/*----------------------------------------------
20. Footer section start
----------------------------------------------*/
.footer-section {
    position: relative;
    background-color: var(--bg-color1);
}

.footer-section .footer-section-inner {
    position: relative;
    z-index: 1;
}

.footer-section .footer-widget .widget-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 20px;
    font-family: var(--heading-font);
    color: var(--white);
}

.footer-section .footer-widget .widget-title::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    width: 150px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-section .footer-widget .widget-title::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section .footer-widget input[type=email] {
    margin: 30px 0 20px 0;
    border: none;
    border-bottom: 1px solid var(--border-color2);
    background: var(--bg-color1);
    border-radius: 15px;
}

.footer-section .footer-widget input[type=email]:focus {
    border-bottom: 1px solid var(--primary-color);
    box-shadow: none;
}

.footer-widget p {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget ul li {
    line-height: 2.5;
}

.footer-widget .widget-link {
    margin-left: 18px;
    position: relative;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget .widget-link:hover {
    color: var(--primary-color);
}

.footer-widget .widget-link::before {
    border-radius: 2px;
    height: 7px;
    width: 7px;
    content: "";
    left: -17px;
    top: 6px;
    position: absolute;
    background-color: var(--primary-color);
}

.footer-widget .contact-item {
    display: flex;
}

.footer-widget .contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
}

.rtl .footer-section .footer-widget .widget-title::before, .rtl .footer-section .footer-widget .widget-title::after {
    right: 0;
    left: auto;
}

.rtl .footer-section .footer-widget .widget-link {
    margin-left: 0;
    margin-right: 18px;
}

.rtl .footer-section .footer-widget .widget-link::before {
    left: auto;
    right: -17px;
}

.rtl .footer-section .footer-widget .contact-item i {
    margin-right: 0;
    margin-left: 10px;
}

/*----------------------------------------------
Footer end
----------------------------------------------*/
/*----------------------------------------------
21. Copyright section start
----------------------------------------------*/
.copyright-area p {
    margin-bottom: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.language {
    display: flex;
    justify-content: end;
}

.language a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.language a:hover {
    color: var(--primary-color);
}

.language a:not(:last-child) {
    margin-right: 10px;
}

@media (max-width: 575px) {
    .copyright-area {
        text-align: center;
    }

    .language {
        justify-content: center;
    }
}

.rtl .language a:not(:last-child) {
    margin-right: 0;
    margin-left: 10px;
}

/*----------------------------------------------
Copyright end
----------------------------------------------*/
/*----------------------------------------------
16. Banner section start
----------------------------------------------*/
.banner-section {
    position: relative;
    padding-top: 190px;
    padding-bottom: 100px;
    background-color: var(--bg-color2);
}

.banner-section .banner-section-inner {
    position: relative;
    z-index: 1;
}

.banner-section h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.breadcrumb-area {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
    text-align: center;
}

.breadcrumb-area h3 {
    text-transform: capitalize;
    color: var(--white);
}

@media (max-width: 991px) {
    .banner-section {
        padding-top: 140px;
        padding-bottom: 50px;
    }

    .banner-section h3 {
        font-size: 36px;
    }
}

/*----------------------------------------------
Banner end
----------------------------------------------*/
/*----------------------------------------------
24. Contact section start
----------------------------------------------*/
.contact-section {
    background-color: var(--bg-color1);
    position: relative;
    z-index: 0;
}

.contact-section .contact-area .contact-item-list {
    margin-top: 30px;
}

.contact-section .contact-area .contact-item-list .item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-section .contact-area .contact-item-list .item .icon-area {
    margin-right: 15px;
    border-radius: var(--radius-md, 8px);
    width: 44px;
    height: 44px;
    font-size: 18px;
    color: var(--gp-primary, #0066FF);
    background-color: var(--gp-primary-light, rgba(0, 102, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base, 200ms ease);
}

.contact-section .contact-message-area {
    background-color: var(--bg-color2, #111111);
    padding: 32px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 12px);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.4));
}

.contact-section .contact-message-area .contact-header {
    margin-bottom: 30px;
}

.contact-section .contact-message-area .btn-area {
    margin-top: 30px;
}

.contact-section .contact-message-area .form-label {
    text-transform: capitalize;
}

.contact-section .contact-message-area .form-label h5 {
    font-weight: 600;
}

.rtl .contact-section .contact-area .contact-item-list .item .icon-area {
    margin-right: 0;
    margin-left: 15px;
}


/*----------------------------------------------
Contact end
----------------------------------------------*/
/*----------------------------------------------
23. Map section start
----------------------------------------------*/
.map-section {
    margin-bottom: -6px;
}

.map-section .title {
    margin-bottom: 20px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    padding: 5px;
    background-color: var(--white);
}

/*----------------------------------------------
Map section end
----------------------------------------------*/
/*----------------------------------------------
24. Login Signup section start
----------------------------------------------*/
.login-signup-page {
    background-color: var(--bg-color1);
    position: relative;
}

.login-signup-form {
    padding: 32px;
    background-color: var(--bg-color2, #111111);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 12px);
    z-index: 1;
    position: relative;
}

.login-signup-form .logo-area {
    margin-bottom: 20px;
    display: inline-flex;
}

.login-signup-form .cmn-btn {
    height: 45px;
}

.login-signup-form .cmn-btn2 {
    height: 45px;
    border-radius: var(--radius-md, 8px);
}

.login-signup-form .cmn-btn-group .btn img {
    width: 16px;
}

.password-box {
    position: relative;
    display: flex;
    align-items: center;
}

.password-box .form-control {
    padding-right: 35px;
}

.password-box .password-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
}

.password-box .confirm-password-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .login-signup-page .login-signup-form {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .login-signup-page .login-signup-form {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .login-signup-page .login-signup-form {
        padding: 20px;
    }
}

.rtl .password-box .form-control {
    padding-right: 0.75rem;
    padding-left: 35px;
}

.rtl .password-box .password-icon {
    right: auto;
    left: 15px;
}

/*----------------------------------------------
Login Signup end
----------------------------------------------*/
/*----------------------------------------------
25. Blog details section start
----------------------------------------------*/
.blog-details-section {
    background: var(--bg-color1);
}

.blog-details-section .blog-box-large .thumbs-area img {
    border-radius: 5px;
    width: 100%;
    height: 450px;
}

.blog-details-section .blog-box-large .content-area {
    max-width: 100%;
}

.blog-details-section .blog-box-large .content-area .blog-title {
    margin-bottom: 20px;
}

.blog-details-section .blog-box-large .content-area .para-text {
    margin-bottom: 20px;
}

.blog-quote-box {
    margin: 20px 0;
    position: relative;
    background-color: var(--bg-color3);
    box-shadow: var(--shadow1);
    padding: 25px;
    border-left: 2px solid var(--primary-color);
}

.blog-quote-box .icon-area {
    position: absolute;
    font-size: 60px;
    color: var(--primary-color);
    top: 5px;
    right: 20px;
    opacity: 0.1;
    z-index: 0;
}

.blog-quote-box .content {
    position: relative;
    z-index: 1;
}

.blog-quote-box .title {
    position: relative;
    padding: 10px 0 0 30px;
    margin: 0;
    display: flex;
    align-items: center;
}

.blog-quote-box .title::after {
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    width: 20px;
    height: 2px;
    left: 0;
}

.sidebar-categories-area li {
    border-bottom: 1px solid var(--border-color1);
    padding: 10px 0;
}

.sidebar-categories-area li a {
    font-size: 18px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.sidebar-categories-area li a:hover {
    color: var(--primary-color);
}

.sidebar-categories-area li:first-child {
    padding-top: 0;
}

.tag-list .item {
    display: inline-block;
    font-size: 14px;
    padding: 10px 15px;
    transition: var(--transition);
    border-radius: 5px;
    margin: 0 5px 5px 0;
    background-color: var(--bg-color3);
    border: 1px solid var(--border-color1);
}

.tag-list .item:hover {
    box-shadow: var(--shadow1);
    color: var(--primary-color);
    border-color: var(--border-color2);
}

.tag-list .item:last-child {
    margin-bottom: 0;
}

.sidebar-widget-area {
    padding: 24px;
    background-color: var(--bg-color2, #111111);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 12px);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.4));
}

.sidebar-widget-area .title {
    margin-bottom: 5px;
}

.sidebar-widget-area .sidebar-widget-item {
    display: flex;
    transition: var(--transition);
}

.sidebar-widget-area .sidebar-widget-item:hover .content-area .title {
    color: var(--primary-color);
}

.sidebar-widget-area .sidebar-widget-item .image-area {
    width: 100px;
}

.sidebar-widget-area .sidebar-widget-item .image-area img {
    width: 100%;
    height: 85px;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
}

.sidebar-widget-area .sidebar-widget-item .content-area {
    margin-left: 15px;
    width: calc(100% - 100px);
}

.sidebar-widget-area .sidebar-widget-item .content-area .title {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    transition: all ease 0.3s;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    line-height: 1.3;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.sidebar-widget-area .sidebar-widget-item .content-area .widget-date {
    display: flex;
    gap: 5px;
    color: var(--heading-color);
    font-size: 14px;
}

.sidebar-widget-area .sidebar-widget-item .content-area .widget-date i {
    color: var(--primary-color);
}

.sidebar-widget-area .sidebar-widget-item:not(:last-child) {
    margin-bottom: 20px;
}

.widget-title {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.widget-title::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    width: 150px;
    height: 2px;
    background-color: rgba(225, 225, 225, 0.4);
}

.rtl .sidebar-widget-item .content-area {
    margin-left: 0;
    margin-right: 15px;
}

.rtl .sidebar-widget-area .widget-title::before, .rtl .sidebar-widget-area .widget-title::after {
    right: 0;
    left: auto;
}

.rtl .blog-quote-box {
    border-left: none;
    border-right: 2px solid var(--primary-color);
    padding: 25px 40px 20px 20px;
}

.rtl .blog-quote-box .icon-area {
    left: 20px;
    right: auto;
}

.rtl .blog-quote-box .icon-area i {
    transform: rotateY(180deg);
}

.rtl .blog-quote-box .title {
    padding: 10px 30px 0 0;
}

.rtl .blog-quote-box .title::after {
    left: auto;
    right: 0;
}

/*----------------------------------------------
Blog details end
----------------------------------------------*/
/*----------------------------------------------
26. Pagination section start
----------------------------------------------*/
.pagination-section {
    margin-top: 50px;
    display: flex;
    justify-content: end;
}

.pagination-section nav .pagination .page-item .page-link {
    margin: 5px;
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    color: #050B20FF;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color2);
    box-shadow: none;
}

.pagination-section nav .pagination .page-item .page-link:hover, .pagination-section nav .pagination .page-item .page-link:focus {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.pagination-section nav .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.rtl .pagination-section nav .pagination .page-item .page-link i {
    transform: rotate(180deg);
}

/*----------------------------------------------
Pagination end
----------------------------------------------*/
/*----------------------------------------------
Policy section start
----------------------------------------------*/
.policy-section {
    background-color: var(--bg-color1);
    position: relative;
}

.policy-section .policy-section-inner {
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow1);
    background-color: var(--bg-color3);
    padding: 70px;
    border-radius: 5px;
    background-size: cover;
    background-position: top right;
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-list .item {
    gap: 10px;
    display: flex;
}

.policy-list .icon {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .policy-section .policy-section-inner {
        padding: 20px;
    }
}

/*----------------------------------------------
Policy section end
----------------------------------------------*/
/*----------------------------------------------
27. Error section start
----------------------------------------------*/
.error-section {
    height: 100vh;
    width: 100vw;
    background-color: var(--bg-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-section .error-content {
    color: var(--heading-color);
}

.error-section .error-content .error-title {
    font-size: 150px;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1;
}

.error-section .error-content .error-info {
    font-size: 40px;
    line-height: 1.3;
}

.error-section .error-content .btn-area {
    margin-top: 30px;
}

.error-section .error-content .btn-area .cmn-btn {
    text-transform: none;
}

@media (max-width: 991px) {
    .error-section {
        padding: 100px 0;
    }

    .error-section .error-content .error-title {
        font-size: 100px;
    }

    .error-section .error-content .error-info {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .error-section {
        text-align: center;
        min-height: 100%;
        min-width: 100%;
    }
}

/*----------------------------------------------
Error end
----------------------------------------------*/

.service-page-area .card {
    background-color: var(--bg-color3);
    border: 1px solid var(--bg-color1);
    box-shadow: var(--shadow1);
}

.theme-service .social-btn {
    padding: 12px 20px;
    border-radius: 10px;
    background-color: var(--input-color);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    transition: var(--transition);
    font-weight: 500;
    text-transform: capitalize;
    color: var(--heading-color);
}

.theme-service .social-btn:hover {
    color: var(--primary-color);
}

.activeSocialMedia {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.theme-service .social-btn i {
    color: var(--primary-color);
}

.social-media-img {
    width: 15px !important;
}

[v-cloak] {
    display: none;
}

.theme-service .select2-container {
    background-color: var(--input-color) !important;
}

.theme-service .select2-dropdown {
    background-color: red !important;
}

.error-image {
    width: 200px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
}


.policy-section small {
    font-size: .875em;
}

.dark-voilet-header .nav-link {
    text-transform: capitalize !important;
}

.login-signup-page .input-group-merge,
.hero-section-inner .input-group-merge {
    position: relative;
    overflow: hidden;
    border: .0625rem solid rgba(231, 234, 243, .7);
    border-radius: .3125rem;
}

.login-signup-page .input-group,
.hero-section-inner .input-group {
    box-shadow: none;
}

.login-signup-page .input-group-merge .input-group-append, .input-group-merge .input-group-prepend,
.hero-section-inner .input-group-merge .input-group-append, .input-group-merge .input-group-prepend {
    position: absolute;
    top: 1px;
    bottom: 1px;
    z-index: 6;
    right: 0;
    background: transparent !important;
}

.login-signup-page .input-group-merge .input-group-append, .input-group-merge .input-group-prepend i,
.hero-section-inner .input-group-merge .input-group-append, .input-group-merge .input-group-prepend i {
    color: var(--primary-color);
}

.api-docs-section .card {
    background-color: var(--bg-color3);
    border: 1px solid var(--bg-color1);
    box-shadow: var(--shadow1);
}

.api-docs-section .card .card-header {
    padding: 20px !important;
    background-color: transparent !important;
    padding-bottom: 15px !important;
    border-color: #1e1e51 !important;
}

.api-docs-section .cmn-table {
    background: none;
}

.cookies-alert {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    padding: 2rem;
    max-width: 360px;
    background: var(--bg-color4);
    border-radius: 24px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    z-index: 10;
}

.cookies-alert .link {
    display: inline;
}

.cookies-alert .cookie-close-btn {
    background-color: darkred;
    border-radius: 5px !important;
    color: var(--white);
    padding: 12px 16px !important;
}

.share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 50px 0 20px;
}

.share-media .btn {
    margin-right: 7px;
    line-height: normal;
    padding: 5px 8px;
    font-size: 10px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}


.service-page-area .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #0e0122;
}

.service-page-area .accordion-body {
    padding: 20px;
}

.service-page-area th:last-child {
    text-align: center;
}

.service-page-area td.td-quick-view {
    text-align: center;
}


/* ---------------------------------
responsive
---------------------------------- */
/* Large screen  */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .meta {
        flex-wrap: wrap;
        gap: 23px;
    }

    .meta span {
        line-height: 14px;
    }

    .service-page-area {
        background: var(--bg-color1);
        padding: 0;
    }
}

/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section .hero-title {
        line-height: 50px;
        font-size: 38px;
    }

    .hero-section {
        padding: 150px 0 50px 0;
    }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-section .hero-thumbs {
        margin-left: 0px !important;
    }

    .meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .table {
        width: 1015px;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .logo {
        max-width: 120px;
        min-width: 100px;
    }

    .navbar .navbar-toggler {
        font-size: 18px;
        width: 10px;
        height: auto;
        border: none;
        box-shadow: none;
        border-radius: 6px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: var(--white);
    }

    .login-btn {
        padding: 5px;
        height: auto;
        width: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 62% 38% 46% 54%/60% 63% 37% 40%;
    }

    .hero-section .hero-thumbs {
        display: none;
    }

    .nav-right .form-select {
        background-image: none;
    }

    .navbar .nav-right {
        right: 45px;
    }

    .language-box .form-select {
        padding: 10px 7px 10px 5px;
    }

    .col-lg-5.order-2.order-lg-1 {
        margin: 0;
    }

    .hero-section .hero-title {
        line-height: 45px;
    }

    .hero-section .hero-content .btn-area {
        flex-direction: column;
        gap: 27px;
    }

    .section-title {
        font-size: 22px;
    }

    .meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .login-signup-form {
        padding: 15px;
    }

    .login-signup-form .form-check {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    .table {
        width: 1015px;
    }

    .service-page-area {
        padding-bottom: 0;
    }

    .min-width-table {
        width: 500px !important;
    }

}

/* ---------------------------------
responsive
---------------------------------- */

.api-code-box {
    position: relative;
    padding: 50px 20px 20px;
    border-radius: 10px;
    background-color: #293340;
    color: var(--white);
}

.api-code-box .editor-dots {
    position: absolute;
    top: 20px;
    height: 12px;
    margin-left: 20px;
    width: 12px;
    min-width: 12px;
    background-color: #f90;
    border-radius: 50%;
}

.api-code-box .editor-dots::before {
    position: absolute;
    content: "";
    left: 20px;
    background-color: #b71c1c;
    width: 12px;
    min-width: 12px;
    height: 12px;
    border-radius: 50%;
}

.api-code-box .editor-dots::after {
    position: absolute;
    content: "";
    left: -20px;
    background-color: #18c96e;
    width: 12px;
    min-width: 12px;
    height: 12px;
    border-radius: 50%;
}


.pwa-popup {
    width: 400px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
}

/* Header PWA */
.pwa-popup .header {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.pwa-popup .pwa-logo {
    max-width: 48px;
    max-height: 48px;
    border-radius: 6px;
}

.pwa-popup .header-text h2 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.pwa-popup .header-text p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.pwa-popup .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

/* Description */
.pwa-popup .description {
    font-size: 14px;
    color: #fff;
    margin: 10px 0;
}

.pwa-popup .sub-description {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

/* Carousel */
.pwa-popup .carousel-container {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.5s ease, opacity 0.5s ease;

}

.pwa-popup .carousel-container.active {
    opacity: 1;
}

.pwa-popup .carousel {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pwa-popup .carousel-content {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.pwa-popup .carousel-content img {
    width: 100%;
    border-radius: 10px;
    flex-shrink: 0;
    max-height: min(45vh, 500px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 10px 0px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    position: relative;
    object-fit: contain;
}

.pwa-popup .carousel-btn {
    background-color: #a7c7fa;
    border: none;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
}

.pwa-popup .carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 123, 255, 0.5);
}

.pwa-popup .carousel-btn.left {
    left: 10px;
}

.pwa-popup .carousel-btn.right {
    right: 10px;
}

.pwa-popup .carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Actions */
.pwa-popup .actions {
    display: flex;
    justify-content: space-between;
}

.pwa-popup .action-btn {
    padding: 8px 50px;
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: #a7c7fa;
    transition: transform 0.2s ease;
}

.pwa-popup .action-btn.less {

    background-color: rgba(0, 0, 0, 0);
    color: #a7c7fa;
}

.pwa-popup .action-btn.less:hover {
    color: #a7c7fa;
    background-color: rgba(167, 199, 250, 0.1);
}

.pwa-popup .action-btn.less:hover {
    transform: translateY(-2px);
}

.pwa-popup .action-btn.install {
    background-color: #a7c7fa;
    color: #1B222C;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
}

.pwa-popup .action-btn.install:hover {
    transform: translateY(-2px);
    background-color: #a7c7fa;
}

#pwaInstallPopup {
    display: none;
    margin: auto;
    position: fixed;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.8s;
}


@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 3%;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 3%;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0
    }
    to {
        bottom: 1%;
        opacity: 1
    }
}

@media (max-width: 575px) {
    #pwaInstallPopup {
        top: auto;
        bottom: 1% !important;
        width: 95%;
        z-index: 9999;
        -webkit-animation-name: animatebottom;
        -webkit-animation-duration: 0.4s;
        animation-name: animatebottom;
        animation-duration: 0.8s;
    }
}

@media (max-width: 360px) {
    .pwa-popup .action-btn {
        padding: 8px 35px;
    }
}



/* ===========================================
   GENUINE LANDING PAGE COMPONENTS
   =========================================== */

/* === SECTION HEADERS === */
.gp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gp-primary-light);
    color: var(--gp-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gp-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    text-wrap: balance;
}

.gp-section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.gp-section-header--center {
    text-align: center;
    margin-bottom: 60px;
}

.gp-section-header--center .gp-section-description {
    margin-left: auto;
    margin-right: auto;
}

/* === BUTTONS === */
.gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}

.gp-btn:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
}

.gp-btn--primary {
    background: var(--gp-primary);
    color: white;
}

.gp-btn--primary:hover {
    background: var(--gp-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.gp-btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.gp-btn--ghost:hover {
    background: var(--bg-color3);
    border-color: var(--border-color-hover);
    color: var(--text-primary);
}

.gp-btn--lg {
    padding: 14px 28px;
    font-size: 16px;
}

.gp-btn--full {
    width: 100%;
}

.gp-link {
    color: var(--gp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.gp-link:hover {
    color: var(--gp-primary-hover);
    text-decoration: underline;
}


/* ===========================================================================
   NAVBAR - Genuine Premium Navigation
   =========================================================================== */
.gp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.gp-navbar--scrolled {
    background: rgba(12, 15, 26, 0.85);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.4);
    padding: 10px 0;
}

.gp-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.gp-navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.gp-navbar__logo img {
    height: 36px;
    width: auto;
}

/* Desktop Menu */
.gp-navbar__menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.gp-navbar__menu .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gp-navbar__menu .nav-item {
    position: relative;
}
.gp-navbar__menu .nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    border-radius: var(--radius-md, 8px);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.gp-navbar__menu .nav-link:hover,
.gp-navbar__menu .nav-link.active {
    color: var(--text-primary, #f1f5f9);
    background: rgba(255,255,255,0.05);
}

/* Right Actions */
.gp-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Currency Select */
.gp-navbar__currency-select {
    padding: 6px 28px 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary, #94a3b8);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.gp-navbar__currency-select:hover {
    border-color: rgba(255,255,255,0.2);
}
.gp-navbar__currency-select:focus {
    outline: none;
    border-color: var(--gp-primary, #3b82f6);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

/* Auth Buttons */
.gp-navbar__btn {
    font-size: 14px;
    padding: 8px 18px;
}
.gp-navbar__mobile-auth {
    color: var(--text-secondary, #94a3b8);
    transition: color 0.2s;
}
.gp-navbar__mobile-auth:hover {
    color: var(--gp-primary, #3b82f6);
}

/* Profile Dropdown */
.gp-navbar__profile {
    position: relative;
}
.gp-navbar__profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full, 9999px);
    color: var(--text-secondary, #94a3b8);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.gp-navbar__profile-btn:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}
.gp-navbar__profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dropdown Panel */
.gp-navbar__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: rgba(19, 24, 41, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.gp-navbar__dropdown--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gp-navbar__dropdown-header {
    padding: 12px;
}
.gp-navbar__dropdown-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #f1f5f9);
}
.gp-navbar__dropdown-email {
    display: block;
    font-size: 12px;
    color: var(--text-muted, #64748b);
    margin-top: 2px;
}
.gp-navbar__dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 4px 0;
}
.gp-navbar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    border-radius: var(--radius-md, 8px);
    transition: background 0.15s, color 0.15s;
}
.gp-navbar__dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary, #f1f5f9);
}
.gp-navbar__dropdown-item--danger:hover {
    color: var(--gp-danger, #EF4444);
}

/* Hamburger Toggle */
.gp-navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
.gp-navbar__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-secondary, #94a3b8);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* Mobile Menu Offcanvas */
.gp-mobile-menu {
    background: rgba(12, 15, 26, 0.98) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.08) !important;
    max-width: 320px;
    width: 85%;
}
.gp-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gp-mobile-menu__logo img {
    height: 30px;
    width: auto;
}
.gp-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: var(--radius-md, 8px);
    color: var(--text-secondary, #94a3b8);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gp-mobile-menu__close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary, #f1f5f9);
}
.gp-mobile-menu__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 77px);
    padding: 16px 24px 24px;
}
.gp-mobile-menu__nav .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gp-mobile-menu__nav .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    border-radius: var(--radius-md, 8px);
    transition: background 0.15s, color 0.15s;
}
.gp-mobile-menu__nav .nav-link:hover,
.gp-mobile-menu__nav .nav-link.active {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary, #f1f5f9);
}
.gp-mobile-menu__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}


/* ===========================================================================
   LANDING PAGE SECTIONS - Refonte V3 (Linear/Vercel Style)
   =========================================================================== */

/* === SHARED SECTION UTILITIES === */
.gp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--gp-primary-light, rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gp-primary);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.gp-section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.gp-gradient-text {
    background: linear-gradient(135deg, var(--gp-primary, #3b82f6) 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gp-section-subtitle {
    font-size: 16px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* === SCROLL ANIMATIONS === */
.gp-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gp-visible {
    opacity: 1;
    transform: translateY(0);
}
.gp-animate-delay-1 { transition-delay: 0.1s; }
.gp-animate-delay-2 { transition-delay: 0.2s; }
.gp-animate-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .gp-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* === ANIMATION POLISH === */

/* Badge subtle pulse */
.gp-section-badge {
    animation: gpBadgePulse 3s ease-in-out infinite;
}
@keyframes gpBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
    50% { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08); }
}

/* CTA button shimmer */
.gp-social-proof__cta-btn,
.gp-hero-v3__cta-primary {
    position: relative;
    overflow: hidden;
}
.gp-social-proof__cta-btn::after,
.gp-hero-v3__cta-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    animation: gpShimmer 4s ease-in-out infinite;
}
@keyframes gpShimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Section divider gradient */
.gp-social-proof,
.gp-services,
.gp-bento-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (prefers-reduced-motion: reduce) {
    .gp-section-badge { animation: none; }
    .gp-social-proof__cta-btn::after,
    .gp-hero-v3__cta-primary::after { animation: none; }
}


/* ===========================================================================
   HERO V3 - Product-Focused
   =========================================================================== */
.gp-hero-v3 {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.gp-hero-v3__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.gp-hero-v3__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-hero-v3__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full, 9999px);
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-primary, #3b82f6);
    margin-bottom: 28px;
}

.gp-hero-v3__badge svg {
    color: var(--gp-primary, #3b82f6);
}

.gp-hero-v3__title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--text-primary, #f1f5f9);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gp-hero-v3__title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--gp-primary, #3b82f6) 0%, #60a5fa 40%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gp-hero-v3__subtitle {
    font-size: 18px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 32px;
}

.gp-hero-v3__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.gp-hero-v3__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gp-primary, #3b82f6) 0%, #2563eb 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gp-hero-v3__cta-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.gp-hero-v3__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary, #f1f5f9);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.gp-hero-v3__cta-secondary:hover {
    color: var(--text-primary, #f1f5f9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Dashboard Preview */
.gp-hero-v3__preview {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.gp-hero-v3__preview-wrapper {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transform: perspective(1200px) rotateX(2deg);
    transition: transform 0.4s;
}
.gp-hero-v3__preview:hover .gp-hero-v3__preview-wrapper {
    transform: perspective(1200px) rotateX(0deg);
}

.gp-hero-v3__preview-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.gp-hero-v3__preview-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-color1, #0c0f1a) 0%, transparent 100%);
    pointer-events: none;
}

.gp-hero-v3__preview-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

/* Stats Row */
.gp-hero-v3__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.gp-hero-v3__stat {
    padding: 0 32px;
    text-align: center;
}

.gp-hero-v3__stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

.gp-hero-v3__stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
    letter-spacing: -0.02em;
}

.gp-hero-v3__stat-label {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .gp-hero-v3 { padding: 120px 0 60px; }
    .gp-hero-v3__ctas { flex-direction: column; }
    .gp-hero-v3__cta-primary,
    .gp-hero-v3__cta-secondary { width: 100%; max-width: 300px; justify-content: center; }
    .gp-hero-v3__preview-wrapper { transform: none; }
    .gp-hero-v3__stats { gap: 8px; }
    .gp-hero-v3__stat { padding: 8px 16px; }
    .gp-hero-v3__stat-divider { display: none; }
    .gp-hero-v3__stat-value { font-size: 20px; }
}

/* ===========================================================================
   PLATFORMS BANNER (Logo Banner)
   =========================================================================== */
.gp-platforms {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gp-platforms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-platforms__label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.gp-platforms__carousel {
    position: relative;
    overflow: hidden;
}

.gp-platforms__mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.gp-platforms__mask--left {
    left: 0;
    background: linear-gradient(to right, var(--bg-color1, #0c0f1a) 0%, transparent 100%);
}
.gp-platforms__mask--right {
    right: 0;
    background: linear-gradient(to left, var(--bg-color1, #0c0f1a) 0%, transparent 100%);
}

.gp-platforms__track {
    display: flex;
    animation: gpPlatformScroll 40s linear infinite;
    width: max-content;
}

.gp-platforms__logos {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 0 24px;
}

.gp-platforms__logo {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--text-muted, #64748b);
    opacity: 0.4;
    transition: opacity 0.3s, color 0.3s;
}
.gp-platforms__logo:hover {
    opacity: 1;
}
/* Platform brand colors on hover */
.gp-platforms__logo[data-brand="tiktok"]:hover { color: #EE1D52; }
.gp-platforms__logo[data-brand="instagram"]:hover { color: #E4405F; }
.gp-platforms__logo[data-brand="youtube"]:hover { color: #FF0000; }
.gp-platforms__logo[data-brand="spotify"]:hover { color: #1DB954; }
.gp-platforms__logo[data-brand="facebook"]:hover { color: #1877F2; }
.gp-platforms__logo[data-brand="twitter"]:hover { color: #f1f5f9; }
.gp-platforms__logo[data-brand="twitch"]:hover { color: #9146FF; }
.gp-platforms__logo[data-brand="discord"]:hover { color: #5865F2; }
.gp-platforms__logo[data-brand="telegram"]:hover { color: #26A5E4; }
.gp-platforms__logo[data-brand="linkedin"]:hover { color: #0A66C2; }
.gp-platforms__logo[data-brand="pinterest"]:hover { color: #BD081C; }
.gp-platforms__logo[data-brand="reddit"]:hover { color: #FF4500; }
.gp-platforms__logo svg {
    width: 100%;
    height: 100%;
}

@keyframes gpPlatformScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================================================================
   SERVICES - Platform Cards Grid
   =========================================================================== */
.gp-services {
    padding: 100px 0;
}

.gp-services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-services__header {
    text-align: center;
    margin-bottom: 56px;
}

.gp-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.gp-services__card {
    position: relative;
    background: var(--card-gradient, linear-gradient(145deg, #161d2f 0%, #131829 100%));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 12px);
    padding: 28px 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.gp-services__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(var(--platform-color-rgb, 59, 130, 246), 0.1);
}

.gp-services__card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--platform-color, var(--gp-primary));
    opacity: 0;
    transition: opacity 0.3s;
}
.gp-services__card:hover .gp-services__card-accent {
    opacity: 1;
}

.gp-services__card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg, 12px);
    background: rgba(var(--platform-color-rgb, 59, 130, 246), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--platform-color, var(--gp-primary));
    transition: transform 0.2s, box-shadow 0.2s;
}
.gp-services__card:hover .gp-services__card-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}
.gp-services__card-icon svg {
    width: 32px;
    height: 32px;
}

.gp-services__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
    margin-bottom: 16px;
}

.gp-services__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.gp-services__card-features li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-secondary, #94a3b8);
    line-height: 2;
}
.gp-services__card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--platform-color, var(--gp-primary));
    opacity: 0.6;
}

.gp-services__card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gp-services__card-price-label {
    font-size: 12px;
    color: var(--text-muted, #64748b);
}
.gp-services__card-price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
}
.gp-services__card-price-value small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted, #64748b);
}

.gp-services__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-primary, #3b82f6);
    text-decoration: none;
    transition: gap 0.2s;
}
.gp-services__card-cta:hover {
    color: var(--gp-primary-hover, #2563eb);
    gap: 10px;
}

.gp-services__cta {
    text-align: center;
}
.gp-services__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 8px);
    color: var(--text-primary, #f1f5f9);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.gp-services__cta-btn:hover {
    color: var(--text-primary, #f1f5f9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .gp-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .gp-services__grid { grid-template-columns: 1fr; }
    .gp-services { padding: 60px 0; }
}

/* ===========================================================================
   SOCIAL PROOF - Numbers That Speak
   =========================================================================== */
.gp-social-proof {
    padding: 100px 0;
    position: relative;
}

.gp-social-proof__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-social-proof__header {
    text-align: center;
    margin-bottom: 64px;
}

.gp-social-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.gp-social-proof__card {
    position: relative;
    background: var(--card-gradient, linear-gradient(145deg, #161d2f 0%, #131829 100%));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 12px);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.gp-social-proof__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gp-social-proof__card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.12);
}
.gp-social-proof__card:hover::before {
    opacity: 1;
}

/* Color variants */
.gp-social-proof__card[data-color="blue"]::before { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.gp-social-proof__card[data-color="green"]::before { background: linear-gradient(90deg, #10b981, #059669); }
.gp-social-proof__card[data-color="purple"]::before { background: linear-gradient(90deg, #8b5cf6, #7c3aed); }
.gp-social-proof__card[data-color="orange"]::before { background: linear-gradient(90deg, #f59e0b, #d97706); }

.gp-social-proof__card[data-color="blue"]:hover { box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12); }
.gp-social-proof__card[data-color="green"]:hover { box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12); }
.gp-social-proof__card[data-color="purple"]:hover { box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12); }
.gp-social-proof__card[data-color="orange"]:hover { box-shadow: 0 8px 32px rgba(245, 158, 11, 0.12); }

.gp-social-proof__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md, 8px);
    margin-bottom: 20px;
}
.gp-social-proof__card[data-color="blue"] .gp-social-proof__icon {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}
.gp-social-proof__card[data-color="green"] .gp-social-proof__icon {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}
.gp-social-proof__card[data-color="purple"] .gp-social-proof__icon {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}
.gp-social-proof__card[data-color="orange"] .gp-social-proof__icon {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.gp-social-proof__value {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-primary, #f1f5f9);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.gp-social-proof__suffix {
    font-weight: 600;
    opacity: 0.7;
}

.gp-social-proof__label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary, #f1f5f9);
    margin-bottom: 6px;
}

.gp-social-proof__desc {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    line-height: 1.5;
    margin: 0;
}

/* Trust Bar */
.gp-social-proof__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 32px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius-lg, 12px);
}
.gp-social-proof__trust-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary, #94a3b8);
}
.gp-social-proof__trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: gpPulse 2s ease-in-out infinite;
}
.gp-social-proof__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gp-primary, #3b82f6) 0%, #2563eb 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.gp-social-proof__cta-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

@keyframes gpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

@media (max-width: 992px) {
    .gp-social-proof__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .gp-social-proof { padding: 60px 0; }
    .gp-social-proof__trust {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .gp-social-proof__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gp-social-proof__card { padding: 24px 16px; }
    .gp-social-proof__value { font-size: 28px; }
}

/* ===========================================================================
   BENTO GRID V2 - Why Choose Us + AI Tools
   =========================================================================== */
.gp-bento-v2 {
    padding: 100px 0;
}

.gp-bento-v2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-bento-v2__header {
    text-align: center;
    margin-bottom: 56px;
}

.gp-bento-v2__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 56px;
}

.gp-bento-v2__card {
    background: var(--card-gradient, linear-gradient(145deg, #161d2f 0%, #131829 100%));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 12px);
    padding: 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.gp-bento-v2__card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.gp-bento-v2__card--large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

.gp-bento-v2__card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gp-success, #22c55e);
    margin-bottom: 16px;
}

.gp-bento-v2__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gp-success, #22c55e);
    animation: gpLivePulse 2s ease-in-out infinite;
}

@keyframes gpLivePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.gp-bento-v2__card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, #f1f5f9);
    margin-bottom: 8px;
}
.gp-bento-v2__card-title--lg {
    font-size: 24px;
    font-weight: 700;
}

.gp-bento-v2__card-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.gp-bento-v2__card-title-row .gp-bento-v2__card-title {
    margin-bottom: 0;
}

.gp-bento-v2__new-badge {
    font-size: 10px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    padding: 2px 8px;
    border-radius: var(--radius-full, 9999px);
    letter-spacing: 0.05em;
}

.gp-bento-v2__card-desc {
    font-size: 14px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.5;
}

.gp-bento-v2__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.gp-bento-v2__icon--blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.gp-bento-v2__icon--green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.gp-bento-v2__icon--orange { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.gp-bento-v2__icon--purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.gp-bento-v2__icon--pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }

.gp-bento-v2__metric {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.gp-bento-v2__metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
    letter-spacing: -0.02em;
}
.gp-bento-v2__metric-unit {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin-left: 4px;
}

.gp-bento-v2__mini-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.gp-bento-v2__mini-value {
    font-size: 22px;
    font-weight: 700;
    display: block;
}
.gp-bento-v2__mini-label {
    font-size: 12px;
    color: var(--text-muted, #64748b);
}

.gp-bento-v2__badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.gp-bento-v2__security-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gp-success, #22c55e);
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: var(--radius-full, 9999px);
}

/* Stats Row */
.gp-bento-v2__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.gp-bento-v2__stat-item {
    padding: 0 32px;
    text-align: center;
}
.gp-bento-v2__stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
}
.gp-bento-v2__stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
    letter-spacing: -0.02em;
}
.gp-bento-v2__stat-label {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin-top: 2px;
}

@media (max-width: 992px) {
    .gp-bento-v2__grid { grid-template-columns: 1fr 1fr; }
    .gp-bento-v2__card--large { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 576px) {
    .gp-bento-v2 { padding: 60px 0; }
    .gp-bento-v2__grid { grid-template-columns: 1fr; }
    .gp-bento-v2__card--large { grid-column: span 1; }
    .gp-bento-v2__stats { gap: 8px; }
    .gp-bento-v2__stat-item { padding: 8px 16px; }
    .gp-bento-v2__stat-divider { display: none; }
}

/* ===========================================================================
   FAQ V2 - Centered Modern Accordion
   =========================================================================== */
.gp-faq-v2 {
    padding: 100px 0;
}

.gp-faq-v2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-faq-v2__header {
    text-align: center;
    margin-bottom: 48px;
}

.gp-faq-v2__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.gp-faq-v2__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gp-faq-v2__item:last-child {
    border-bottom: none;
}

.gp-faq-v2__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.gp-faq-v2__question {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #f1f5f9);
    flex: 1;
    transition: color 0.2s;
}
.gp-faq-v2__trigger:hover .gp-faq-v2__question {
    color: var(--gp-primary, #3b82f6);
}

.gp-faq-v2__chevron {
    flex-shrink: 0;
    color: var(--text-muted, #64748b);
    transition: transform 0.3s;
}
.gp-faq-v2__item--active .gp-faq-v2__chevron,
.gp-faq-v2__trigger[aria-expanded="true"] .gp-faq-v2__chevron {
    transform: rotate(180deg);
}

.gp-faq-v2__answer {
    padding: 0 0 20px;
}
.gp-faq-v2__answer p {
    font-size: 15px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.7;
    margin: 0;
}

.gp-faq-v2__cta {
    text-align: center;
    margin-top: 48px;
}
.gp-faq-v2__cta-text {
    font-size: 15px;
    color: var(--text-secondary, #94a3b8);
    margin-bottom: 12px;
}
.gp-faq-v2__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gp-primary, #3b82f6);
    text-decoration: none;
    transition: gap 0.2s;
}
.gp-faq-v2__cta-btn:hover {
    color: var(--gp-primary-hover, #2563eb);
    gap: 10px;
}

@media (max-width: 576px) {
    .gp-faq-v2 { padding: 60px 0; }
    .gp-faq-v2__question { font-size: 15px; }
}

/* ===========================================================================
   CTA V2 - Minimal Impact
   =========================================================================== */
.gp-cta-v2 {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gp-cta-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.gp-cta-v2__container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-cta-v2__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.gp-cta-v2__subtitle {
    font-size: 16px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.gp-cta-v2__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.gp-cta-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.gp-cta-v2__btn--primary {
    background: linear-gradient(135deg, var(--gp-primary, #3b82f6) 0%, #2563eb 100%);
    color: white;
}
.gp-cta-v2__btn--primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.gp-cta-v2__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary, #f1f5f9);
}
.gp-cta-v2__btn--secondary:hover {
    color: var(--text-primary, #f1f5f9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.gp-cta-v2__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.gp-cta-v2__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted, #64748b);
}
.gp-cta-v2__trust-item svg {
    color: var(--gp-success, #22c55e);
}

@media (max-width: 576px) {
    .gp-cta-v2 { padding: 60px 0; }
    .gp-cta-v2__buttons { flex-direction: column; }
    .gp-cta-v2__btn { width: 100%; max-width: 280px; justify-content: center; }
    .gp-cta-v2__trust { flex-direction: column; gap: 8px; }
}

/* ===========================================================================
   BLOG V2 - Clean Cards
   =========================================================================== */
.gp-blog-v2 {
    padding: 100px 0;
}

.gp-blog-v2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-blog-v2__header {
    text-align: center;
    margin-bottom: 48px;
}

.gp-blog-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.gp-blog-v2__card {
    background: var(--card-gradient, linear-gradient(145deg, #161d2f 0%, #131829 100%));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.gp-blog-v2__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.gp-blog-v2__image {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.gp-blog-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gp-blog-v2__card:hover .gp-blog-v2__image img {
    transform: scale(1.04);
}

.gp-blog-v2__body {
    padding: 20px 24px 24px;
}

.gp-blog-v2__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gp-primary, #3b82f6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.gp-blog-v2__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}
.gp-blog-v2__title a {
    color: var(--text-primary, #f1f5f9);
    text-decoration: none;
    transition: color 0.2s;
}
.gp-blog-v2__title a:hover {
    color: var(--gp-primary, #3b82f6);
}

.gp-blog-v2__date {
    display: block;
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin-bottom: 16px;
}

.gp-blog-v2__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-primary, #3b82f6);
    text-decoration: none;
    transition: gap 0.2s;
}
.gp-blog-v2__link:hover {
    color: var(--gp-primary-hover, #2563eb);
    gap: 8px;
}

.gp-blog-v2__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted, #64748b);
}

.gp-blog-v2__pagination {
    margin-top: 32px;
}

.gp-blog-v2__cta {
    text-align: center;
}
.gp-blog-v2__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 8px);
    color: var(--text-primary, #f1f5f9);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.gp-blog-v2__cta-btn:hover {
    color: var(--text-primary, #f1f5f9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .gp-blog-v2__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .gp-blog-v2 { padding: 60px 0; }
    .gp-blog-v2__grid { grid-template-columns: 1fr; }
}

/* ===========================================================================
   FOOTER V2 - Clean Minimal
   =========================================================================== */
.gp-footer-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gp-footer-v2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-footer-v2__main {
    padding: 64px 0 40px;
}

.gp-footer-v2__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.gp-footer-v2__logo {
    display: inline-block;
    margin-bottom: 16px;
}
.gp-footer-v2__logo img {
    max-height: 36px;
    width: auto;
}

.gp-footer-v2__desc {
    font-size: 14px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.gp-footer-v2__social {
    display: flex;
    gap: 8px;
}
.gp-footer-v2__social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md, 8px);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.gp-footer-v2__social-link:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--gp-primary, #3b82f6);
}

.gp-footer-v2__widget-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #f1f5f9);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gp-footer-v2__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gp-footer-v2__links li {
    margin-bottom: 10px;
}
.gp-footer-v2__links a {
    font-size: 14px;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    transition: color 0.2s;
}
.gp-footer-v2__links a:hover {
    color: var(--text-primary, #f1f5f9);
}

.gp-footer-v2__widget-desc {
    font-size: 14px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.5;
    margin-bottom: 16px;
}

.gp-footer-v2__newsletter-row {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    transition: border-color 0.2s;
}
.gp-footer-v2__newsletter-row:focus-within {
    border-color: var(--gp-primary, #3b82f6);
}
.gp-footer-v2__newsletter-row input {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: var(--text-primary, #f1f5f9);
    font-size: 14px;
    outline: none;
}
.gp-footer-v2__newsletter-row input::placeholder {
    color: var(--text-muted, #64748b);
}
.gp-footer-v2__newsletter-row button {
    padding: 10px 14px;
    background: var(--gp-primary, #3b82f6);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}
.gp-footer-v2__newsletter-row button:hover {
    background: var(--gp-primary-hover, #2563eb);
}

.gp-footer-v2__newsletter-error {
    font-size: 12px;
    color: var(--gp-danger, #EF4444);
    margin-top: 6px;
    display: block;
}

/* Footer Bottom */
.gp-footer-v2__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.gp-footer-v2__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.gp-footer-v2__copyright {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin: 0;
}
.gp-footer-v2__copyright a {
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
}

.gp-footer-v2__language {
    position: relative;
}
.gp-footer-v2__language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 8px);
    color: var(--text-secondary, #94a3b8);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}
.gp-footer-v2__language-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.gp-footer-v2__language-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    min-width: 140px;
    background: var(--bg-color3, #1a2035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 8px);
    padding: 6px;
    margin-bottom: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
}
.gp-footer-v2__language-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gp-footer-v2__language-dropdown a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.gp-footer-v2__language-dropdown a:hover,
.gp-footer-v2__language-dropdown a.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--gp-primary, #3b82f6);
}

.gp-footer-v2__top-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md, 8px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary, #94a3b8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gp-footer-v2__top-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--gp-primary, #3b82f6);
}

@media (max-width: 992px) {
    .gp-footer-v2__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .gp-footer-v2__brand { grid-column: span 2; }
}
@media (max-width: 576px) {
    .gp-footer-v2__grid { grid-template-columns: 1fr; }
    .gp-footer-v2__brand { grid-column: span 1; }
    .gp-footer-v2__main { padding: 40px 0 24px; }
}

/* ===========================================================================
   PAGE HERO PREMIUM - Public Pages
   =========================================================================== */

.gp-page-hero {
    position: relative;
    padding: 70px 0 32px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-color1) 0%, transparent 100%);
}

/* Background decorative elements - must be absolutely positioned */
.gp-page-hero .gp-grid-bg,
.gp-page-hero .gp-orb {
    position: absolute;
    pointer-events: none;
}
.gp-page-hero .gp-grid-bg {
    inset: 0;
    opacity: 0.03;
}
.gp-page-hero .gp-orb {
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.gp-page-hero--compact {
    padding: 60px 0 24px;
    min-height: 140px;
}

.gp-page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.gp-page-hero__subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gp-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--gp-primary-light);
    border-radius: var(--radius-full);
}

.gp-page-hero__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Gradient Text Effect */
.gp-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a1 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gpGradientShift 8s ease infinite;
}

@keyframes gpGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .gp-gradient-text {
        animation: none;
        background-position: 0% 50%;
    }
}

.gp-page-hero__description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================================================
   LEGACY BLOG CLASSES - Used by author.blade.php and category_wise_blog.blade.php
   =========================================================================== */
.gp-blog__card {
    background: var(--card-gradient, linear-gradient(145deg, #161d2f 0%, #131829 100%));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    margin-bottom: 20px;
}
.gp-blog__card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.12); }

.gp-blog__image { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; }
.gp-blog__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gp-blog__card:hover .gp-blog__image img { transform: scale(1.04); }
.gp-blog__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }

.gp-blog__content { padding: 20px 24px 24px; }
.gp-blog__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 13px; color: var(--text-muted, #64748b); }
.gp-blog__author { color: var(--gp-primary, #3b82f6); text-decoration: none; }
.gp-blog__date, .gp-blog__views { display: flex; align-items: center; gap: 4px; }

.gp-blog__card-title { font-size: 17px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.gp-blog__card-title a { color: var(--text-primary, #f1f5f9); text-decoration: none; }
.gp-blog__card-title a:hover { color: var(--gp-primary, #3b82f6); }

.gp-blog__excerpt { font-size: 14px; color: var(--text-secondary, #94a3b8); line-height: 1.6; margin-bottom: 16px; }

.gp-blog__read-more {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 14px; font-weight: 500; color: var(--gp-primary, #3b82f6); text-decoration: none;
}
.gp-blog__read-more:hover { color: var(--gp-primary-hover, #2563eb); }

.gp-blog__pagination { margin-top: 24px; }

/* Orb Animations (used by page-hero and content sections) */
@keyframes gpOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 15px) scale(0.98); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}
@keyframes gpOrbFloatAlt {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 15px) scale(1.03); }
    66% { transform: translate(20px, -10px) scale(0.97); }
}

/* Hero Orb Positions */
.gp-page-hero .gp-orb:nth-of-type(1) {
    top: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    animation: gpOrbFloat 12s ease-in-out infinite;
}

.gp-page-hero .gp-orb:nth-of-type(2) {
    bottom: 10%;
    left: 0%;
    width: 350px;
    height: 350px;
    animation: gpOrbFloatAlt 20s ease-in-out infinite;
}

/* ===========================================================================
   BREADCRUMB - GP Style
   =========================================================================== */

.gp-breadcrumb {
    margin-top: 24px;
}

.gp-breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.gp-breadcrumb li::after {
    content: "/";
    color: var(--text-muted);
    opacity: 0.5;
}

.gp-breadcrumb li:last-child::after {
    display: none;
}

.gp-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.gp-breadcrumb a:hover {
    color: var(--gp-primary);
}

.gp-breadcrumb a:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.gp-breadcrumb li[aria-current="page"] {
    color: var(--text-primary);
}

/* ===========================================================================
   AUTH SECTION - Login/Register/Reset
   =========================================================================== */

.gp-auth-section {
    padding: 0 0 100px;
    position: relative;
    z-index: 1;
}

.gp-auth-card {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.gp-auth-card__header {
    text-align: center;
    margin-bottom: 32px;
}

.gp-auth-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.gp-auth-card__subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Social Login Buttons */
.gp-social-login {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.gp-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-color3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.gp-social-btn:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-color4);
    color: var(--text-primary);
}

.gp-social-btn:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
}

.gp-social-btn img {
    width: 20px;
    height: 20px;
}

/* Divider */
.gp-auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.gp-auth-divider::before,
.gp-auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* Form Groups */
.gp-form-group {
    margin-bottom: 20px;
}

.gp-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.gp-form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-color3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gp-form-input:focus {
    border-color: var(--gp-primary);
    box-shadow: 0 0 0 3px var(--gp-primary-light);
    outline: none;
}

.gp-form-input::placeholder {
    color: var(--text-muted);
}

/* Password Input with Toggle */
.gp-password-box {
    position: relative;
}

.gp-password-box .gp-form-input {
    padding-right: 48px;
}

.gp-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.gp-password-toggle:hover {
    color: var(--text-secondary);
}

.gp-password-toggle:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Checkbox */
.gp-form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gp-form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gp-primary);
    cursor: pointer;
}

.gp-form-check label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Submit Button */
.gp-auth-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--gp-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.gp-auth-submit:hover {
    background: var(--gp-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.gp-auth-submit:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
}

.gp-auth-submit:active {
    transform: translateY(0);
}

/* Auth Links */
.gp-auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.gp-auth-link {
    font-size: 14px;
    color: var(--gp-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.gp-auth-link:hover {
    color: var(--gp-primary-hover);
    text-decoration: underline;
}

.gp-auth-link:focus-visible {
    outline: 2px solid var(--gp-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Auth Footer */
.gp-auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.gp-auth-footer p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.gp-auth-footer a {
    color: var(--gp-primary);
    font-weight: 500;
    text-decoration: none;
}

.gp-auth-footer a:hover {
    text-decoration: underline;
}

/* Error Messages */
.gp-form-error {
    display: block;
    font-size: 13px;
    color: var(--gp-danger);
    margin-top: 6px;
}

/* Alert Messages */
.gp-alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 14px;
}

.gp-alert--success {
    background: var(--gp-success-light);
    border: 1px solid var(--gp-success);
    color: var(--gp-success);
}

.gp-alert--error {
    background: var(--gp-danger-light);
    border: 1px solid var(--gp-danger);
    color: var(--gp-danger);
}

/* Page Hero Tablet */
@media (max-width: 991px) {
    .gp-page-hero {
        padding: 60px 0 24px;
        min-height: 140px;
    }

    .gp-page-hero--compact {
        padding: 50px 0 20px;
        min-height: 180px;
    }
}

/* Auth Section Responsive */
@media (max-width: 575px) {
    .gp-auth-card {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .gp-social-login {
        flex-direction: column;
    }

    .gp-auth-links {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .gp-page-hero {
        padding: 60px 0 24px;
        min-height: 140px;
    }

    .gp-page-hero--compact {
        padding: 50px 0 20px;
        min-height: 180px;
    }
}

/* ===========================================================================
   CONTENT PAGES - Blog, Services
   =========================================================================== */

.gp-content-section {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

/* Reset padding/background for sections inside content pages (dynamic pages like About, FAQ, Contact)
   These sections are designed for landing page (standalone) but when inside content pages,
   they should adapt to the page structure without duplicate spacing/backgrounds */
.gp-content-section .gp-about,
.gp-content-section .gp-faq,
.gp-content-section .gp-faq-page,
.gp-content-section .gp-contact,
.gp-content-section .gp-services,
.gp-content-section .gp-cta {
    padding: 0;
    background: transparent;
}

/* Remove decorative elements (orbs, grids) from sections inside content pages
   since the hero-page already provides these */
.gp-content-section .gp-grid-bg,
.gp-content-section .gp-orb,
.gp-content-section [class*="__grid-bg"],
.gp-content-section [class*="__orb"] {
    display: none;
}

/* Blog Cards (reusing existing styles, enhancing) */
.gp-blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* ===========================================================================
   UTILITY CLASSES
   =========================================================================== */

.gp-text-center {
    text-align: center;
}

.gp-mt-0 { margin-top: 0; }
.gp-mb-0 { margin-bottom: 0; }
.gp-mt-24 { margin-top: 24px; }
.gp-mb-24 { margin-bottom: 24px; }
.gp-mt-32 { margin-top: 32px; }
.gp-mb-32 { margin-bottom: 32px; }

/* ===========================================================================
   POLICY/SUPPORT PAGE STYLES
   =========================================================================== */

.gp-policy-section {
    padding: 60px 0 100px;
    background: var(--bg-color1);
}

.gp-policy__content {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.gp-policy__content h1,
.gp-policy__content h2,
.gp-policy__content h3,
.gp-policy__content h4,
.gp-policy__content h5,
.gp-policy__content h6 {
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 32px;
}

.gp-policy__content h1:first-child,
.gp-policy__content h2:first-child,
.gp-policy__content h3:first-child {
    margin-top: 0;
}

.gp-policy__content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.gp-policy__content ul,
.gp-policy__content ol {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.gp-policy__content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.gp-policy__content a {
    color: var(--gp-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gp-policy__content a:hover {
    color: var(--gp-primary-hover);
}

.gp-policy__content blockquote {
    border-left: 3px solid var(--gp-primary);
    padding-left: 20px;
    margin: 24px 0;
    color: var(--text-secondary);
    font-style: italic;
}

.gp-policy__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gp-policy__content th,
.gp-policy__content td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.gp-policy__content th {
    background: var(--bg-color3);
    color: var(--text-primary);
    font-weight: 600;
}

.gp-policy__content td {
    color: var(--text-secondary);
}

.gp-policy__content small {
    font-size: 0.875em;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .gp-policy__content {
        padding: 24px;
    }
}

/* ===========================================================================
   AUTHOR PAGE STYLES
   =========================================================================== */

.gp-author {
    margin-bottom: 48px;
}

.gp-author__card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.gp-author__avatar {
    flex-shrink: 0;
}

.gp-author__avatar img {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.gp-author__info {
    flex: 1;
    min-width: 250px;
}

.gp-author__name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.gp-author__location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.gp-author__location i {
    color: var(--gp-primary);
}

.gp-author__bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gp-author__social {
    display: flex;
    gap: 12px;
}

.gp-author__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-color3);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition-base);
}

.gp-author__social-link:hover {
    background: var(--gp-primary);
    border-color: var(--gp-primary);
    color: #fff;
    transform: translateY(-2px);
}

.gp-author__stats {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.gp-author__stat {
    text-align: center;
    padding: 16px 24px;
    background: var(--bg-color3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.gp-author__stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gp-primary);
}

.gp-author__stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Author Articles Section */
.gp-author__articles {
    margin-top: 32px;
}

.gp-author__articles-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.gp-author__articles-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Author Empty State */
.gp-author__empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.gp-author__empty-icon {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.gp-author__empty p {
    color: var(--text-muted);
    margin: 0;
}

/* Author Page Responsive */
@media (max-width: 768px) {
    .gp-author__card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .gp-author__avatar img {
        width: 120px;
        height: 120px;
    }

    .gp-author__info {
        min-width: 100%;
    }

    .gp-author__social {
        justify-content: center;
    }

    .gp-author__stats {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .gp-author__name {
        font-size: 1.5rem;
    }
}

/* ===========================================================================
   BLOG ARTICLE STYLES
   =========================================================================== */

.gp-blog-article {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gp-blog-article__image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.gp-blog-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.gp-blog-article__author,
.gp-blog-article__stat,
.gp-blog-article__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
}

.gp-blog-article__author:hover {
    color: var(--gp-primary);
}

.gp-blog-article__author i,
.gp-blog-article__stat i,
.gp-blog-article__date i {
    font-size: 14px;
    opacity: 0.7;
}

.gp-blog-article__content {
    padding: 32px 40px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 720px;
}

.gp-blog-article__content h1 {
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.gp-blog-article__content h2 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.gp-blog-article__content h3 {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.gp-blog-article__content h4,
.gp-blog-article__content h5,
.gp-blog-article__content h6 {
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.gp-blog-article__content p {
    margin-bottom: 24px;
}

.gp-blog-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.gp-blog-article__content a {
    color: var(--gp-primary);
    text-decoration: underline;
}

.gp-blog-article__content ul,
.gp-blog-article__content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.gp-blog-article__content li {
    margin-bottom: 8px;
}

.gp-blog-article__quote {
    position: relative;
    background: var(--bg-color3);
    border-left: 4px solid var(--gp-primary);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    margin: 32px;
}

.gp-blog-article__quote-icon {
    position: absolute;
    top: -12px;
    left: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gp-primary);
    border-radius: 50%;
    color: white;
    font-size: 16px;
}

.gp-blog-article__quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.gp-blog-article__quote cite {
    font-size: 14px;
    color: var(--text-muted);
    font-style: normal;
}

.gp-blog-article__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    border-top: 1px solid var(--border-color);
}

.gp-blog-article__tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.gp-blog-article__tag {
    padding: 6px 12px;
    background: var(--bg-color3);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
}

.gp-blog-article__share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    border-top: 1px solid var(--border-color);
}

.gp-blog-article__share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===========================================================================
   BLOG SIDEBAR STYLES
   =========================================================================== */

.gp-blog-sidebar {
    position: sticky;
    top: 100px;
}

.gp-blog-sidebar__widget {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.gp-blog-sidebar__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.gp-blog-sidebar__search {
    position: relative;
}

.gp-blog-sidebar__search .gp-form-input {
    padding-right: 50px;
}

.gp-blog-sidebar__search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: var(--gp-primary);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: white;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.gp-blog-sidebar__search-btn:hover {
    background: var(--gp-primary-hover);
}

.gp-blog-sidebar__posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gp-blog-sidebar__post {
    display: flex;
    gap: 16px;
    text-decoration: none;
    padding: 12px;
    margin: -12px;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.gp-blog-sidebar__post:hover {
    background: var(--bg-color3);
}

.gp-blog-sidebar__post-image {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.gp-blog-sidebar__post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-blog-sidebar__post-content {
    flex: 1;
    min-width: 0;
}

.gp-blog-sidebar__post-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gp-blog-sidebar__post-date {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.gp-blog-sidebar__categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-blog-sidebar__categories li {
    border-bottom: 1px solid var(--border-color);
}

.gp-blog-sidebar__categories li:last-child {
    border-bottom: none;
}

.gp-blog-sidebar__categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.gp-blog-sidebar__categories a:hover,
.gp-blog-sidebar__categories a.active {
    color: var(--gp-primary);
}

.gp-blog-sidebar__category-count {
    background: var(--bg-color3);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
}

.gp-blog-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gp-blog-sidebar__tag {
    padding: 6px 12px;
    background: var(--bg-color3);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.gp-blog-sidebar__tag:hover {
    background: var(--gp-primary-light);
    color: var(--gp-primary);
}

/* ===========================================================================
   SERVICES PAGE STYLES
   =========================================================================== */

.gp-services__filters {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.gp-services__filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-color3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.gp-services__filter-btn:hover {
    border-color: var(--border-color-hover);
    color: var(--text-primary);
}

.gp-services__filter-btn--active {
    border-color: var(--gp-primary);
    background: var(--gp-primary-light);
    color: var(--gp-primary);
}

.gp-services__filter-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.gp-services__search {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.gp-services__list {
    margin-bottom: 32px;
}

.gp-services__category {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}

.gp-services__category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.gp-services__category-header:hover {
    background: var(--bg-color3);
}

.gp-services__category-header::after {
    display: none;
}

.gp-services__category-icon {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.gp-services__category-header:not(.collapsed) .gp-services__category-icon {
    transform: rotate(180deg);
}

.gp-services__category-body {
    padding: 0 24px 24px;
}

.gp-services__table {
    width: 100%;
    border-collapse: collapse;
}

.gp-services__table thead {
    background: var(--bg-color3);
}

.gp-services__table th {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    white-space: nowrap;
}

.gp-services__table th:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.gp-services__table th:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.gp-services__table td {
    padding: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.gp-services__table tbody tr:last-child td {
    border-bottom: none;
}

.gp-services__table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.gp-services__name {
    max-width: 400px;
}

.gp-services__avg-time {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.gp-services__price {
    font-weight: 600;
    color: var(--gp-primary);
}

.gp-services__view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gp-primary-light);
    border: none;
    border-radius: var(--radius-md);
    color: var(--gp-primary);
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.gp-services__view-btn:hover {
    background: var(--gp-primary);
    color: white;
}

.gp-services__pagination {
    display: flex;
    justify-content: center;
}

.gp-services__empty {
    text-align: center;
    padding: 60px 20px;
}

.gp-services__empty img {
    max-width: 200px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.gp-services__empty p {
    color: var(--text-muted);
}

/* ===========================================================================
   MODAL STYLES
   =========================================================================== */

.gp-modal {
    background: var(--bg-color2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.gp-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.gp-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.gp-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-color3);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.gp-modal__close:hover {
    background: var(--bg-color4);
    color: var(--text-primary);
}

.gp-modal__body {
    padding: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.gp-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

/* Mobile responsive for services table */
@media (max-width: 768px) {
    .gp-services__table thead {
        display: none;
    }

    .gp-services__table,
    .gp-services__table tbody,
    .gp-services__table tr,
    .gp-services__table td {
        display: block;
    }

    .gp-services__table tr {
        padding: 16px;
        margin-bottom: 16px;
        background: var(--bg-color3);
        border-radius: var(--radius-md);
    }

    .gp-services__table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .gp-services__table td:last-child {
        border-bottom: none;
    }

    .gp-services__table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
    }

    .gp-services__name {
        max-width: none;
        text-align: right;
    }

    .gp-blog-article__meta {
        padding: 20px;
    }

    .gp-blog-article__content {
        padding: 20px;
    }

    .gp-blog-article__quote {
        margin: 20px;
        padding: 20px;
    }

    .gp-blog-article__tags,
    .gp-blog-article__share {
        padding: 20px;
    }
}

/* ===========================================================================
   FAQ PAGE - Full Featured FAQ with Search & Categories (Dark Mode)
   =========================================================================== */

.gp-faq-page {
    padding: 0 0 60px;
}

/* Search Wrapper */
.gp-faq-page__search-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 24px;
}

.gp-faq-page__search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.gp-faq-page__search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    background: var(--bg-color2, #111111);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 12px);
    color: var(--text-primary, #ffffff);
    font-size: 16px;
    outline: none;
    transition: var(--transition-base, 200ms ease);
}

.gp-faq-page__search-input::placeholder {
    color: var(--text-muted, #737373);
}

.gp-faq-page__search-input:focus {
    border-color: var(--gp-primary, #0066FF);
    box-shadow: 0 0 0 3px var(--gp-primary-light, rgba(0, 102, 255, 0.1));
}

.gp-faq-page__search-input:hover {
    border-color: var(--border-color-hover, rgba(255, 255, 255, 0.2));
}

.gp-faq-page__search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted, #737373);
    pointer-events: none;
}

.gp-faq-page__search-kbd {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 8px;
    background: var(--bg-color3, #1a1a1a);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 6px;
    color: var(--text-muted, #737373);
    font-size: 12px;
    font-family: var(--font-mono, monospace);
}

/* Filters */
.gp-faq-page__filters {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gp-faq-page__filters::-webkit-scrollbar {
    display: none;
}

.gp-faq-page__filter-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-color2, #111111);
    border: 2px solid var(--border-color, rgba(255, 255, 255, 0.14));
    border-radius: var(--radius-full, 9999px);
    color: var(--text-secondary, #a1a1a1);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base, 200ms ease);
    white-space: nowrap;
}

.gp-faq-page__filter-btn:hover {
    border-color: var(--gp-primary, #0066FF);
    color: var(--gp-primary, #0066FF);
}

.gp-faq-page__filter-btn.active {
    background: var(--gp-primary, #0066FF);
    border-color: var(--gp-primary, #0066FF);
    color: #ffffff;
}

/* Container */
.gp-faq-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Category */
.gp-faq-page__category {
    margin-bottom: 48px;
}

.gp-faq-page__category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.gp-faq-page__category-header svg {
    color: var(--gp-primary, #0066FF);
}

.gp-faq-page__category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin: 0;
    flex: 1;
}

.gp-faq-page__category-count {
    font-size: 13px;
    color: var(--text-muted, #737373);
    background: var(--bg-color3, #1a1a1a);
    padding: 4px 12px;
    border-radius: var(--radius-full, 9999px);
}

/* FAQ Item */
.gp-faq-page__item {
    background: var(--bg-color2, #111111);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 12px);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-base, 200ms ease);
    animation: faqFadeInUp 0.4s ease forwards;
    opacity: 0;
}

@keyframes faqFadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gp-faq-page__item:nth-child(2) { animation-delay: 0.05s; }
.gp-faq-page__item:nth-child(3) { animation-delay: 0.1s; }
.gp-faq-page__item:nth-child(4) { animation-delay: 0.15s; }
.gp-faq-page__item:nth-child(5) { animation-delay: 0.2s; }
.gp-faq-page__item:nth-child(6) { animation-delay: 0.25s; }

.gp-faq-page__item:hover {
    border-color: var(--border-color-hover, rgba(255, 255, 255, 0.2));
}

.gp-faq-page__item.open {
    border-color: var(--gp-primary, #0066FF);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.15);
}

/* Question */
.gp-faq-page__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    text-align: left;
    transition: color var(--transition-fast, 150ms ease);
}

.gp-faq-page__question:hover {
    color: var(--gp-primary, #0066FF);
}

.gp-faq-page__question span {
    flex: 1;
    padding-right: 16px;
}

.gp-faq-page__arrow {
    flex-shrink: 0;
    color: var(--text-muted, #737373);
    transition: transform 0.3s ease, color 0.3s ease;
}

.gp-faq-page__item.open .gp-faq-page__arrow {
    transform: rotate(180deg);
    color: var(--gp-primary, #0066FF);
}

/* Answer */
.gp-faq-page__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.gp-faq-page__item.open .gp-faq-page__answer {
    max-height: 2000px;
}

.gp-faq-page__answer-content {
    padding: 0 24px 24px;
    color: var(--text-secondary, #a1a1a1);
    font-size: 15px;
    line-height: 1.7;
}

.gp-faq-page__answer-content p {
    margin: 0 0 12px;
}

.gp-faq-page__answer-content p:last-child {
    margin-bottom: 0;
}

.gp-faq-page__answer-content strong {
    color: var(--text-primary, #ffffff);
}

.gp-faq-page__answer-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.gp-faq-page__answer-content li {
    margin-bottom: 8px;
}

.gp-faq-page__answer-content li:last-child {
    margin-bottom: 0;
}

/* No Results */
.gp-faq-page__no-results {
    text-align: center;
    padding: 60px 20px;
}

.gp-faq-page__no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.gp-faq-page__no-results-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-primary, #ffffff);
}

.gp-faq-page__no-results p {
    color: var(--text-secondary, #a1a1a1);
    margin: 0;
}

/* CTA Section */
.gp-faq-page__cta {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--bg-color2, #111111);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-xl, 16px);
    text-align: center;
}

.gp-faq-page__cta-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin: 0 0 12px;
}

.gp-faq-page__cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary, #a1a1a1);
    margin: 0 0 30px;
}

.gp-faq-page__cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.gp-faq-page__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-color3, #1a1a1a);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-md, 8px);
    color: var(--text-secondary, #a1a1a1);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base, 200ms ease);
}

.gp-faq-page__cta-btn:hover {
    border-color: var(--border-color-hover, rgba(255, 255, 255, 0.2));
    color: var(--text-primary, #ffffff);
    transform: translateY(-2px);
}

.gp-faq-page__cta-btn--primary {
    background: var(--gp-secondary, #10B981);
    border-color: var(--gp-secondary, #10B981);
    color: #ffffff;
}

.gp-faq-page__cta-btn--primary:hover {
    background: var(--gp-secondary-hover, #059669);
    border-color: var(--gp-secondary-hover, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .gp-faq-page__search-wrapper {
        padding: 0 16px;
    }

    .gp-faq-page__filters {
        justify-content: flex-start;
        padding: 0 16px;
    }

    .gp-faq-page__container {
        padding: 0 16px;
    }

    .gp-faq-page__question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .gp-faq-page__answer-content {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .gp-faq-page__cta {
        margin: 40px 16px 0;
        padding: 30px 20px;
    }

    .gp-faq-page__cta-buttons {
        flex-direction: column;
    }

    .gp-faq-page__cta-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gp-faq-page__filter-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .gp-faq-page__category-title {
        font-size: 18px;
    }
}

/* ===========================================
   Services Cards Section - Premium Design
   =========================================== */

.gp-services-cards {
    padding: 60px 0 100px;
    background: var(--bg-color1, #0c0f1a);
    min-height: 60vh;
}

/* Stats Banner */
.gp-services-cards__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 24px 32px;
    background: linear-gradient(145deg, #161d2f 0%, #131829 100%);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.gp-services-cards__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gp-services-cards__stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gp-primary, #0066FF);
    font-variant-numeric: tabular-nums;
}

.gp-services-cards__stat-label {
    font-size: 13px;
    color: var(--text-muted, #737373);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Toolbar (Sticky) */
.gp-services-cards__toolbar {
    position: sticky;
    top: 80px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    background: rgba(19, 24, 41, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Search */
.gp-services-cards__search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.gp-services-cards__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted, #737373);
    font-size: 16px;
    pointer-events: none;
}

.gp-services-cards__search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: var(--bg-color3, #1a2035);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-md, 8px);
    color: var(--text-primary, #f1f5f9);
    font-size: 14px;
    transition: var(--transition-fast, 150ms ease);
}

.gp-services-cards__search-input::placeholder {
    color: var(--text-muted, #737373);
}

.gp-services-cards__search-input:focus {
    outline: none;
    border-color: var(--gp-primary, #0066FF);
    box-shadow: 0 0 0 3px var(--gp-primary-light, rgba(0, 102, 255, 0.1));
}

/* Platforms (Social Media) */
.gp-services-cards__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gp-services-cards__platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-color3, #1a2035);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-md, 8px);
    color: var(--text-secondary, #94a3b8);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast, 150ms ease);
}

.gp-services-cards__platform-btn:hover {
    border-color: var(--border-color-hover, rgba(255, 255, 255, 0.2));
    color: var(--text-primary, #ffffff);
}

.gp-services-cards__platform-btn--active {
    background: var(--gp-primary, #0066FF);
    border-color: var(--gp-primary, #0066FF);
    color: #ffffff;
}

.gp-services-cards__platform-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    transition: filter var(--transition-fast, 150ms ease);
}

.gp-services-cards__platform-btn--active .gp-services-cards__platform-icon,
.gp-services-cards__platform-btn:hover .gp-services-cards__platform-icon {
    filter: none;
}

/* Quick Selector (Categories) */
.gp-services-cards__quick-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding: 16px;
    background: var(--bg-color2, #131829);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-md, 8px);
}

.gp-services-cards__quick-btn {
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-sm, 6px);
    color: var(--text-secondary, #a1a1a1);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast, 150ms ease);
    white-space: nowrap;
}

.gp-services-cards__quick-btn:hover {
    border-color: var(--gp-primary, #0066FF);
    color: var(--gp-primary, #0066FF);
}

.gp-services-cards__quick-btn--active {
    background: var(--gp-primary-light, rgba(0, 102, 255, 0.1));
    border-color: var(--gp-primary, #0066FF);
    color: var(--gp-primary, #0066FF);
}

.gp-services-cards__quick-select {
    padding: 8px 12px;
    background: var(--bg-color3, #1a2035);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-sm, 6px);
    color: var(--text-secondary, #94a3b8);
    font-size: 12px;
    cursor: pointer;
}

/* Grid */
.gp-services-cards__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Category Header */
.gp-services-cards__category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(145deg, #161d2f 0%, #131829 100%);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-md, 8px);
    margin-bottom: -8px;
}

.gp-services-cards__category-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gp-services-cards__category-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.gp-services-cards__category-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    margin: 0;
}

.gp-services-cards__category-count {
    font-size: 13px;
    color: var(--text-muted, #737373);
}

/* Service Cards List */
.gp-services-cards__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

/* Service Card */
.gp-services-cards__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #161d2f 0%, #131829 100%);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-lg, 12px);
    padding: 20px;
    transition: var(--transition-base, 200ms ease);
    animation: gp-card-fade-in 0.4s ease forwards;
    animation-delay: var(--animation-delay, 0s);
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes gp-card-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gp-services-cards__card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 20px rgba(59, 130, 246, 0.1);
}

/* Card with Badge - Left Border Accent (disabled — badge pill is enough)
.gp-services-cards__card--new {
    border-left: 3px solid var(--gp-secondary, #10B981);
}
.gp-services-cards__card--hot {
    border-left: 3px solid var(--gp-danger, #EF4444);
}
.gp-services-cards__card--premium {
    border-left: 3px solid var(--gp-accent-purple, #8B5CF6);
}
.gp-services-cards__card--best_seller {
    border-left: 3px solid var(--gp-warning, #F59E0B);
}
*/

/* Card Header */
.gp-services-cards__card-header {
    margin-bottom: 16px;
    position: relative;
}

.gp-services-cards__card-cat-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.gp-services-cards__card:hover .gp-services-cards__card-cat-icon {
    opacity: 0.8;
}

.gp-services-cards__card-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.gp-services-cards__card-id {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted, #737373);
    font-variant-numeric: tabular-nums;
}

.gp-services-cards__card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary, #ffffff);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Badges */
.gp-services-cards__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: var(--radius-sm, 6px);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gp-services-cards__badge--new {
    background: var(--gp-success-light, rgba(16, 185, 129, 0.1));
    color: var(--gp-secondary, #10B981);
}

.gp-services-cards__badge--hot {
    background: var(--gp-danger-light, rgba(239, 68, 68, 0.1));
    color: var(--gp-danger, #EF4444);
}

.gp-services-cards__badge--premium {
    background: rgba(139, 92, 246, 0.1);
    color: var(--gp-accent-purple, #8B5CF6);
}

.gp-services-cards__badge--best_seller {
    background: var(--gp-warning-light, rgba(245, 158, 11, 0.1));
    color: var(--gp-warning, #F59E0B);
}

/* Card Meta */
.gp-services-cards__card-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.05));
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.05));
    margin-bottom: 16px;
}

.gp-services-cards__card-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gp-services-cards__card-stat-label {
    font-size: 11px;
    color: var(--text-muted, #737373);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.gp-services-cards__card-stat-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    font-variant-numeric: tabular-nums;
}

.gp-services-cards__card-price {
    color: var(--gp-primary, #0066FF);
}

/* Card Footer */
.gp-services-cards__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.gp-services-cards__card-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted, #737373);
}

.gp-services-cards__card-time i {
    font-size: 14px;
}

.gp-services-cards__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-sm, 6px);
    color: var(--text-secondary, #a1a1a1);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast, 150ms ease);
}

.gp-services-cards__card-btn:hover {
    border-color: var(--gp-primary, #0066FF);
    color: var(--gp-primary, #0066FF);
    background: var(--gp-primary-light, rgba(0, 102, 255, 0.1));
}

.gp-services-cards__card-btn i {
    font-size: 10px;
    transition: transform var(--transition-fast, 150ms ease);
}

.gp-services-cards__card-btn:hover i {
    transform: translateX(3px);
}

/* Loading State */
.gp-services-cards__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    color: var(--text-muted, #737373);
}

.gp-services-cards__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-top-color: var(--gp-primary, #0066FF);
    border-radius: 50%;
    animation: gp-spinner 0.8s linear infinite;
}

@keyframes gp-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Pagination */
.gp-services-cards__pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.gp-services-cards__pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-services-cards__pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-color2, #131829);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-md, 8px);
    color: var(--text-secondary, #94a3b8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast, 150ms ease);
}

.gp-services-cards__pagination .page-item .page-link:hover {
    border-color: var(--gp-primary, #0066FF);
    color: var(--gp-primary, #0066FF);
}

.gp-services-cards__pagination .page-item.active .page-link {
    background: var(--gp-primary, #0066FF);
    border-color: var(--gp-primary, #0066FF);
    color: #ffffff;
}

.gp-services-cards__pagination .page-item .page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Empty State */
.gp-services-cards__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    text-align: center;
}

.gp-services-cards__empty-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #161d2f 0%, #131829 100%);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-xl, 16px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.gp-services-cards__empty-icon i {
    font-size: 32px;
    color: var(--text-muted, #737373);
}

.gp-services-cards__empty h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    margin: 0;
}

.gp-services-cards__empty p {
    font-size: 14px;
    color: var(--text-muted, #737373);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .gp-services-cards__list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .gp-services-cards__stats {
        gap: 32px;
        padding: 20px 24px;
    }
}

@media (max-width: 768px) {
    .gp-services-cards {
        padding: 40px 0 80px;
    }

    .gp-services-cards__stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 16px;
        padding: 20px 16px;
    }

    .gp-services-cards__stat-value {
        font-size: 22px;
    }

    .gp-services-cards__stat-label {
        font-size: 11px;
    }

    .gp-services-cards__toolbar {
        position: relative;
        top: auto;
        padding: 16px;
    }

    .gp-services-cards__search {
        max-width: 100%;
    }

    .gp-services-cards__platforms {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .gp-services-cards__platforms::-webkit-scrollbar {
        display: none;
    }

    .gp-services-cards__platform-btn {
        flex-shrink: 0;
    }

    .gp-services-cards__quick-selector {
        overflow-x: auto;
        flex-wrap: nowrap;
        margin: 0 -16px 24px;
        padding: 12px 16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        -webkit-overflow-scrolling: touch;
    }

    .gp-services-cards__quick-selector::-webkit-scrollbar {
        display: none;
    }

    .gp-services-cards__quick-btn {
        flex-shrink: 0;
    }

    .gp-services-cards__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gp-services-cards__card {
        padding: 16px;
    }

    .gp-services-cards__card-meta {
        gap: 8px;
        padding: 12px 0;
    }

    .gp-services-cards__category-header {
        padding: 12px 16px;
    }

    .gp-services-cards__category-title {
        font-size: 14px;
    }

    .gp-services-cards__pagination .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gp-services-cards__stats {
        padding: 16px 12px;
    }

    .gp-services-cards__stat-value {
        font-size: 18px;
    }

    .gp-services-cards__card-title {
        font-size: 13px;
    }

    .gp-services-cards__card-stat-value {
        font-size: 13px;
    }

    .gp-services-cards__card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gp-services-cards__card-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------------------------------
   End of Genuine Premium Sections
   ---------------------------------- */
