:root {
    /* Original blue palette with modern enhancements */
    --primary: #182EA9;       /* Azul oscuro original */
    --primary-rgb: 24, 46, 169;
    --secondary: #007bff;     /* Azul brillante original */
    --secondary-rgb: 0, 123, 255;
    --accent: #00d4ff;        /* Cyan para acentos */
    --accent-rgb: 0, 212, 255;
    --success: #28a745;       /* Verde */
    --warning: #ffc107;       /* Amarillo */
    
    /* Text colors for dark theme */
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --heading-color: #ffffff;
    
    /* Deep backgrounds */
    --bg-body: #0a0a0f;
    --bg-body-rgb: 10, 10, 15;
    --bg-card: rgba(17, 17, 27, 0.8);
    --bg-card-solid: #11111b;
    --bg-card-hover: rgba(25, 25, 40, 0.95);
    --bg-input: rgba(30, 30, 45, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    
    /* Glow effects */
    --glow-primary: 0 0 40px rgba(var(--primary-rgb), 0.4);
    --glow-secondary: 0 0 30px rgba(var(--secondary-rgb), 0.3);
    --glow-accent: 0 0 30px rgba(var(--accent-rgb), 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: 
        radial-gradient(ellipse at top left, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(var(--secondary-rgb), 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-body) 0%, #0d0d14 50%, var(--bg-body) 100%);
    background-attachment: fixed;
    font-family: 'Inter', 'Muli', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    min-height: 100vh;
}

/* Subtle animated grid pattern overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--heading-color);
}

img {
    max-width: 100%;
}

#reactions .prompt, #reactions-promotion .prompt {
    color: #fff !important;
}

/*
 * Loader
 */
.loader:before,
.loader:after,
.loader {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    font-size: 10px;
    /*margin: 80px auto;*/
    margin: 0px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em #ffffff;
    }
    40% {
        box-shadow: 0 2.5em 0 0 #ffffff;
    }
}

@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em #ffffff;
    }
    40% {
        box-shadow: 0 2.5em 0 0 #ffffff;
    }
}

/**
 * General
 */
.div-table {
    display: table;
}

.div-tr {
    display: table-row;
}

.div-td {
    display: table-cell;
}

@media (min-width: 768px) {
    .is-table-row {
        display: table;
        width: 100%;
    }

    .is-table-row [class*="col-"] {
        float: none;
        display: table-cell;
        vertical-align: middle;
    }
}

@media (max-width: 992px) {
    [class*='col-md-'] {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    [class*='col-sm-'] {
        margin-bottom: 15px;
    }
}

section {
    padding: 100px 0;
}

@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }
}

.inner-page section {
    padding: 20px 0;
}

section h3.section-subheading {
    color: var(--secondary);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 7px;
}

section h2.section-heading {
    font-size: 45px;
    margin-top: 0;
    font-weight: 400;
    margin-bottom: 55px;
}

@media (max-width: 767px) {
    section h3.section-subheading {
        font-size: 14px;
    }

    section h2.section-heading {
        font-size: 30px;
        margin-bottom: 35px;
    }
}

/**
 * Backgounds
 */
.bg-light-gray {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-body) 100%);
    color: var(--text-color);
}

.bg-darkest-gray {
    background-color: #222222;
}

/*
 * navbar
 */
.navbar-default {
    font-family: 'Montserrat', sans-serif;
    background-color: transparent; /* Transparent for initial glass effect */
    border-color: transparent;
    text-transform: uppercase;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-default .navbar-nav {
    font-size: 13px;
}

.navbar-brand {
    height: 50px;
    font-family: 'Muli', sans-serif;
}

.navbar-default .navbar-brand {
    color: #ffffff;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
    color: #dedee8;
}

.navbar-brand.logo-image {
    padding: 0 0 0 15px;
}

.navbar-brand.logo-image img {
    height: 100%;
}

.navbar-default .navbar-collapse {
    border-color: rgba(255, 255, 255, 0.02);
}

.navbar-default .navbar-toggle {
    background-color: #dedee8;
    border-color: #dedee8;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: var(--primary);
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #dedee8;
}

.navbar-default .navbar-nav > li > a {
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
}

.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
    color: #dedee8;
    outline: none;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    color: #dedee8;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a {
    border-radius: 0;
    color: #ffffff;
    background-color: #fed136;
}

.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #fec503;
}

.dropdown-menu {
    padding: 0;
    min-width: 175px;
}

.dropdown-menu > li > a {
    font-size: 11px;
    padding: 8px 10px;
    color: #505050;
    border-bottom: 1px solid #dfdfdf;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    color: #ffffff;
    background-color: var(--primary);
}

@media (min-width: 768px) {
    .navbar-default {
        background-color: transparent;
        padding: 25px 0;
        transition: all var(--transition-normal);
        border: none;
    }

    .captcha-page .navbar-default {
        padding: 10px 0;
    }

    .navbar-brand {
        height: 70px;
    }

    .navbar-default .navbar-brand {
        font-size: 1.8em;
        transition: all var(--transition-normal);
    }

    .navbar-default .navbar-nav > .active > a {
        border-radius: 25px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    }

    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus {
        background: linear-gradient(135deg, var(--secondary), var(--primary));
        color: #ffffff;
    }

    .navbar-default.affix {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 1140px;
        border-radius: 60px;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        padding: 5px 25px;
        background: rgba(10, 10, 15, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid var(--glass-border);
        z-index: 1030;
    }

    .navbar-default.affix .navbar-brand {
        font-size: 1.5em;
        height: 50px;
        line-height: 20px;
    }

    .navbar-default .navbar-nav > li > a {
        padding: 25px 15px;
        border-radius: 30px;
        margin: 0 2px;
        transition: all var(--transition-fast);
    }

    .navbar-default .navbar-nav > li > a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .navbar-default.affix .navbar-nav > li > a {
        padding: 15px 15px;
    }

    .navbar-default .navbar-nav > li.language-selector > a,
    .navbar-default.affix .navbar-nav > li.language-selector > a {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .navbar-default .navbar-nav > li > a, .navbar-default.affix .navbar-nav > li > a {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
        color: #dedee8;
        outline: none;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #ffffff;
    }
}

/**
 * Header
 */
header, .captcha-page #mainNav, .interstitial-page #mainNav, .banner-page #mainNav {
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(var(--primary-rgb), 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(var(--secondary-rgb), 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(var(--accent-rgb), 0.1) 0%, transparent 40%),
        linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, var(--bg-body) 100%),
        url(../img/header.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated glow orbs in header */
header::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none;
}

header::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.12) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: floatOrb 25s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.02); }
}

header .intro-text {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

header .intro-text .intro-lead-in {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 25px;
}

header .intro-text .intro-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    header .intro-text {
        padding-top: 115px;
        padding-bottom: 35px
    }

    header .intro-text .intro-lead-in {
        font-size: 17px;
        line-height: 17px;
        margin-bottom: 10px;
    }

    header .intro-text .intro-heading {
        font-size: 37px;
        line-height: 37px;
        margin-bottom: 20px;
    }
}

.shorten #shorten .form-group {
    position: relative;
    margin-bottom: 15px;
}

.shorten #shorten input.input-lg {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    height: 56px;
    padding: 0 70px 0 25px;
    font-size: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.shorten #shorten input.input-lg:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 
        0 0 0 3px rgba(var(--primary-rgb), 0.2),
        0 8px 30px rgba(0, 0, 0, 0.3);
    outline: none;
}

.shorten #shorten .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.shorten #shorten .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.shorten #shorten .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.shorten #shorten .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.shorten #shorten button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 12px;
    position: absolute;
    right: 6px;
    top: 6px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.shorten #shorten button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.5);
}

.shorten #shorten button:focus {
    outline: none;
}

.shorten #shorten button img {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    header .intro-text {
        padding-top: 200px;
        padding-bottom: 200px;
    }

    header .intro-text .intro-lead-in {
        font-size: 23px;
        line-height: 23px;
        margin-bottom: 25px;
    }

    .inner-page header .intro-text {
        padding-top: 165px;
        padding-bottom: 100px;
    }

    .inner-page header .intro-lead-in {
        font-size: 43px;
        line-height: 43px;
        margin-bottom: 0;
    }

    header .intro-text .intro-heading {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 40px;
    }

    .shorten #shorten input.input-lg {
        width: 470px
    }
}

@media (min-width: 992px) {
    .shorten #shorten input.input-lg {
        width: 555px
    }
}

/**
 * Steps
 */
.step {
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Gradient border glow on hover */
.step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(var(--primary-rgb), 0.15);
    border-color: transparent;
}

.step:hover::before {
    opacity: 1;
}

.step-img {
    margin-bottom: 45px;
}

.step-img i {
    filter: drop-shadow(0 4px 15px rgba(var(--primary-rgb), 0.3));
}

.step-heading {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.step-content {
    margin-bottom: 35px;
    color: var(--text-muted);
}

.step-num span {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 
        0 4px 15px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    padding: 0;
    line-height: 44px;
    font-size: 18px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.step:hover .step-num span {
    transform: scale(1.1);
    box-shadow: 
        0 6px 25px rgba(var(--primary-rgb), 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/**
 * Features
 */
.feature {
    margin-bottom: 55px;
}

.feature.last {
    margin-bottom: 0;
}

.feature-heading {
    margin: 15px 0;
    text-transform: none;
}



/**
 * stats
 */
section.stats {
    padding: 80px 0;
    color: #ffffff;
    background: 
        radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-card-solid) 0%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

section.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(rgba(var(--secondary-rgb), 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

.stat {
    font-family: 'Inter', 'Montserrat', sans-serif;
    display: inline-block;
    position: relative;
    padding: 30px;
    transition: all var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-num {
    font-weight: 800;
    font-size: 55px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.3);
}

.stat-text {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 10px;
}

.stat i {
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.4));
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    section.stats {
        padding: 50px 0;
    }

    .stat-num {
        font-size: 42px;
    }

    .stat-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/**
 * Testimonials
 */
.testimonials .content {
    font-size: 19px;
    background-color: var(--bg-card);
    padding: 90px 75px;
    border-radius: 120px 0;
}

.testimonials .content .fa-stack-2x {
    color: var(--secondary);
}

.testimonials .testimonial-image img {
    display: inline;
    border-radius: 42px 0px;
}

.testimonials .testimonial-info {
    margin-top: 35px;
}

.testimonials .testimonial-info .div-td {
    vertical-align: middle;
}

.testimonials .testimonial-data {
    padding-left: 25px;
}

.testimonials .testimonial-data h4 {
    font-size: 16px;
    margin: 0 0 3px 0;
}

@media (min-width: 768px) {
    .testimonials .owl-controls {
        position: absolute;
        right: 0;
        bottom: 38px;
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary);
}

.owl-theme .owl-dots .owl-dot span {
    background: #9fa3a7;
}

@media (max-width: 767px) {
    .testimonials .content {
        font-size: 15px;
        padding: 50px 45px;
        border-radius: 90px 0;
    }

    .testimonials .content .col-sm-1 {
        text-align: center;
    }
}

/**
 * Contact
 */
section#contact {
    background-image: url('../img/World-Map.png');
    background-position: center;
    background-repeat: no-repeat;
}

section#contact .form-group {
    margin-bottom: 25px;
}

section#contact .form-group input,
section#contact .form-group textarea {
    background-color: var(--bg-input);
    color: #fff;
    padding: 13px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

section#contact .form-group input.form-control {
    height: auto;
}

section#contact .btn-contact {
    color: #ffffff;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(0,123,255, 0.3);
    transition: all 0.3s ease;
}

section#contact .text-danger {
    color: #e74c3c;
}

@media (max-width: 767px) {
    .section-title {
        text-align: center;
    }
}

/**
 * box-captcha
 */
.box-main {
    background-color: var(--bg-card);
    border-top: none;
    border-radius: 20px;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
}

.box-main .blog-item {
    text-align: left;
    padding: 10px;
}

.box-main .blog-item .page-header {
    margin: 0 0 20px;
}

.box-main .link-details {
    padding: 0 10px;
}

.box-main .link-details .link-image {
    max-height: 200px;
}

.box-main .link-details .link-title {
    text-transform: none;
}



/**
 * interstitial-page
 */
body.interstitial-page {
    overflow: hidden;
    padding-top: 0;
}

.interstitial-page #mainNav {
    margin-bottom: 0;
}

.interstitial-page .navbar-default {
    padding: 10px 0;
}

.interstitial-page .skip-ad a {
    color: var(--primary);
    padding: 13px 52px 13px 20px;
    border-radius: 20px;
    background-image: url(../img/skip-ad.png);
    background-color: #ffffff;
    background-position: right 11px bottom 50%;
    background-repeat: no-repeat;
    background-size: 34px;
}

/**
 * Footer
 */
.blog-item .page-header h3 {
    text-transform: none;
}

/**
 * Footer
 */
footer {
    padding: 0;
    color: #ffffff;
    background: 
        radial-gradient(ellipse at bottom center, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-body) 0%, var(--bg-card-solid) 100%);
    position: relative;
}

footer a {
    color: var(--text-color);
    transition: color var(--transition-fast);
}

footer a:hover,
footer a:focus,
footer a:active,
footer a.active {
    color: var(--accent);
}

footer .payment-methods {
    padding: 50px 0 45px 0;
}

footer .payment-methods .container > img {
    display: inline-block;
    margin-right: 50px;
    filter: brightness(0.8);
    transition: all var(--transition-fast);
}

footer .payment-methods .container > img:hover {
    filter: brightness(1);
    transform: translateY(-2px);
}

footer .payment-methods .container > img:last-child {
    margin-right: 0;
}

@media (min-width: 768px) {
    footer .payment-methods {
        padding: 70px 0 65px 0;
    }
}

footer .copyright-container {
    padding: 20px 0;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 12px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

footer .copyright div {
    padding-top: 6px;
    color: var(--text-muted);
}

footer .bottom-menu ul {
    padding-top: 6px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

footer .bottom-menu ul li a {
    color: var(--text-muted);
}

footer .bottom-menu ul li a:hover {
    color: #ffffff;
}

footer .social-links ul {
    margin-bottom: 0;
}

footer .social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3), rgba(var(--secondary-rgb), 0.2));
    color: #ffffff !important;
    font-size: 16px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    margin: 0 auto;
    outline: none;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

footer .social-links ul li a:hover,
footer .social-links ul li a:focus,
footer .social-links ul li a:active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    border-color: transparent;
}

footer .bottom-menu,
footer .social-links,
footer .copyright {
    text-align: center;
}

@media (min-width: 768px) {
    footer .bottom-menu {
        text-align: left;
    }

    footer .social-links {
        text-align: center;
    }

    footer .copyright {
        text-align: right;
    }
}

/*
 * Component: Box
 * --------------
 */
.box {
    position: relative;
    border-radius: 16px;
    background: var(--bg-card);
    border: none;
    margin-bottom: 25px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.box.box-primary {
    border-top: 4px solid var(--secondary);
}

.box.box-info {
    border-top-color: #00c0ef;
}

.box.box-danger {
    border-top-color: #dd4b39;
}

.box.box-warning {
    border-top-color: #f39c12;
}

.box.box-success {
    border-top-color: #00a65a;
}

.box.box-default {
    border-top-color: #d2d6de;
}

.box.collapsed-box .box-body,
.box.collapsed-box .box-footer {
    display: none;
}

.box .nav-stacked > li {
    border-bottom: 1px solid #f4f4f4;
    margin: 0;
}

.box .nav-stacked > li:last-of-type {
    border-bottom: none;
}

.box.height-control .box-body {
    max-height: 300px;
    overflow: auto;
}

.box .border-right {
    border-right: 1px solid #f4f4f4;
}

.box .border-left {
    border-left: 1px solid #f4f4f4;
}

.box.box-solid {
    border-top: 0;
}

.box.box-solid > .box-header .btn.btn-default {
    background: transparent;
}

.box.box-solid > .box-header .btn:hover,
.box.box-solid > .box-header a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.box.box-solid.box-default {
    border: 1px solid #d2d6de;
}

.box.box-solid.box-default > .box-header {
    background: var(--bg-card);
    color: var(--text-color);
}

.box.box-solid.box-default > .box-header a,
.box.box-solid.box-default > .box-header .btn {
    color: #444444;
}

.box.box-solid.box-primary {
    border: 1px solid var(--secondary);
}

.box.box-solid.box-primary > .box-header {
    color: #ffffff;
    background: var(--secondary);
    background-color: var(--secondary);
}

.box.box-solid.box-primary > .box-header a,
.box.box-solid.box-primary > .box-header .btn {
    color: #ffffff;
}

.box.box-solid.box-info {
    border: 1px solid #00c0ef;
}

.box.box-solid.box-info > .box-header {
    color: #ffffff;
    background: #00c0ef;
    background-color: #00c0ef;
}

.box.box-solid.box-info > .box-header a,
.box.box-solid.box-info > .box-header .btn {
    color: #ffffff;
}

.box.box-solid.box-danger {
    border: 1px solid #dd4b39;
}

.box.box-solid.box-danger > .box-header {
    color: #ffffff;
    background: #dd4b39;
    background-color: #dd4b39;
}

.box.box-solid.box-danger > .box-header a,
.box.box-solid.box-danger > .box-header .btn {
    color: #ffffff;
}

.box.box-solid.box-warning {
    border: 1px solid #f39c12;
}

.box.box-solid.box-warning > .box-header {
    color: #ffffff;
    background: #f39c12;
    background-color: #f39c12;
}

.box.box-solid.box-warning > .box-header a,
.box.box-solid.box-warning > .box-header .btn {
    color: #ffffff;
}

.box.box-solid.box-success {
    border: 1px solid #00a65a;
}

.box.box-solid.box-success > .box-header {
    color: #ffffff;
    background: #00a65a;
    background-color: #00a65a;
}

.box.box-solid.box-success > .box-header a,
.box.box-solid.box-success > .box-header .btn {
    color: #ffffff;
}

.box.box-solid > .box-header > .box-tools .btn {
    border: 0;
    box-shadow: none;
}

.box.box-solid[class*='bg'] > .box-header {
    color: #fff;
}

.box .box-group > .box {
    margin-bottom: 5px;
}

.box .knob-label {
    text-align: center;
    color: #333;
    font-weight: 100;
    font-size: 12px;
    margin-bottom: 0.3em;
}

.box > .overlay,
.overlay-wrapper > .overlay,
.box > .loading-img,
.overlay-wrapper > .loading-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box .overlay,
.overlay-wrapper .overlay {
    z-index: 50;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
}

.box .overlay > .fa,
.overlay-wrapper .overlay > .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #000;
    font-size: 30px;
}

.box .overlay.dark,
.overlay-wrapper .overlay.dark {
    background: rgba(0, 0, 0, 0.5);
}

.box-header:before,
.box-body:before,
.box-footer:before,
.box-header:after,
.box-body:after,
.box-footer:after {
    content: " ";
    display: table;
}

.box-header:after,
.box-body:after,
.box-footer:after {
    clear: both;
}

.box-header {
    color: var(--heading-color);
    display: block;
    padding: 10px;
    position: relative;
}

.box-header.with-border {
    border-bottom: 1px solid var(--border-color);
}

.collapsed-box .box-header.with-border {
    border-bottom: none;
}

.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
    display: inline-block;
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion {
    margin-right: 5px;
}

.box-header > .box-tools {
    position: absolute;
    right: 10px;
    top: 5px;
}

.box-header > .box-tools [data-toggle="tooltip"] {
    position: relative;
}

.box-header > .box-tools.pull-right .dropdown-menu {
    right: 0;
    left: auto;
}

.box-header > .box-tools .dropdown-menu > li > a {
    color: #444 !important;
}

.btn-box-tool {
    padding: 5px;
    font-size: 12px;
    background: transparent;
    color: #97a0b3;
}

.open .btn-box-tool,
.btn-box-tool:hover {
    color: #606c84;
}

.btn-box-tool.btn:active {
    box-shadow: none;
}

.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

.no-header .box-body {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.box-body > .table {
    margin-bottom: 0;
}

.box-body .fc {
    margin-top: 5px;
}

.box-body .full-width-chart {
    margin: -19px;
}

.box-body.no-padding .full-width-chart {
    margin: -9px;
}

.box-body .box-pane {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 3px;
}

.box-body .box-pane-right {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
}

.box-footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top: 1px solid var(--border-color);
    padding: 10px;
    background-color: var(--bg-card);
}


/**
 * Blog Grid & Cards
 */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

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

.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
    border: 1px solid var(--glass-border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 48px;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-family: 'Montserrat', sans-serif; /* Explicit font */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Montserrat', sans-serif; /* Explicit font */
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: none;
}

.blog-card-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-family: 'Inter', 'Muli', -apple-system, BlinkMacSystemFont, sans-serif; /* Full font stack */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    font-family: 'Inter', 'Muli', -apple-system, BlinkMacSystemFont, sans-serif;
}

.blog-card-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-card-date i {
    margin-right: 6px;
}

.blog-social-share {
    display: flex;
    gap: 8px;
}

.blog-social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.blog-social-share a:hover {
    transform: scale(1.1);
}

.blog-social-share a.facebook:hover {
    background: #3b5998;
    color: white;
}

.blog-social-share a.twitter:hover {
    background: #1da1f2;
    color: white;
}

.blog-social-share a.pinterest:hover {
    background: #cb2027;
    color: white;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif; /* Explicit font */
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--secondary);
    text-decoration: none;
}

/**
 * Blog Post View
 */
.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.blog-post-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.blog-post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-transform: none;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--text-muted);
}

.blog-post-meta i {
    margin-right: 8px;
    color: var(--primary);
}

.blog-post-thumbnail {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.blog-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    color: var(--text-color);

}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: var(--heading-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}


.blog-post-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-post-content a {
    color: var(--primary);
}

.blog-post-content a:hover {
    color: var(--secondary);
}

.blog-post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.blog-share-section {
    text-align: center;
}

.blog-share-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.blog-share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.blog-share-buttons a:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
}

.blog-share-buttons a.facebook {
    background: #3b5998;
}

.blog-share-buttons a.twitter {
    background: #1da1f2;
}

.blog-share-buttons a.pinterest {
    background: #cb2027;
}

.blog-share-buttons a.whatsapp {
    background: #25d366;
}

.blog-share-buttons a.telegram {
    background: #0088cc;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.blog-back-link:hover {
    gap: 12px;
    color: var(--secondary);
    text-decoration: none;
}

@media (max-width: 767px) {
    .blog-post-title {
        font-size: 1.6rem;
    }

    .blog-post-content {
        padding: 25px;
    }

    .blog-post-meta {
        gap: 15px;
    }
}

