/*
 * QA Dominicana — Main Stylesheet
 * Sections:
 *   1. Base & Reset
 *   2. Skip Link & Accessibility
 *   3. Slideshow (Home)
 *   4. Navigation Bar
 *   5. Hamburger Button
 *   6. Nav Backdrop & Slide-out Menu
 *   7. Hero (Home)
 *   8. Timer / Countdown
 *   9. About Section
 *  10. Events & Tabs
 *  11. Staff / Swiper
 *  12. Blog
 *  13. Contact
 *  14. Footer
 *  15. Inner Page Headers
 */

@import url('tokens.css');

/* ── 1. Base & Reset ── */

/* Smooth theme transitions */
*, *::before, *::after {
    transition:
        background-color 0.28s ease,
        color            0.28s ease,
        border-color     0.28s ease,
        box-shadow       0.28s ease;
}

/* But don't slow layout-affecting or transform-based transitions */
.navigation-menu,
.nav-backdrop,
.hamburger-bar,
.nav-close-btn,
.nav-menu-footer a,
.lang-toggle,
.theme-toggle,
.btn1,
.btn2,
.post-content a {
    transition:
        background-color 0.25s ease,
        color            0.25s ease,
        border-color     0.25s ease,
        transform        0.25s ease,
        opacity          0.25s ease;
}

html, body {
    font-family: var(--font-main), sans-serif;
    font-weight: bold;
    min-height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: var(--color-bg);
    color: var(--color-text);
}

:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

header {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #111;
}

/* ── 2. Skip Link & Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ── 3. Slideshow (Home) ── */
.slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenburns 12s ease-in-out infinite;
    will-change: transform, opacity;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

@keyframes kenburns {
    0%    { opacity: 0; transform: scale(1); }
    8%    { opacity: 1; }
    25%   { opacity: 1; transform: scale(1.1); }
    33%   { opacity: 0; transform: scale(1.1); }
    100%  { opacity: 0; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .slide { animation: none; }
    .slide:nth-child(1) { opacity: 1; }
}


.header .container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 60px;
    margin: 0px auto;
}

/* ── 4. Navigation Bar ── */
.wrapper-nav {
    width: 100%;
    margin: 0 auto;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.wrapper-nav.nav-sticky {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.wrapper-nav.nav-sticky #nav {
    margin-top: 0;
}

#logo {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

#logo span {
    color: var(--color-primary);
}

/* ── 5. Hamburger Button ── */
.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navigation-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 1001;
}

.navigation-button:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ── Language toggle ── */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 4px 6px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-option {
    font-family: var(--font-main), sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.35);
    padding: 2px 7px;
    border-radius: 14px;
    transition: color 0.2s ease, background 0.2s ease;
    user-select: none;
}

.lang-option.lang-active {
    color: #fff;
    background: var(--color-primary);
}

/* ── Theme toggle ── */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* In the light-themed nav area (index home hero has dark nav, so keep white) */
/* When not on dark bg (e.g., sticky nav on inner pages), adjust contrast */
.nav-sticky .theme-toggle {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease;
    transform-origin: center;
}

.navigation-button.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navigation-button.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navigation-button.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── 6. Nav Backdrop & Slide-out Menu ── */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Slide-out panel */
.navigation-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    /* glass morphism dark */
    background: rgba(10, 10, 18, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    /* left accent gradient strip */
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -16px 0 60px rgba(0, 0, 0, 0.7), inset 1px 0 0 rgba(255,255,255,0.04);
    /* spring slide + scale */
    transform: translateX(100%) scale(0.97);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.42s ease;
    opacity: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* colored accent strip on left edge */
    background-image: linear-gradient(180deg,
        rgba(29, 78, 216, 0.10) 0%,
        rgba(29, 78, 216, 0.03) 30%,
        transparent 60%);
}

.navigation-menu.active {
    transform: translateX(0) scale(1);
    opacity: 1;
}

/* Menu header */
.nav-menu-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-menu-header .nav-menu-logo {
    flex: 1;
}

.nav-menu-logo {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.nav-menu-logo .logo-qa {
    color: var(--color-accent);
}

.nav-menu-logo .logo-rest {
    color: rgba(255, 255, 255, 0.85);
}

/* Circle close button */
.nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.nav-close-btn:hover {
    background: rgba(124, 29, 18, 0.18);
    border-color: rgba(124, 29, 18, 0.35);
    color: var(--color-accent);
    transform: rotate(90deg);
}

/* Nav links */
.nav-menu-links {
    flex: 1;
    padding: 1rem 1.25rem;
}

.nav-menu-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-menu-links ul li {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navigation-menu.active .nav-menu-links ul li {
    opacity: 1;
    transform: translateY(0);
}

.navigation-menu.active .nav-menu-links ul li:nth-child(1) { transition-delay: 0.08s; }
.navigation-menu.active .nav-menu-links ul li:nth-child(2) { transition-delay: 0.13s; }
.navigation-menu.active .nav-menu-links ul li:nth-child(3) { transition-delay: 0.18s; }
.navigation-menu.active .nav-menu-links ul li:nth-child(4) { transition-delay: 0.23s; }
.navigation-menu.active .nav-menu-links ul li:nth-child(5) { transition-delay: 0.28s; }
.navigation-menu.active .nav-menu-links ul li:nth-child(6) { transition-delay: 0.33s; }

.nav-menu-links ul li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.22s ease, background 0.22s ease;
}

.nav-menu-links ul li a i {
    width: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.22s ease, transform 0.22s ease;
    text-align: center;
    flex-shrink: 0;
}

.nav-menu-links ul li a:hover,
.nav-menu-links ul li a:focus-visible,
.nav-menu-links ul li a.nav-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-menu-links ul li a:hover i,
.nav-menu-links ul li a:focus-visible i {
    color: var(--color-primary);
    transform: scale(1.15);
}

.nav-menu-links ul li a.nav-active {
    background: rgba(29, 78, 216, 0.12);
    color: var(--color-primary);
}

.nav-menu-links ul li a.nav-active i {
    color: var(--color-primary);
}

/* Menu footer social icons */
.nav-menu-footer {
    display: flex;
    gap: 0.65rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-menu-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .navigation-menu,
    .nav-backdrop,
    .hamburger-bar,
    .nav-menu-links ul li,
    .nav-close-btn,
    .nav-menu-footer a {
        transition: none;
    }
}
/* ── 7. Hero (Home) ── */
.hero {
    width: min(88%, 960px);
    margin: 0 auto;
    padding-top: 180px;
    padding-bottom: 80px;
}

.hero h1 {
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
    font-weight: 400;
}

.hero span {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    letter-spacing: -0.01em;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
}

.button {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.btn1 {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(124, 29, 18, 0.35);
}

.btn1:hover {
    background: #9b2918;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 29, 18, 0.45);
    text-decoration: none;
    color: #ffffff;
}

.btn2 {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn2:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
}

nav {
    height: 60px;
    width: 80%;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ── 8. Timer / Countdown ── */
.timer {
    padding: 40px 0;
    background: var(--color-dark);
    color: #fff;
    text-align: center;
    border-top: 3px solid var(--color-accent);
}
.timer-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}
/* ── 9. About Section ── */
section.about {
    height: 600px;
    padding: 100px 0 20px;
    background: var(--color-bg);
}

section.about h2{
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--color-primary);
    text-transform: uppercase;
}

section.about p {
    color: var(--color-text-dark);
}

section.about .awesome h2{
    font-size: 2.3rem;
    margin-bottom: 5%;
}
section.about .awesome p{
    margin-bottom: 7%;
    line-height: 1.8;
}
section.about .awesome p:nth-of-type(1){
    color: var(--color-text-dark);
}

section.about .awesome p:nth-of-type(2){
    color: var(--color-text-muted);
}

section.about .awesome p:nth-of-type(3) a {
    border-radius: 4px;
    background-color: var(--color-primary);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 15px;
    padding: 15px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px 0 5px;
    display: inline-block;
}

section.about .awesome p:nth-of-type(3) a span{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
section.about .awesome p:nth-of-type(3) a span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
section.about .awesome p:nth-of-type(3) a:hover span{
    padding-right: 25px;
}
section.about .awesome p:nth-of-type(3) a:hover span:after {
    opacity: 1;
    right: 0;
}

/* Section about creative */
section.about .creative p,
section.about .office p{
    color: var(--color-text-muted);
    font-size: 13px;
}
section.about .creative > div,
section.about .office > div {
    overflow: hidden;
}
section.about .creative img,
section.about .office img {
    transition: all 5s;
}
section.about .creative img:hover,
section.about .office img:hover{
    transform: scale(1.2) rotate(7deg);
}


/* ── Página Eventos — fondo global ── */
body.pg-eventos {
    min-height: 100vh;
    background-color: #0a0010;
    background-image: url('../assets/bg-eventos.png');
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

body.pg-eventos .page-header {
    background: transparent;
}

/* ── 10. Events & Tabs ── */
section.events {
    padding: 0 0 60px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

section.events::before,
section.events::after {
    content: none;
}

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

section.events > .container {
    max-width: 960px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 1;
}

section.events div > h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 5%;
    color: #fff;
    text-transform: uppercase;
}

/* Style the tab */
.tab {
    overflow: visible;
    justify-content: center;
    margin-bottom: 8px;
}

/* Columnas del tab en flex para que el botón se estire */
.tab .col-md-4 {
    display: flex;
    margin-bottom: 16px;
}

/* Style the buttons inside the tab */
.tab button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
    padding: 28px 20px;
    width: 100%;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    font-size: 17px;
    border-radius: 12px;
    font-weight: bold;
    background: rgba(29, 78, 216, 0.22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.tab div button h2 {
    margin: 0;
    padding: 0;
    font-size: 1.55rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.tab div button p {
    margin: 6px 0 0 0;
    padding: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.event-pending {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 210, 100, 0.85);
    letter-spacing: 0.02em;
}

.tab-notice {
    margin: 8px 0 12px;
    padding: 10px 14px;
    background: rgba(255, 200, 60, 0.1);
    border-left: 3px solid rgba(255, 200, 60, 0.6);
    border-radius: 0 8px 8px 0;
    color: rgba(255, 220, 100, 0.9);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
}

.tab-notice i {
    margin-right: 6px;
    color: rgba(255, 200, 60, 0.8);
}

.tab button:hover {
    background: rgba(29, 78, 216, 0.38);
    border-color: rgba(29, 78, 216, 0.6);
    transform: translateY(-2px);
}

.tab button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
}

/* Style the tab content */
.tabcontent {
    display: none;
    margin-top: 32px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tabcontent .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.tabcontent h2 {
    color: #fff;
    text-align: left !important;
    padding-bottom: 0 !important;
    font-size: 1.75rem !important;
}

.tabcontent .col-md-6 img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 320px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#evento1 {
    display: block;
}

.tab-title {
    padding-left: 7%;
    color: rgba(255, 255, 255, 0.75);
}

.tab-title i {
    padding-right: 1%;
    color: var(--color-primary);
}

.tab-text {
    padding-left: 7%;
    text-align: justify;
    padding-top: 3%;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}


/* ── 11. Staff / Swiper ── */
#swiper{
    background: var(--color-bg-light);
    height: 700px;
}
#swiper  h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-top: 4%;
    text-transform: uppercase;
}
.co-founder {
    text-align: center;
    font-size: 17px;
    font-style: italic;
    color: gray;
}
.swiper {
    width: 100%;
    margin-top: 1%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 436px;
    background: var(--color-dark);
}
.swiper-slide .boximg{
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.swiper-slide .boximg img{
    width: 100%;
}
.swiper-slide .details{
    box-sizing: border-box;
    color: #fff;
}
.swiper-slide .details h3{
    font-size: 20px;
    padding: 20px;
    margin: 0;
    line-height: 30px;
    text-align: center;
}
.swiper-slide .details h3 span{
    font-size: 16px;
    color: var(--color-accent);
}

/* ── 12. Blog ── */
#blog{
    background: var(--color-bg-light);
    padding: 25px 0 40px;
}
#blog .section_subtitle{
    color: var(--color-text-muted);
}
#blog h2{
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-transform: uppercase;
}
 .post-wrapper{
    background: var(--color-surface);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.post-wrapper:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transform: translateY(-3px);
}
 .post-img{
    position: relative;
}
 .post-img:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s;
}
.post-wrapper:hover .post-img:before{
    opacity: 0.5;
    transform: scale(1);
}
.post-date{
    position: absolute;
    left: 0;
    top: 0;
    height: 70px;
    background: var(--color-primary) none repeat scroll 0 0;
    padding: 10px;
}
.post-date span{
    display: block;
    color: white;
    font-weight: 700;
    font-size: 16px;
}
.post-content{
    padding: 20px;
    margin-left: 3px;
}
.post-content i{
    font-size: 18px;
    display: inline-block;
}
.post-content i{
    padding: 10px 10px;
    cursor: pointer;
}
.post-content .fa-facebook{
    color: #3b5995;
}
.post-content .fa-instagram{
    color: #517fa4;
}
.post-content .fa-linkedin{
    color: #0077b5;
}
.post-content .fa-youtube{
    color: var(--color-accent);
}
.post-content .fa-whatsapp{
    color: #34af23;
}
.post-content p{
    margin-bottom: 15px;
    text-align: justify;
    margin-top: 20px;
    color: var(--color-text-dark);
}
.post-content a{
    font-size: 14px;
    background: var(--color-primary);
    padding: 10px 20px;
    color: white;
    transition: all 0.5s ease-in-out;
}
.post-content a:hover{
    font-size: 14px;
    border: 1px solid var(--color-accent);
    text-decoration: none;
    border-radius: 4px;
    background: transparent;
    color: var(--color-accent);
}

/* ── 13. Contact ── */
.contact{
    padding: 25px 0 40px;
}
.contact .contact-title{
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom:  25px;
}

.contact button{
    margin-top: 20px;
    background: var(--color-primary);
}
.contact button:hover{
    opacity: 0.8;
    background: var(--color-primary);
    
}

/* ── 14. Footer ── */
.footer {
    background: var(--color-dark);
    padding: 56px 0 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.7;
    border-top: 3px solid var(--color-accent);
}
.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.18s ease;
}
.footer a:hover {
    color: #ffffff;
}
.footer h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}
.footer .qa-title {
    color: var(--color-primary);
}
.footer .qa-title span{
    color: var(--color-accent);
}
.qa-info{
    margin-bottom: 15px;
}
.qa-info span{
    display: block;
}
.footer .social-media i{ 
    padding-left: 10px;
}
.links-quick li{
    font-size: 13px;
}
.newsletter button{
    background: var(--color-primary);
}
.newsletter button:hover{
    opacity: 0.8;
    background: var(--color-primary);
}

/* ── 15. Inner Page Headers ── */
.page-header {
    background: var(--color-dark);
    height: auto;
}

.page-header .wrapper-nav.nav-sticky {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.85);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.page-header #nav {
    height: 64px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header #logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.page-title-bar {
    text-align: center;
    padding: 3.5rem 1rem 3rem;
    color: #fff;
}

.page-title-bar h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.page-title-bar p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}