/*
Theme Name: Voy a Holanda
Theme URI: https://voyaholanda.com.ar
Author: Voy a Holanda
Description: Tema ultra-profesional y optimizado para SEO. Diseño corporativo, limpio y de alto rendimiento.
Version: 2.0.0
Text Domain: voy-theme
*/

/* ================================================================
   DESIGN SYSTEM & VARIABLES
================================================================ */
:root {
    --color-orange: #f98933;
    --color-orange-dark: #e07624;
    --color-orange-light: rgba(249, 137, 51, 0.12);
    --color-dark-blue: #20458b;
    --color-dark-blue-light: rgba(32, 69, 139, 0.08);
    --color-graphite: #323248;
    --color-graphite-deep: #1e1e30;
    --color-white: #ffffff;
    --color-off-white: #f8f9fc;
    --color-light-gray: #f1f4f9;
    --color-border: #e2e8f0;
    --color-text: #2d3748;
    --color-text-muted: #718096;
    --color-text-light: rgba(255, 255, 255, 0.85);

    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-orange: 0 6px 24px rgba(249, 137, 51, 0.35);
    --shadow-blue: 0 6px 24px rgba(32, 69, 139, 0.25);

    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    --header-height: 76px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    font-weight: 700;
    color: var(--color-graphite);
}

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

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

ul,
ol {
    list-style: none;
}

/* ================================================================
   UTILITY CLASSES
================================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--wide {
    max-width: 1400px;
}

.section-pad {
    padding: 6rem 0;
}

.section-pad--lg {
    padding: 8rem 0;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 137, 51, 0.45);
    color: var(--color-white);
}

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

/* Secondary / Outline Button */
.btn-outline {
    background: transparent;
    color: var(--color-dark-blue);
    border-color: var(--color-dark-blue);
}

.btn-outline:hover {
    background: var(--color-dark-blue);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Ghost White Button (for dark sections) */
.btn-ghost-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.btn-ghost-white:hover {
    background: var(--color-white);
    color: var(--color-graphite);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* ================================================================
   SECTION HEADING COMPONENT
================================================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-orange-light);
    color: #af4f04;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--color-graphite);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title--light {
    color: var(--color-white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 640px;
    line-height: 1.7;
}

.section-desc--light {
    color: var(--color-text-light);
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-dark-blue));
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* ================================================================
   HEADER
================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background-color: #1a2d54;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.site-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-wordmark {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.logo-wordmark span {
    color: var(--color-orange);
}

.logo-tagline {
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.site-header .logo-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Customizer Logo Styles */
.site-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo {
    max-height: 52px;
    width: 224px;
    display: block;
    object-fit: contain;
}

.logo-tagline--custom {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    margin-top: -2px;
}

.logo-tagline--footer {
    color: rgba(255, 255, 255, 0.45);
}

.footer-logo-container .custom-logo {
    max-height: 46px;
}

/* Desktop Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.site-nav .menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.site-nav .menu>li {
    position: relative;
}

.site-nav .menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.site-nav .menu>li>a:hover,
.site-nav .menu>li.current_page_item>a,
.site-nav .menu>li.current-menu-item>a {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

/* Nav CTA Button */
.nav-cta {
    margin-left: 1.5rem;
}

/* Header Social */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: 1.5rem;
}

.header-social a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.header-social a:hover {
    color: var(--color-orange);
    transform: translateY(-2px);
}

/* Mega Menu Desktop */
.menu-item-has-mega {
    position: static !important;
}

.nav-arrow {
    font-size: 0.62rem;
    margin-left: 0.25rem;
    opacity: 0.75;
    transition: var(--transition-fast);
}

.menu-item-has-mega:hover .nav-arrow {
    transform: rotate(180deg);
}

.site-nav .mega-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-bottom: 4px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 999;
    padding: 2.5rem 0;
}

.site-nav .menu-item-has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mega-menu-category {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--color-border);
}

.mega-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-orange-light);
    color: var(--color-orange);
    flex-shrink: 0;
}

.mega-category-icon .nav-svg-icon {
    width: 24px;
    height: 24px;
}

.mega-menu-category h4 {
    font-size: 1.1rem;
    color: var(--color-graphite);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.mega-menu-category p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.mega-menu-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.mega-menu-links li a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    background: transparent;
    border-left: none;
}

.mega-menu-links li a:hover {
    background: var(--color-off-white);
    padding-left: 1.1rem;
}

.mega-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-light-gray);
    color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.mega-link-icon .nav-svg-icon {
    width: 16px;
    height: 16px;
}

.mega-menu-links li a:hover .mega-link-icon {
    background: var(--color-orange-light);
    color: var(--color-orange);
}

/* Navigation SVG Icon Styles */
.nav-svg-icon {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: inline-block;
    vertical-align: middle;
    transition: var(--transition-fast);
}

.mega-menu-links li a strong {
    display: block;
    font-size: 0.88rem;
    color: var(--color-graphite);
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.mega-menu-links li a span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Dropdown */
.site-nav .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
    padding: 0.5rem 0;
}

.site-nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Nested sub-sub-menu */
.site-nav .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.site-nav .sub-menu li {
    position: relative;
}

.site-nav .sub-menu li>a {
    display: flex;
    align-items: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.site-nav .sub-menu li>a:hover {
    background: var(--color-off-white);
    color: var(--color-orange);
    border-left-color: var(--color-orange);
    padding-left: 1.5rem;
}

.site-nav .sub-menu .menu-item-has-children>a::after {
    content: '›';
    border: none;
    margin-left: auto;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ================================================================
   HAMBURGER (mobile)
================================================================ */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 7px;
    line-height: 0;
}

.hamburger .bar {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--color-white);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.is-active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ================================================================
   MOBILE NAV OVERLAY
================================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-graphite-deep);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-height) + 2rem) 2rem 3rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav .menu>li>a {
    display: block;
    padding: 1rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav .menu>li>a:hover {
    color: var(--color-orange);
}

.mobile-nav .sub-menu {
    display: none;
    padding: 0.5rem 1.2rem 0.5rem;
}

.mobile-nav .menu-item-has-children.is-open>.sub-menu {
    display: block;
}

/* Intermediate Category Headers (Particulares / Empresariales) */
.mobile-nav>.menu>li>.sub-menu>.menu-item-has-children>a {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-white) !important;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    margin-top: 0.6rem;
    margin-bottom: 0.3rem;
    border-bottom: none !important;
}

.mobile-nav>.menu>li>.sub-menu>.menu-item-has-children>a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-nav .mobile-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 137, 51, 0.15);
    color: var(--color-orange);
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    margin-right: 0.6rem;
}

.mobile-nav .mobile-cat-icon .nav-svg-icon {
    margin-right: 0 !important;
    color: var(--color-orange) !important;
    width: 16px !important;
    height: 16px !important;
}

.mobile-nav .sub-menu li a {
    display: flex;
    align-items: center;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav .sub-menu li a:hover {
    color: var(--color-orange);
}

.mobile-nav .sub-menu .sub-menu {
    padding-left: 1.2rem;
}

.mobile-nav .nav-svg-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.6rem;
    color: var(--color-orange);
    flex-shrink: 0;
}

.mobile-nav .sub-menu li a .nav-svg-icon {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.mobile-nav .sub-menu li a:hover .nav-svg-icon {
    color: var(--color-orange);
}

.mobile-nav-cta {
    margin-top: 2rem;
}

.mobile-nav-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 2.5rem;
}

.mobile-nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.mobile-nav-socials a:hover {
    background: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    will-change: transform;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    /* Allow extra vertical space for parallax movement */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 0;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-slide.slide-1 {
    background-image: url('../../uploads/2025/07/voyaholanda17-e1751491271275.jpg');
}

.hero-bg-slide.slide-2 {
    background-image: url('../../uploads/2025/07/4545458.jpg');
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: calc(var(--header-height));
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fffad3;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #fffad3;
    border-radius: 2px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero h1 em {
    font-style: normal;
    color: #fffad3;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-white);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1.5px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ================================================================
   INNER PAGE HERO (for sub-pages)
================================================================ */
.page-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center -70px;
    background-repeat: no-repeat;
    padding-bottom: 3.5rem;
    padding-top: var(--header-height);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(32, 69, 139, 0.18) 0%, rgba(50, 50, 72, 0.9) 100%)
}

/* Single Post Hero Overrides */
.single-post .page-hero-overlay {
    background: linear-gradient(to bottom, rgba(32, 69, 139, 0) 0%, rgba(50, 50, 72, 0.9) 100%) !important;
}

@media (min-width: 961px) {
    .single-post .page-hero {
        min-height: 640px;
        padding-bottom: 5rem;
    }
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
    color: var(--color-orange);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.35);
}

/* ================================================================
   SERVICES CARDS (Home)
================================================================ */
.services-home {
    background: var(--color-off-white);
}

.services-home .section-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-home {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-orange);
}

.service-card-home:nth-child(2)::after {
    background: var(--color-dark-blue);
}

.service-card-home:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 137, 51, 0.15);
}

.service-card-home:nth-child(2):hover {
    border-color: rgba(32, 69, 139, 0.15);
}

.service-card-top {
    padding: 3rem 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--color-orange-light);
    color: var(--color-orange) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-home:nth-child(2) .service-icon-wrap {
    background: var(--color-dark-blue-light);
    color: var(--color-dark-blue) !important;
}

.service-icon-wrap svg {
    width: 26px !important;
    height: 26px !important;
    stroke: currentColor !important;
    fill: none !important;
}

.service-card-body {
    padding: 1.5rem 3rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-card-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

}

.service-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-graphite);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--color-off-white);
    transition: var(--transition-fast);
}

.service-link-item::after {
    content: '→';
    color: var(--color-orange);
    transition: transform 0.2s ease;
}

.service-card-home:nth-child(2) .service-link-item::after {
    color: var(--color-dark-blue);
}

.service-link-item:hover {
    color: var(--color-white);
    background: var(--color-orange);
}

.service-card-home:nth-child(2) .service-link-item:hover {
    background: var(--color-dark-blue);
}

.service-link-item:hover::after {
    transform: translateX(4px);
    color: var(--color-white);
}

/* ================================================================
   STATS / TRUST BAR
================================================================ */
.stats-bar {
    background: var(--color-graphite);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================================================
   TEAM SECTION
================================================================ */
.team-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-graphite-deep);
    background-size: cover;
    background-position: center;
}

.team-section .section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(50, 50, 72, 0.96) 0%, rgba(32, 69, 139, 0.95) 100%);
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    max-width: 440px;
    width: 100%;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-orange);
    padding: 3px;
    background: var(--color-graphite);
}

.team-name {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.team-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

/* ================================================================
   WHY US / FEATURES
================================================================ */
.why-us {
    background: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-dark-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.why-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--color-graphite);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ================================================================
   CTA SECTION
================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-graphite) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 137, 51, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-section .section-title--light {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

/* ================================================================
   CONTENT PAGE (inner pages)
================================================================ */
.page-content {
    position: relative;
    background: var(--color-white);
    padding: 5rem 0;
    overflow: hidden;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../uploads/2025/07/voyaholanda15-2048x1117.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

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

.page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
}

.page-main h2 {
    font-size: 1.9rem;
    color: var(--color-graphite);
    margin: 2rem 0 1rem;
}

.page-main h3 {
    font-size: 1.4rem;
    color: var(--color-dark-blue);
    margin: 1.5rem 0 0.75rem;
}

.page-main p {
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.page-main ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.page-main ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.page-main ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 700;
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.sidebar-card,
.sidebar-widget {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.8rem;
}

.sidebar-card h4,
.sidebar-widget .widget-title {
    font-size: 1.02rem;
    color: var(--color-graphite);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Sidebar Search Widget styling */
.sidebar-widget .search-form {
    display: flex;
    position: relative;
    width: 100%;
}

.sidebar-widget .search-field {
    width: 100%;
    padding: 0.8rem 4rem 0.8rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    font-size: 0.9rem;
    color: var(--color-text);
    transition: var(--transition-fast);
    outline: none;
}

.sidebar-widget .search-field:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(249, 137, 51, 0.1);
}

.sidebar-widget .search-submit {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    border: none;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-widget .search-submit:hover {
    background: var(--color-dark-blue);
}

/* Sidebar Categories Widget styling */
.sidebar-widget ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-widget ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 0.6rem;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-widget ul li a {
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition-fast);
}

.sidebar-widget ul li a:hover {
    color: var(--color-orange);
    padding-left: 4px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-graphite));
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.sidebar-cta h4 {
    font-size: 1.15rem;
    color: var(--color-white);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.sidebar-nav-list li {
    border-bottom: 1px solid var(--color-border);
}

.sidebar-nav-list li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.sidebar-nav-list li a::before {
    content: '›';
    color: var(--color-orange);
    font-size: 1.1rem;
}

.sidebar-nav-list li a:hover {
    color: var(--color-orange);
    padding-left: 0.3rem;
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section {
    background: var(--color-off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--color-orange-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail p {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--color-orange);
}

/* Form */
.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form-wrap h3 {
    font-size: 1.35rem;
    margin-bottom: 1.75rem;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1.25rem;
}

.wpcf7 input:not([type=submit]),
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-off-white);
    transition: var(--transition-fast);
    outline: none;
}

.wpcf7 input:not([type=submit]):focus,
.wpcf7 textarea:focus {
    border-color: var(--color-dark-blue);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(32, 69, 139, 0.1);
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 input[type=submit] {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
    color: var(--color-white);
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.wpcf7 input[type=submit]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 137, 51, 0.45);
}

/* ================================================================
   FAQ SECTION
================================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.is-open {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-graphite);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-dark-blue);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-orange);
    font-size: 1.1rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.is-open .faq-icon {
    background: var(--color-orange);
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.info-card-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card-box:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 137, 51, 0.25);
}

.info-card-box .box-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdfbf7;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(249, 137, 51, 0.1);
}

/* ================================================================
   LINKS PAGE
================================================================ */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.link-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.link-card:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.link-card h4 {
    font-size: 1rem;
    color: var(--color-graphite);
    margin-bottom: 0.5rem;
}

.link-card a {
    color: var(--color-dark-blue);
    font-size: 0.9rem;
    font-weight: 500;
}

.link-card a:hover {
    color: var(--color-orange);
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
    background: #1a2d54;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    padding-top: 1px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-dark-blue) 0%, var(--color-orange) 50%, var(--color-dark-blue) 100%);
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}

.footer-main {
    padding: 5rem 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo-wordmark {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--color-orange);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}

.footer-developer {
    font-size: 0.75rem !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.45) !important;
}

.footer-developer a {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    font-weight: 400 !important;
    transition: var(--transition-fast);
}

.footer-developer a:hover {
    color: var(--color-orange) !important;
    text-decoration: underline;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ================================================================
   ABOUT / QUIÉNES SOMOS SECTION
================================================================ */
.about-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.about-profile-card {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.profile-avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-orange);
    padding: 3px;
    background: var(--color-white);
}

.profile-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-meta h3 {
    font-size: 1.4rem;
    color: var(--color-graphite);
    margin-bottom: 0.25rem;
}

.profile-role {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-orange);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.profile-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    background: var(--color-orange-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.profile-tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.profile-contact-list {
    text-align: left;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}

.contact-item a {
    font-size: 0.92rem;
    color: var(--color-dark-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-orange);
}

.profile-socials .linkedin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #0077b5;
    color: var(--color-white) !important;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.profile-socials .linkedin-btn:hover {
    background: #005987;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
}

.profile-socials .linkedin-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
}

.about-content-bio {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bio-intro h2 {
    font-size: 2.2rem;
    color: var(--color-graphite);
    margin-bottom: 1.25rem;
}

.bio-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-dark-blue);
    font-weight: 500;
}

.bio-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.bio-block-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.bio-block-card:hover {
    border-color: rgba(249, 137, 51, 0.2);
    box-shadow: var(--shadow-sm);
}

.bio-block-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--color-orange-light);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.bio-block-text h3 {
    font-size: 1.1rem;
    color: var(--color-graphite);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bio-block-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

.bio-additional-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-orange-light);
    border-left: 4px solid var(--color-orange);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bio-additional-note svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.bio-additional-note p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-graphite);
}

.about-cta-banner {
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-graphite));
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--color-white);
}

.about-cta-banner h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.about-cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-profile-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ================================================================
   BLOG / NEWS SECTION
================================================================ */
.blog-section,
.single-post-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 137, 51, 0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    background: var(--color-light-gray);
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-category a {
    color: var(--color-orange);
}

.blog-meta-category a:hover {
    color: var(--color-dark-blue);
    text-decoration: underline;
}

.blog-card-title {
    font-size: 1.4rem;
    color: var(--color-graphite);
    margin-bottom: 0.85rem;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--color-graphite);
    transition: var(--transition-fast);
}

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

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-card-excerpt p {
    margin: 0;
}

.blog-card-more {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.blog-card-more:hover {
    color: var(--color-orange);
}

/* Pagination */
.pagination-wrap {
    margin-top: 3.5rem;
}

.pagination-wrap ul {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.pagination-wrap ul li span,
.pagination-wrap ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-graphite);
    transition: var(--transition-fast);
}

.pagination-wrap ul li span.current {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.pagination-wrap ul li a:hover {
    background: var(--color-off-white);
    border-color: var(--color-orange);
    color: var(--color-orange);
}

/* Single Post details */
.single-post-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 3.5rem;
}

.post-header-meta {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.post-meta-author strong {
    color: var(--color-graphite);
    font-weight: 600;
}

.post-entry-content {
    line-height: 1.8;
    color: var(--color-text);
    font-size: 1.05rem;
}

.post-entry-content p {
    margin-bottom: 1.8rem;
}

.post-entry-content h2,
.post-entry-content h3 {
    color: var(--color-graphite);
    margin: 2.5rem 0 1.25rem;
}

.post-entry-content h2 {
    font-size: 1.6rem;
}

.post-entry-content h3 {
    font-size: 1.3rem;
}

.post-entry-content ul,
.post-entry-content ol {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}

.post-entry-content ul {
    list-style: disc;
}

.post-entry-content ol {
    list-style: decimal;
}

.post-entry-content li {
    margin-bottom: 0.5rem;
}

.post-entry-content blockquote {
    border-left: 4px solid var(--color-orange);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.post-footer-tags {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.post-footer-tags a {
    background: var(--color-off-white);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.85rem;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.post-footer-tags a:hover {
    background: var(--color-orange-light);
    color: var(--color-orange);
    border-color: var(--color-orange);
}

.post-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Responsive Videos and YouTube embeds */
.post-entry-content iframe,
.post-entry-content embed,
.post-entry-content object,
.post-entry-content video,
.wp-block-embed iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.wp-block-embed {
    margin-bottom: 1.8rem;
    width: 100%;
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.related-title {
    font-size: 1.35rem;
    color: var(--color-graphite);
    margin-bottom: 2rem;
    font-weight: 700;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post-card {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(249, 137, 51, 0.15);
}

.related-post-image {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.related-post-date {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.related-post-content h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
}

.related-post-content h4 a {
    color: var(--color-graphite);
    transition: var(--transition-fast);
}

.related-post-content h4 a:hover {
    color: var(--color-orange);
}

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

    .blog-card-image {
        height: 240px;
    }

    .single-post-card {
        padding: 2.2rem;
    }
}

@media (max-width: 768px) {
    .single-post-card {
        padding: 1.5rem !important;
        border-radius: var(--radius-md);
        margin-bottom: 2rem;
    }

    .single-post-section {
        padding: 2.5rem 0 !important;
    }

    .post-header-meta {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.35rem 0.6rem;
    }

    .page-hero {
        background-position: center !important;
        min-height: 60vh !important;
    }

    .single-post .page-hero {
        min-height: 60vh !important;
        padding-bottom: 2.5rem;
    }

    .single-post .page-hero h1 {
        font-size: 1.6rem !important;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .related-post-image {
        height: 180px;
    }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 960px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    .hero {
        height: 82vh !important;
        min-height: 485px !important;
        max-height: none !important;
    }

    .hero-bg-slide.slide-1 {
        background-image: url('../../uploads/2026/07/bg4-768x1376.png') !important;
    }

    .hero-bg-slide.slide-2 {
        background-image: url('../../uploads/2026/07/bg3-768x1376.png') !important;
    }

    .hero-scroll {
        display: none !important;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-pad {
        padding: 4rem 0;
    }

    .section-pad--lg {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title br {
        display: none;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid-home {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    .stat-label {
        font-size: 0.78rem !important;
        letter-spacing: 0.02em !important;
    }

    .stat-item {
        border-right: none;
        border-bottom: none;
        padding: 0.5rem;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Kept 2 columns as requested */
}