/* ============================================================
   VaultEdge — Custom Override CSS
   Completely new visual identity: dark navy + gold accent
   Fonts: Nunito (headings) + DM Sans (body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&amp;family=DM+Sans:wght@300;400;500;600&amp;display=swap");

/* ---- CSS VARIABLES ---- */
:root {
    --ve-dark: #0d1b2a;
    --ve-dark2: #162032;
    --ve-navy: #1a2f4b;
    --ve-gold: #ad8b24;
    --ve-gold2: #ad8b24;
    --ve-light: #f4f7fb;
    --ve-white: #ffffff;
    --ve-text: #4a5568;
    --ve-border: #e2e8f0;
    --ve-radius: 12px;
    --ve-shadow: 0 8px 30px rgba(13, 27, 42, 0.1);
    --ve-trans: all 0.3s ease;
}

/* ---- RESET BODY FONTS ---- */
body {
    font-family: "DM Sans", sans-serif;
    color: var(--ve-text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    color: var(--ve-dark);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.ve-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--ve-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    transition: var(--ve-trans);
}
.ve-header.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(10px);
}
.ve-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 85px;
}
/* Logo */
.ve-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.ve-logo img {
    height: auto;
    max-height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}
.ve-footer-brand img {
    width: 160px;
    height: auto;
    display: block;
    /* margin-bottom: 25px; */
}

/* Nav links */
.ve-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
}
.ve-nav ul li {
    position: relative;
}
.ve-nav ul li a {
    display: block;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--ve-trans);
}
.ve-nav ul li a:hover,
.ve-nav ul li a.active,
.ve-nav ul li.active a {
    color: #fff;
    background: rgba(212, 160, 23, 0.15);
}
.ve-nav ul li a.active,
.ve-nav ul li.active a {
    color: var(--ve-gold);
}

/* Mobile menu active state */
.ve-mobile-menu ul li.active a {
    color: var(--ve-gold);
}
/* Dropdown */
.ve-nav .has-drop:hover .ve-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ve-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--ve-dark2);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--ve-trans);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block; /* Ensure vertical list */
    list-style: none;
}
.ve-dropdown li a {
    padding: 10px 20px;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
.ve-dropdown li a:hover {
    color: #fff;
    background: rgba(212, 160, 23, 0.12);
}

/* CTA button */
.ve-nav-cta .ve-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ve-gold);
    color: var(--ve-dark);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-cta-btn:hover {
    background: var(--ve-gold2);
    transform: translateY(-1px);
}

/* Mobile toggle */
.ve-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.ve-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--ve-trans);
}

/* Mobile menu */
.ve-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--ve-dark);
    z-index: 1050;
    padding: 0;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}
.ve-mobile-menu.open {
    transform: translateX(0);
}
.ve-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ve-mobile-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}
.ve-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ve-mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ve-mobile-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: var(--ve-trans);
}
.ve-mobile-menu ul li a:hover {
    color: var(--ve-gold);
}

.ve-mobile-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 20px;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: var(--ve-trans);
}
.ve-mobile-accordion-toggle:hover,
.ve-mobile-accordion.active > .ve-mobile-accordion-toggle {
    color: var(--ve-gold);
}
.ve-mobile-accordion-toggle i {
    transition: transform 0.3s ease;
}
.ve-mobile-accordion.open > .ve-mobile-accordion-toggle i {
    transform: rotate(180deg);
}
.ve-mobile-dropdown {
    display: none;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.03);
}
.ve-mobile-accordion.open > .ve-mobile-dropdown {
    display: block;
}
.ve-mobile-dropdown li {
    border-bottom: 0;
}
.ve-mobile-dropdown li a {
    padding: 11px 20px 11px 34px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}
.ve-mobile-dropdown li a:hover,
.ve-mobile-dropdown li.active a {
    color: #fff;
    background: rgba(212, 160, 23, 0.12);
}

.ve-mobile-logo {
    display: flex;
    align-items: center;
}
.ve-mobile-logo img {
    height: auto;
    width: 160px;
    max-width: 180px;
    object-fit: contain;
}

/* Mobile Contact Information */
.ve-mobile-contact {
    padding: 20px;
    margin-top: 10px;
}
.ve-mobile-contact p {
    margin-bottom: 15px;
    font-size: 14px;
}
.ve-mobile-contact p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ve-mobile-contact p a i {
    color: var(--ve-gold);
    font-size: 16px;
}
.ve-mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.ve-mobile-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: var(--ve-trans);
}
.ve-mobile-social a:hover {
    background: var(--ve-gold);
    color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.ve-hero {
    display: flex;
    min-height: 100vh;
    padding-top: 85px;
    background: var(--ve-dark);
    overflow: hidden;
}
.ve-hero-left {
    flex: 0 0 55%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.ve-hero-badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    color: var(--ve-gold);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.ve-hero-left h1 {
    font-size: 62px;
    line-height: 1.1;
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
}
.ve-hero-left h1 .ve-highlight {
    color: var(--ve-gold);
}
.ve-hero-left p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Hero buttons */
.ve-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.ve-btn-primary {
    display: inline-block;
    background: var(--ve-gold);
    color: var(--ve-dark);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-btn-primary:hover {
    background: var(--ve-gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
    color: var(--ve-dark);
}
.ve-btn-ghost {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-btn-ghost:hover {
    border-color: var(--ve-gold);
    color: var(--ve-gold);
    background: rgba(212, 160, 23, 0.08);
}

.ve-btn-ghost-dark {
    display: inline-block;
    border: 2px solid rgba(0, 0, 0, 0.15);
    color: var(--ve-dark);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--ve-trans);
}

.ve-btn-ghost-dark:hover {
    border-color: var(--ve-gold);
    color: var(--ve-gold);
    background: rgba(191, 148, 91, 0.08);
}

/* Hero stats */
.ve-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.ve-stat strong {
    display: block;
    font-size: 28px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
}
.ve-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ve-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero right */
.ve-hero-right {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}
.ve-hero-img-main {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.ve-hero-img-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--ve-dark) 0%, transparent 40%);
}
.ve-hero-img-accent {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 200px;
    height: 140px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--ve-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 3;
}
.ve-float-card {
    position: absolute;
    top: 60px;
    right: 60px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}
.ve-float-card i {
    font-size: 28px;
    color: var(--ve-gold);
}
.ve-float-card strong {
    display: block;
    font-size: 22px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: var(--ve-dark);
}
.ve-float-card span {
    font-size: 12px;
    color: var(--ve-text);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
    background: var(--ve-gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ve-trust-inner {
    display: inline-flex;
    gap: 60px;
    animation: ve-marquee 25s linear infinite;
}
.ve-trust-inner span {
    font-size: 13px;
    font-weight: 700;
    color: var(--ve-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ve-trust-inner span i {
    font-size: 14px;
}
@keyframes ve-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.ve-section {
    padding: 100px 0;
}
.ve-section-header {
    margin-bottom: 60px;
}
.ve-section-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.1);
    color: var(--ve-gold);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.ve-section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--ve-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.ve-section-header h2 span {
    color: var(--ve-gold);
}
.ve-section-header p {
    font-size: 16px;
    color: var(--ve-text);
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ve-services-section {
    background: var(--ve-light);
}
.ve-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ve-service-card {
    background: #fff;
    border-radius: var(--ve-radius);
    padding: 36px 30px;
    transition: var(--ve-trans);
    border: 1px solid var(--ve-border);
    position: relative;
    overflow: hidden;
}
.ve-service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ve-trans);
}
.ve-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ve-shadow);
}
.ve-service-card:hover::before {
    transform: scaleX(1);
}
.ve-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 26px;
    color: var(--ve-gold);
}
.ve-service-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 10px;
}
.ve-service-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--ve-text);
}
.ve-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ve-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--ve-trans);
}
.ve-card-link:hover {
    gap: 10px;
    color: var(--ve-dark);
}

/* ============================================================
   WHY US
   ============================================================ */
.ve-whyus-section {
    background: #fff;
}
.ve-whyus-img-wrap {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}
.ve-whyus-img-main {
    height: 480px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}
.ve-whyus-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--ve-gold);
    border-radius: 14px;
    padding: 22px 28px;
    text-align: center;
    min-width: 160px;
}
.ve-whyus-badge strong {
    display: block;
    font-size: 40px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: var(--ve-dark);
}
.ve-whyus-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ve-dark);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ve-whyus-content {
    padding-left: 40px;
}
.ve-whyus-content h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.ve-whyus-content h2 span {
    color: var(--ve-gold);
}
.ve-whyus-content > p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.ve-checklist {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.ve-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ve-check-item > i {
    font-size: 22px;
    color: var(--ve-gold);
    margin-top: 2px;
    flex-shrink: 0;
}
.ve-check-item strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 4px;
}
.ve-check-item p {
    font-size: 14px;
    color: var(--ve-text);
    margin: 0;
    line-height: 1.6;
}
.mt-30 {
    margin-top: 30px;
}

/* ============================================================
   COUNTERS
   ============================================================ */
.ve-counter-section {
    background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
    padding: 70px 0;
}
.ve-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.ve-counter-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ve-counter-item:last-child {
    border-right: none;
}
.ve-counter-item i {
    font-size: 36px;
    color: var(--ve-gold);
    margin-bottom: 14px;
    display: block;
}
.ve-counter-item strong {
    font-size: 46px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.ve-counter-item span {
    font-size: 24px;
    color: var(--ve-gold);
    font-weight: 700;
}
.ve-counter-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ve-testimonials-section {
    background: var(--ve-light);
}
.ve-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ve-testi-card {
    background: #fff;
    border-radius: var(--ve-radius);
    padding: 32px 28px;
    box-shadow: var(--ve-shadow);
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
}
.ve-testi-card:hover {
    transform: translateY(-4px);
}
.ve-testi-stars {
    font-size: 18px;
    color: var(--ve-gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.ve-testi-card > p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ve-text);
    margin-bottom: 24px;
    font-style: italic;
}
.ve-faq-accordion .ve-faq-card {
    border: 1px solid var(--ve-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--ve-shadow);
    margin-bottom: 16px;
    background: #fff;
}
.ve-faq-accordion .ve-faq-card:last-child {
    margin-bottom: 0;
}
.ve-faq-card-header {
    background: #fff;
    border-bottom: 0;
    padding: 0;
}
.ve-faq-toggle {
    position: relative;
    width: 100%;
    background: #fff;
    color: var(--ve-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.6;
    text-decoration: none;
    white-space: normal;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-right: 56px !important;
}
.ve-faq-toggle:hover,
.ve-faq-toggle:focus {
    color: var(--ve-dark);
    text-decoration: none;
    box-shadow: none;
}
.ve-faq-toggle::after {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--ve-gold);
    transition: transform 0.25s ease;
}
.ve-faq-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}
.ve-faq-card-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ve-text);
    border-top: 1px solid var(--ve-border);
}
.ve-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ve-testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.ve-testi-author strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--ve-dark);
}
.ve-testi-author span {
    font-size: 13px;
    color: var(--ve-text);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.ve-cta-banner {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
}
.ve-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(13, 27, 42, 0.92) 60%,
        rgba(13, 27, 42, 0.6)
    );
}
.ve-cta-content {
    position: relative;
    z-index: 2;
}
.ve-cta-content h2 {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}
.ve-cta-content h2 span {
    color: var(--ve-gold);
}
.ve-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}
.ve-btn-white {
    display: inline-block;
    background: #fff;
    color: var(--ve-dark);
    padding: 16px 34px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-btn-white:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
    transform: translateY(-2px);
}
.text-lg-right {
    text-align: right;
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.ve-insights-section {
    background: #fff;
}
.ve-insight-card {
    border-radius: var(--ve-radius);
    overflow: hidden;
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
    background: #fff;
}
.ve-insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ve-shadow);
}
.ve-insight-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.ve-insight-body {
    padding: 26px;
}
.ve-insight-cat {
    display: inline-block;
    background: rgba(212, 160, 23, 0.1);
    color: var(--ve-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    padding: 4px 10px;
    margin-bottom: 12px;
}
.ve-insight-body h5 a {
    font-size: 17px;
    font-weight: 800;
    color: var(--ve-dark);
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
}
.ve-insight-body h5 a:hover {
    color: var(--ve-gold);
}
.ve-insight-body > p {
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.7;
    margin-bottom: 6px;
}
.ve-insight-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}
.ve-insight-meta span {
    font-size: 13px;
    color: #aaa;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ve-insight-meta a {
    font-size: 13px;
    font-weight: 700;
    color: var(--ve-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--ve-trans);
}
.ve-insight-meta a:hover {
    gap: 10px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.ve-newsletter-section {
    background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
    padding: 60px 0;
}
.ve-newsletter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.ve-nl-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ve-nl-left i {
    font-size: 42px;
    color: var(--ve-gold);
    flex-shrink: 0;
}
.ve-nl-left h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 4px;
}
.ve-nl-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}
.ve-nl-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 160, 23, 0.3);
}
.ve-nl-form input {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
    width: 300px;
    outline: none;
}
.ve-nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.ve-nl-form button {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border: none;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: var(--ve-trans);
}
.ve-nl-form button:hover {
    background: var(--ve-gold2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ve-footer {
    background: var(--ve-dark);
    padding: 80px 0 0;
}
.mb-50 {
    margin-bottom: 50px;
}

.ve-footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin: -9px 0 24px;
}
.ve-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}

.ve-social {
    display: flex;
    gap: 10px;
}
.ve-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: var(--ve-trans);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.ve-social a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-color: var(--ve-gold);
}

.ve-footer-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ve-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ve-footer-links li {
    margin-bottom: 10px;
}
.ve-footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--ve-trans);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ve-footer-links li a::before {
    content: "›";
    color: var(--ve-gold);
    font-size: 16px;
}
.ve-footer-links li a:hover {
    color: var(--ve-gold);
    padding-left: 4px;
}

.ve-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ve-footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}
.ve-footer-contact li i {
    color: var(--ve-gold);
    margin-top: 2px;
    flex-shrink: 0;
}
.ve-footer-contact li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-footer-contact li a:hover {
    color: var(--ve-gold);
}

.ve-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 20px;
    padding: 22px 0;
}
.ve-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.ve-footer-bottom-inner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}
.ve-footer-bottom-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.ve-footer-bottom-inner ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-footer-bottom-inner ul li a:hover {
    color: var(--ve-gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .ve-hero-left {
        padding: 70px 40px;
    }
    .ve-hero-left h1 {
        font-size: 50px;
    }
    .ve-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ve-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ve-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .ve-hero {
        flex-direction: column;
        min-height: auto;
    }
    .ve-hero-left {
        flex: none;
        padding: 100px 30px 60px;
    }
    .ve-hero-right {
        flex: none;
        height: 350px;
    }
    .ve-nav,
    .ve-nav-cta {
        display: none;
    }
    .ve-toggler {
        display: flex;
    }
    .ve-whyus-content {
        padding-left: 0;
        margin-top: 40px;
    }
    .ve-newsletter-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .ve-nl-form {
        width: 100%;
    }
    .ve-nl-form input {
        flex: 1;
        width: auto;
    }
}
@media (max-width: 767px) {
    .ve-hero-left h1 {
        font-size: 38px;
    }
    .ve-services-grid,
    .ve-testi-grid,
    .ve-counter-grid {
        grid-template-columns: 1fr;
    }
    .ve-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .ve-nav-wrap {
        padding: 0 20px;
    }
    .ve-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .ve-cta-content h2 {
        font-size: 28px;
    }
    .text-lg-right {
        text-align: left;
        margin-top: 20px;
    }
    .ve-counter-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .ve-counter-item:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   HIDE OLD HEADER (replaced by ve-header)
   ============================================================ */
.header-area {
    display: none !important;
}

/* Ensure body offset for fixed navbar */
body {
    padding-top: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ve-page-hero {
    position: relative;
    padding: 175px 0 90px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.ve-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.92) 0%,
        rgba(13, 27, 42, 0.6) 100%
    );
}
.ve-page-hero-content {
    position: relative;
    z-index: 2;
}
.ve-page-hero-content h1 {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    margin: 12px 0 20px;
    line-height: 1.15;
}
.ve-page-hero-content h1 span {
    color: var(--ve-gold);
}
.ve-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}
.ve-breadcrumb li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}
.ve-breadcrumb li::after {
    content: "/";
    margin-left: 10px;
}
.ve-breadcrumb li:last-child::after {
    display: none;
}
.ve-breadcrumb li a {
    color: var(--ve-gold);
    text-decoration: none;
}
.ve-breadcrumb li.active {
    color: rgba(255, 255, 255, 0.8);
}
.ve-post-meta-hero {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.ve-post-meta-hero span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ve-about-img-stack {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}
.ve-about-img-1 {
    height: 420px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}
.ve-about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 180px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--ve-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.ve-about-ribbon {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--ve-gold);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.35);
}
.ve-about-ribbon strong {
    display: block;
    font-size: 36px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: var(--ve-dark);
}
.ve-about-ribbon span {
    font-size: 11px;
    font-weight: 700;
    color: var(--ve-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ve-about-text {
    padding-left: 50px;
}
.ve-about-text h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.ve-about-text h2 span {
    color: var(--ve-gold);
}
.ve-lead {
    font-size: 17px;
    color: var(--ve-dark);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.7;
}

.ve-about-features {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ve-af-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ve-text);
}
.ve-af-item i {
    color: var(--ve-gold);
    font-size: 14px;
}

/* MVV Cards */
.ve-mvv-section {
    background: var(--ve-dark);
    padding: 80px 0;
}
.ve-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.ve-mvv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--ve-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--ve-trans);
}
.ve-mvv-card:hover {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
}
.ve-mvv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(
        135deg,
        rgba(212, 160, 23, 0.2),
        rgba(212, 160, 23, 0.05)
    );
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--ve-gold);
}
.ve-mvv-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.ve-mvv-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

/* Team */
.ve-team-section {
    background: var(--ve-light);
}
.ve-team-card {
    background: #fff;
    border-radius: var(--ve-radius);
    overflow: hidden;
    box-shadow: var(--ve-shadow);
    transition: var(--ve-trans);
    margin-bottom: 30px;
}
.ve-team-card:hover {
    transform: translateY(-5px);
}
.ve-team-img {
    height: 280px;
    background-size: cover;
    background-position: center top;
}
.ve-team-info {
    padding: 22px 24px;
}
.ve-team-info h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 4px;
}
.ve-team-info span {
    font-size: 13px;
    color: var(--ve-text);
    display: block;
    margin-bottom: 14px;
}
.ve-team-social {
    display: flex;
    gap: 8px;
}
.ve-team-social a {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--ve-light);
    color: var(--ve-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-team-social a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.ve-process-section {
    background: var(--ve-dark);
    padding: 90px 0;
}
.ve-process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.ve-process-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ve-radius);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    transition: var(--ve-trans);
}
.ve-process-step:hover {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
}
.ve-process-num {
    font-size: 40px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: rgba(212, 160, 23, 0.3);
    margin-bottom: 12px;
    line-height: 1;
}
.ve-process-step h5 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.ve-process-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}
.ve-process-arrow {
    font-size: 24px;
    color: rgba(212, 160, 23, 0.4);
    flex-shrink: 0;
}

/* Fleet Categories Strip */
.ve-fleet-cats-strip {
    background: var(--ve-dark);
    padding: 30px 0;
    border-bottom: 2px solid var(--ve-gold);
}
.ve-fleet-cats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.ve-fleet-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: var(--ve-trans);
    cursor: default;
}
.ve-fleet-cat-item i {
    font-size: 24px;
    color: var(--ve-gold);
    width: 44px;
    height: 44px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ve-trans);
}
.ve-fleet-cat-item span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ve-fleet-cat-item:hover {
    color: var(--ve-gold);
}
.ve-fleet-cat-item:hover i {
    background: var(--ve-gold);
    color: var(--ve-dark);
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .ve-fleet-cats-inner {
        gap: 20px;
    }
    .ve-fleet-cat-item span {
        font-size: 12px;
    }
}

/* Coverage Grid */
.ve-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.ve-coverage-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ve-radius);
    padding: 40px 30px;
    transition: var(--ve-trans);
}
.ve-coverage-item:hover {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-5px);
}
.ve-coverage-item h5 {
    color: var(--ve-gold);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}
.ve-coverage-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ve-coverage-item ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ve-coverage-item ul li i {
    color: var(--ve-gold);
    font-size: 14px;
}
.ve-coverage-item ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-coverage-item ul li a:hover {
    color: var(--ve-gold) !important;
}

/* Contact FAQ Redesign */
.ve-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.ve-faq-item {
    background: #fff;
    padding: 30px;
    border-radius: var(--ve-radius);
    display: flex;
    gap: 20px;
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
    position: relative;
    overflow: hidden;
}
.ve-faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ve-gold);
    transform: scaleY(0);
    transition: var(--ve-trans);
}
.ve-faq-item:hover {
    box-shadow: var(--ve-shadow);
    transform: translateY(-5px);
    border-color: rgba(191, 148, 91, 0.3);
}
.ve-faq-item:hover::before {
    transform: scaleY(1);
}
.ve-faq-icon {
    font-size: 26px;
    color: var(--ve-gold);
    height: fit-content;
    padding-top: 2px;
}
.ve-faq-content h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 10px;
}
.ve-faq-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ve-text);
    margin: 0;
}

@media (max-width: 991px) {
    .ve-faq-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .ve-coverage-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Promise Strip */
.ve-svc-promise-section {
    background: var(--ve-light);
    padding: 80px 0;
}
.ve-svc-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.ve-svc-promise-item {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: var(--ve-radius);
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
    position: relative;
    overflow: hidden;
}
.ve-svc-promise-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ve-trans);
}
.ve-svc-promise-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--ve-shadow);
}
.ve-svc-promise-item:hover::after {
    transform: scaleX(1);
}
.ve-svc-promise-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--ve-gold);
    border: 2px solid rgba(212, 160, 23, 0.25);
}
.ve-svc-promise-item h5 {
    font-size: 17px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 10px;
}
.ve-svc-promise-item p {
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1199px) {
    .ve-svc-promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .ve-svc-promise-grid {
        grid-template-columns: 1fr;
    }
}

/* Home Amenities - Premium Redesign */
.ve-home-amenities {
    padding: 100px 0;
}
.ve-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.ve-amenity-item {
    background: #fff;
    padding: 45px 30px;
    border-radius: var(--ve-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid var(--ve-border);
    overflow: hidden;
}
.ve-amenity-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ve-amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--ve-gold);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.ve-amenity-item h5 {
    font-size: 19px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.ve-amenity-item p {
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.7;
    margin: 0;
}
.ve-amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(191, 148, 91, 0.3);
}
.ve-amenity-item:hover::after {
    transform: scaleX(1);
}
.ve-amenity-item:hover .ve-amenity-icon {
    transform: scale(1.1) rotateY(180deg);
    background: var(--ve-gold);
    color: var(--ve-dark);
}
.ve-amenity-item:hover h5 {
    color: var(--ve-gold);
}

@media (max-width: 1199px) {
    .ve-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .ve-amenity-item {
        padding: 35px 20px;
    }
    .ve-amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Sidebar & Content */
.ve-service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ve-sidebar-box {
    background: #fff;
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    padding: 30px;
}
.ve-sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.ve-sidebar-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--ve-gold);
}
.ve-sidebar-contact .ve-sidebar-title::after {
    left: 50%;
    transform: translateX(-50%);
}
.ve-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ve-sidebar-links li {
    border-bottom: 1px solid var(--ve-border);
}
.ve-sidebar-links li:last-child {
    border-bottom: none;
}
.ve-sidebar-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: var(--ve-text);
    font-weight: 700;
    font-size: 14px;
    transition: var(--ve-trans);
}
.ve-sidebar-links li.active a,
.ve-sidebar-links li a:hover {
    color: var(--ve-gold);
}
.ve-sidebar-links li a i {
    font-size: 12px;
    opacity: 0.5;
}

.ve-sidebar-contact-img {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}
.ve-sidebar-contact-body p {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
}
.ve-sidebar-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ve-sidebar-btns a {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 13px;
}

/* Main Content Rows */
.ve-content-row {
    margin-bottom: 80px;
}
.ve-row-dark {
    background: #f8faff;
    padding: 60px 40px;
    border-radius: var(--ve-radius);
    border: 1px solid rgba(191, 148, 91, 0.15); /* Subtle border for Elite theme */
}
.ve-content-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-top: 15px;
}
.ve-content-text h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
}
.ve-content-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.ve-content-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.ve-content-btns .ve-btn-primary,
.ve-content-btns .ve-btn-ghost {
    padding: 12px 24px;
    font-size: 13px;
}

@media (max-width: 991px) {
    .ve-service-sidebar {
        margin-bottom: 60px;
    }
    .ve-content-img {
        margin-bottom: 30px;
    }
}

/* FAQ */
.ve-faq-section {
    background: var(--ve-light);
}
.ve-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ve-faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--ve-border);
    overflow: hidden;
}
.ve-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
}
.ve-faq-q span {
    font-size: 15px;
    font-weight: 700;
    color: var(--ve-dark);
}
.ve-faq-q i {
    color: var(--ve-gold);
    font-size: 14px;
    flex-shrink: 0;
}
.ve-faq-a {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.8;
    display: none;
}
.ve-faq-item.open .ve-faq-a {
    display: block;
}
.ve-faq-item.open .ve-faq-q {
    border-bottom: 1px solid var(--ve-border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ve-contact-cards-section {
    background: var(--ve-dark);
    padding: 0;
    margin-top: -1px;
}
.ve-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.ve-contact-info-card {
    padding: 50px 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.ve-contact-info-card:last-child {
    border-right: none;
}
.ve-ci-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--ve-gold);
}
.ve-contact-info-card h5 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.ve-contact-info-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.7;
}
.ve-contact-info-card small {
    font-size: 12px;
    opacity: 0.6;
}

.ve-contact-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--ve-shadow);
}
.ve-contact-form-wrap h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 10px;
}
.ve-contact-form-wrap h2 span {
    color: var(--ve-gold);
}
.ve-contact-form-wrap > p {
    font-size: 15px;
    color: var(--ve-text);
    margin-bottom: 30px;
}

.ve-contact-form .ve-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ve-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.ve-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ve-dark);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea {
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--ve-dark);
    outline: none;
    transition: var(--ve-trans);
    font-family: "DM Sans", sans-serif;
    background: #fff;
}
.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
    border-color: var(--ve-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}
.ve-form-group textarea {
    resize: vertical;
}

.ve-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 20px;
}
.ve-ca-box {
    background: var(--ve-dark);
    border-radius: 14px;
    padding: 32px;
}
.ve-ca-box h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}
.ve-ca-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ve-ca-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}
.ve-ca-list li i {
    color: var(--ve-gold);
}
.ve-ca-hours {
    background: var(--ve-light);
    border-radius: 14px;
    padding: 28px;
}
.ve-ca-hours h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ve-ca-hours h5 i {
    color: var(--ve-gold);
}
.ve-ca-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ve-ca-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--ve-text);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ve-border);
}
.ve-ca-hours ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ve-ca-hours ul li strong {
    color: var(--ve-dark);
    font-weight: 700;
}
.ve-ca-social {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--ve-border);
}
.ve-ca-social h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 16px;
}

/* ============================================================
   BLOG / POST
   ============================================================ */
.ve-pagination {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}
.ve-pagination a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: var(--ve-light);
    color: var(--ve-dark);
    transition: var(--ve-trans);
    border: 1px solid var(--ve-border);
}
.ve-pagination a:hover,
.ve-pagination a.active {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-color: var(--ve-gold);
}

.ve-sidebar {
    position: sticky;
    top: 90px;
}
.ve-sidebar-widget {
    background: #fff;
    border-radius: var(--ve-radius);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--ve-border);
}
.ve-sidebar-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--ve-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ve-gold);
    display: inline-block;
}
.ve-search-box {
    display: flex;
    border: 1px solid var(--ve-border);
    border-radius: 8px;
    overflow: hidden;
}
.ve-search-box input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    font-family: "DM Sans", sans-serif;
}
.ve-search-box button {
    background: var(--ve-gold);
    border: none;
    padding: 0 18px;
    cursor: pointer;
    color: var(--ve-dark);
    font-size: 14px;
}
.ve-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ve-cat-list li {
    border-bottom: 1px solid var(--ve-border);
}
.ve-cat-list li:last-child {
    border-bottom: none;
}
.ve-cat-list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--ve-text);
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-cat-list li a:hover {
    color: var(--ve-gold);
}
.ve-cat-list li a span {
    background: var(--ve-light);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ve-dark);
}
.ve-recent-post {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ve-border);
}
.ve-recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.ve-rp-img {
    width: 64px;
    height: 54px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.ve-recent-post a {
    font-size: 13px;
    font-weight: 700;
    color: var(--ve-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
    transition: var(--ve-trans);
}
.ve-recent-post a:hover {
    color: var(--ve-gold);
}
.ve-recent-post span {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ve-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ve-tags a {
    background: var(--ve-light);
    color: var(--ve-text);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--ve-trans);
    border: 1px solid var(--ve-border);
}
.ve-tags a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-color: var(--ve-gold);
}

/* Single post */
.ve-article {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--ve-shadow);
    margin-bottom: 40px;
}
.ve-article-featured {
    height: 380px;
    background-size: cover;
    background-position: center;
}
.ve-article-body {
    padding: 40px;
}
.ve-article-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ve-dark);
    margin: 28px 0 12px;
}
.ve-article-body p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--ve-text);
    margin-bottom: 16px;
}
.ve-article-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--ve-dark);
    line-height: 1.7;
    border-left: 4px solid var(--ve-gold);
    padding-left: 20px;
    margin-bottom: 28px;
}
.ve-blockquote {
    background: var(--ve-light);
    border-left: 4px solid var(--ve-gold);
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 30px 0;
}
.ve-blockquote p {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: var(--ve-dark);
    margin-bottom: 8px;
}
.ve-blockquote cite {
    font-size: 13px;
    color: var(--ve-text);
    font-style: normal;
}
.ve-article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--ve-border);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ve-article-tags strong {
    font-size: 13px;
    color: var(--ve-dark);
    font-weight: 700;
}
.ve-article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.ve-article-share strong {
    font-size: 13px;
    color: var(--ve-dark);
    font-weight: 700;
}
.ve-article-share a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--ve-light);
    color: var(--ve-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-article-share a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
}

/* Comments */
.ve-comments-section {
    margin-bottom: 40px;
}
.ve-comments-section h4,
.ve-comment-form-wrap h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 24px;
}
.ve-comment {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ve-border);
}
.ve-comment.ve-comment-reply {
    margin-left: 60px;
}
.ve-comment:last-child {
    border-bottom: none;
}
.ve-comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.ve-comment-body {
    flex: 1;
}
.ve-comment-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 8px;
}
.ve-comment-meta strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ve-dark);
}
.ve-comment-meta span {
    font-size: 12px;
    color: #aaa;
}
.ve-comment-body p {
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.7;
    margin-bottom: 10px;
}
.ve-reply-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--ve-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ve-comment-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--ve-shadow);
}

/* Responsive additions */
@media (max-width: 991px) {
    .ve-about-text {
        padding-left: 0;
        margin-top: 40px;
    }
    .ve-contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .ve-contact-info-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .ve-mvv-grid {
        grid-template-columns: 1fr;
    }
    .ve-contact-aside {
        padding-left: 0;
        margin-top: 30px;
    }
    .ve-process-grid {
        flex-direction: column;
    }
    .ve-process-arrow {
        transform: rotate(90deg);
    }
    .ve-page-hero-content h1 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .ve-contact-form .ve-form-row {
        grid-template-columns: 1fr;
    }
    .ve-contact-form-wrap {
        padding: 28px;
    }
    .ve-article-body {
        padding: 24px;
    }
    .ve-about-img-stack {
        padding-bottom: 30px;
        padding-right: 30px;
    }
    .ve-about-img-2 {
        width: 150px;
        height: 120px;
    }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS (all inner pages)
   ============================================================ */

/* Page Hero */
.ve-page-hero {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-top: 72px;
}
.ve-page-hero-sm {
    min-height: 460px;
}
.ve-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 27, 42, 0.5) 0%,
        rgba(13, 27, 42, 0.85) 100%
    );
}
.ve-page-hero-content {
    position: relative;
    z-index: 2;
}
.ve-page-hero-content h1 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    margin: 10px 0 18px;
    line-height: 1.15;
}
.ve-page-hero-content h1 span {
    color: var(--ve-gold);
}
.ve-post-meta-hero {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.ve-post-meta-hero span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Breadcrumb */
.ve-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}
.ve-breadcrumb li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.ve-breadcrumb li a {
    color: var(--ve-gold);
    text-decoration: none;
}
.ve-breadcrumb li a:hover {
    color: #fff;
}
.ve-breadcrumb li.active {
    color: rgba(255, 255, 255, 0.5);
}
.ve-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* About Page */
.ve-about-img-stack {
    position: relative;
    padding: 0 40px 40px 0;
}
.ve-about-img-1 {
    height: 400px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}
.ve-about-img-2 {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    width: 55%;
    height: 230px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    border: 4px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.ve-about-ribbon {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--ve-gold);
    border-radius: 12px;
    padding: 18px 22px;
    text-align: center;
}
.ve-about-ribbon strong {
    display: block;
    font-size: 36px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: var(--ve-dark);
}
.ve-about-ribbon span {
    font-size: 11px;
    font-weight: 700;
    color: var(--ve-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.ve-about-text {
    /* padding-left: 40px; */
}
.ve-about-text h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 16px;
}
.ve-about-text h2 span {
    color: var(--ve-gold);
}
.ve-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--ve-dark);
    margin-bottom: 14px;
    line-height: 1.7;
}
.ve-about-text > p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}
.ve-about-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.ve-af-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ve-dark);
    font-weight: 500;
}
.ve-af-item i {
    color: var(--ve-gold);
    font-size: 14px;
}

/* MVV Section */
.ve-mvv-section {
    background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
    padding: 80px 0;
}
.ve-mvv-section .ve-section-header h2 {
    color: #fff;
}
.ve-mvv-section .ve-section-header p {
    color: rgba(255, 255, 255, 0.6);
}
.ve-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.ve-mvv-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ve-radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--ve-trans);
}
.ve-mvv-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.ve-mvv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--ve-dark);
    margin: 0 auto 20px;
}
.ve-mvv-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.ve-mvv-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}

/* Team Cards */
.ve-team-section {
    background: var(--ve-light);
}
.ve-team-card {
    background: #fff;
    border-radius: var(--ve-radius);
    overflow: hidden;
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
    margin-bottom: 28px;
}
.ve-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ve-shadow);
}
.ve-team-img {
    height: 260px;
    background-size: cover;
    background-position: center top;
}
.ve-team-info {
    padding: 22px;
    text-align: center;
}
.ve-team-info h5 {
    font-size: 17px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 4px;
}
.ve-team-info span {
    font-size: 13px;
    color: var(--ve-text);
    display: block;
    margin-bottom: 14px;
}
.ve-team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.ve-team-social a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: var(--ve-light);
    color: var(--ve-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-team-social a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
}

/* Process Steps */
.ve-process-section {
    background: var(--ve-light);
    padding: 80px 0;
}
.ve-process-grid {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 50px;
    flex-wrap: wrap;
}
.ve-process-step {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border-radius: var(--ve-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--ve-border);
}
.ve-process-num {
    font-size: 42px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: var(--ve-gold);
    line-height: 1;
    margin-bottom: 14px;
}
.ve-process-step h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 8px;
}
.ve-process-step p {
    font-size: 13px;
    color: var(--ve-text);
    line-height: 1.7;
    margin: 0;
}
.ve-process-arrow {
    font-size: 24px;
    color: var(--ve-gold);
    padding: 0 16px;
    flex-shrink: 0;
}

/* FAQ */
.ve-faq-section {
    background: #fff;
}
.ve-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ve-faq-item {
    border-bottom: 1px solid var(--ve-border);
}
.ve-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    gap: 16px;
}
.ve-faq-q span {
    font-size: 15px;
    font-weight: 700;
    color: var(--ve-dark);
}
.ve-faq-q i {
    font-size: 14px;
    color: var(--ve-gold);
    flex-shrink: 0;
    transition: var(--ve-trans);
}
.ve-faq-item.open .ve-faq-q i {
    transform: rotate(45deg);
}
.ve-faq-a {
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.8;
    padding: 0 0 16px;
    display: none;
}
.ve-faq-item.open .ve-faq-a {
    display: block;
}

/* Contact Cards */
.ve-contact-cards-section {
    background: var(--ve-light);
    padding: 60px 0;
}
.ve-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ve-contact-info-card {
    background: #fff;
    border-radius: var(--ve-radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
}
.ve-contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ve-shadow);
}
.ve-ci-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ve-gold);
    margin: 0 auto 18px;
}
.ve-contact-info-card h5 {
    font-size: 17px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 8px;
}
.ve-contact-info-card p {
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.7;
    margin: 0;
}

/* Contact Form Wrap */
.ve-contact-form-wrap h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}
.ve-contact-form-wrap h2 span {
    color: var(--ve-gold);
}
.ve-contact-form-wrap > p {
    font-size: 15px;
    color: var(--ve-text);
    margin-bottom: 28px;
}
.ve-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ve-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.ve-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ve-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ve-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea {
    border: 2px solid var(--ve-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    color: var(--ve-dark);
    background: #fff;
    outline: none;
    transition: var(--ve-trans);
}
.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
    border-color: var(--ve-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}
.ve-form-group textarea {
    resize: vertical;
}

/* Contact Aside */
.ve-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 30px;
}
.ve-ca-box {
    background: var(--ve-light);
    border-radius: var(--ve-radius);
    padding: 28px;
    border: 1px solid var(--ve-border);
}
.ve-ca-box h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 18px;
}
.ve-ca-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ve-ca-list li {
    font-size: 14px;
    color: var(--ve-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.ve-ca-list li i {
    color: var(--ve-gold);
}
.ve-ca-hours {
    background: var(--ve-dark);
    border-radius: var(--ve-radius);
    padding: 24px;
}
.ve-ca-hours h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ve-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ve-ca-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ve-ca-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
}
.ve-ca-hours ul li:last-child {
    border-bottom: none;
}
.ve-ca-hours ul li span {
    color: rgba(255, 255, 255, 0.5);
}
.ve-ca-hours ul li strong {
    color: #fff;
}
.ve-ca-social h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ve-dark);
    margin-bottom: 12px;
}

/* Blog / Sidebar */
.ve-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
}
.ve-sidebar-widget {
    background: #fff;
    border-radius: var(--ve-radius);
    padding: 28px;
    border: 1px solid var(--ve-border);
}
.ve-sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ve-gold);
    display: inline-block;
}
.ve-search-box {
    display: flex;
    border: 2px solid var(--ve-border);
    border-radius: 8px;
    overflow: hidden;
}
.ve-search-box input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    font-family: "DM Sans", sans-serif;
}
.ve-search-box button {
    background: var(--ve-gold);
    border: none;
    padding: 0 16px;
    color: var(--ve-dark);
    cursor: pointer;
    font-size: 14px;
    transition: var(--ve-trans);
}
.ve-search-box button:hover {
    background: var(--ve-dark);
    color: #fff;
}
.ve-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ve-cat-list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--ve-text);
    text-decoration: none;
    border-bottom: 1px solid var(--ve-border);
    transition: var(--ve-trans);
}
.ve-cat-list li:last-child a {
    border-bottom: none;
}
.ve-cat-list li a span {
    background: var(--ve-light);
    color: var(--ve-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}
.ve-cat-list li a:hover {
    color: var(--ve-gold);
}
.ve-recent-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.ve-recent-post:last-child {
    margin-bottom: 0;
}
.ve-rp-img {
    width: 65px;
    height: 50px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.ve-recent-post div a {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ve-dark);
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.4;
}
.ve-recent-post div a:hover {
    color: var(--ve-gold);
}
.ve-recent-post div span {
    font-size: 12px;
    color: var(--ve-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ve-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ve-tags a {
    background: var(--ve-light);
    color: var(--ve-text);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
}
.ve-tags a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-color: var(--ve-gold);
}

/* Pagination */
.ve-pagination {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.ve-pagination a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--ve-light);
    border: 1px solid var(--ve-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-text);
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-pagination a.active,
.ve-pagination a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-color: var(--ve-gold);
}

/* Article */
.ve-article {
    background: #fff;
    border-radius: var(--ve-radius);
    overflow: hidden;
    border: 1px solid var(--ve-border);
    margin-bottom: 40px;
}
.ve-article-featured {
    height: 380px;
    background-size: cover;
    background-position: center;
}
.ve-article-body {
    padding: 36px;
}
.ve-article-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--ve-dark);
    line-height: 1.8;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ve-border);
}
.ve-article-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ve-dark);
    margin: 28px 0 12px;
}
.ve-article-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ve-text);
    margin-bottom: 16px;
}
.ve-blockquote {
    background: var(--ve-light);
    border-left: 4px solid var(--ve-gold);
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 28px 0;
}
.ve-blockquote p {
    font-size: 17px;
    font-style: italic;
    color: var(--ve-dark);
    font-weight: 500;
    margin: 0 0 8px;
}
.ve-blockquote cite {
    font-size: 13px;
    color: var(--ve-gold);
    font-weight: 700;
    font-style: normal;
}
.ve-article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.ve-article-tags strong {
    font-size: 14px;
    color: var(--ve-dark);
}
.ve-article-tags a {
    background: var(--ve-light);
    color: var(--ve-text);
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
}
.ve-article-tags a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-color: var(--ve-gold);
}
.ve-article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.ve-article-share strong {
    font-size: 14px;
    color: var(--ve-dark);
}
.ve-article-share a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--ve-light);
    color: var(--ve-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: var(--ve-trans);
    border: 1px solid var(--ve-border);
}
.ve-article-share a:hover {
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-color: var(--ve-gold);
}

/* Comments */
.ve-comments-section {
    margin-bottom: 40px;
}
.ve-comments-section h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 24px;
}
.ve-comment {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.ve-comment-reply {
    margin-left: 50px;
}
.ve-comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.ve-comment-body {
    flex: 1;
    background: var(--ve-light);
    border-radius: 10px;
    padding: 18px;
}
.ve-comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 6px;
}
.ve-comment-meta strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ve-dark);
}
.ve-comment-meta span {
    font-size: 13px;
    color: var(--ve-text);
}
.ve-comment-body p {
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.7;
    margin-bottom: 10px;
}
.ve-reply-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--ve-gold);
    text-decoration: none;
}
.ve-reply-btn:hover {
    color: var(--ve-dark);
}

/* Comment form */
.ve-comment-form-wrap h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ve-dark);
    margin-bottom: 24px;
}

/* Elements page */
.ve-elements-section {
    background: #fff;
}
.ve-el-block {
    margin-bottom: 70px;
}
.ve-el-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--ve-dark);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ve-border);
    display: flex;
    align-items: center;
    gap: 14px;
}
.ve-el-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ve-gold);
    color: var(--ve-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}
.ve-el-demo {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* Why us section */
.ve-whyus-section {
    background: #fff;
}
.ve-whyus-img-wrap {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}
.ve-whyus-img-main {
    height: 480px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}
.ve-whyus-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--ve-gold);
    border-radius: 14px;
    padding: 22px 28px;
    text-align: center;
    min-width: 160px;
}
.ve-whyus-badge strong {
    display: block;
    font-size: 40px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: var(--ve-dark);
}
.ve-whyus-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ve-dark);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.ve-whyus-content {
    padding-left: 40px;
}
.ve-whyus-content h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.ve-whyus-content h2 span {
    color: var(--ve-gold);
}

/* Responsive extras */
@media (max-width: 991px) {
    .ve-mvv-grid {
        grid-template-columns: 1fr;
    }
    .ve-contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .ve-process-grid {
        flex-direction: column;
    }
    .ve-process-arrow {
        transform: rotate(90deg);
    }
    .ve-about-text,
    .ve-whyus-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .ve-contact-aside {
        padding-left: 0;
        margin-top: 30px;
    }
    .ve-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    .ve-form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .ve-page-hero-content h1 {
        font-size: 30px;
    }
    .ve-testi-grid {
        grid-template-columns: 1fr;
    }
    .ve-nl-form {
        flex-direction: column;
        border-radius: 8px;
    }
    .ve-nl-form input,
    .ve-nl-form button {
        width: 100%;
        border-radius: 8px !important;
    }
    .ve-about-img-2 {
        display: none;
    }
}

/* Testimonial Initials */
.ve-testi-avatar-text {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ve-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(191, 148, 91, 0.3);
}

/* ============================================================
   BOOK ONLINE FORM
   ============================================================ */
.ve-booking-section {
    background: var(--ve-dark);
}

/* Main card */
.ve-booking-card {
    background: var(--ve-dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.ve-booking-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 35px;
    background: linear-gradient(135deg, var(--ve-gold), #8a5e25);
}
.ve-booking-card-header h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 4px;
}
.ve-booking-card-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}
.ve-booking-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

/* Trip type tabs */
.ve-booking-form {
    padding: 30px 35px;
}
.ve-trip-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.ve-trip-tab {
    flex: 1;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ve-trans);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.ve-trip-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.ve-trip-tab.active {
    background: var(--ve-gold);
    color: #fff;
    box-shadow: 0 4px 12px rgba(191, 148, 91, 0.4);
}

/* Form labels & inputs */
.ve-form-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.ve-form-label i {
    color: var(--ve-gold);
    margin-right: 4px;
}
.ve-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    transition: var(--ve-trans);
    outline: none;
    -webkit-appearance: none;
}
.ve-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.ve-form-input:focus {
    border-color: var(--ve-gold);
    background: rgba(191, 148, 91, 0.07);
    box-shadow: 0 0 0 3px rgba(191, 148, 91, 0.15);
}
.ve-form-input option {
    background: var(--ve-dark2);
    color: #fff;
}
textarea.ve-form-input {
    resize: vertical;
    min-height: 100px;
}

/* Section divider inside form */
.ve-form-divider {
    position: relative;
    text-align: center;
    margin: 10px 0;
}
.ve-form-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.ve-form-divider span {
    position: relative;
    background: var(--ve-dark2);
    padding: 0 15px;
    color: var(--ve-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Submit button */
.ve-booking-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ve-gold), #8a5e25);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ve-trans);
    box-shadow: 0 8px 25px rgba(191, 148, 91, 0.4);
    margin-bottom: 15px;
}
.ve-booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(191, 148, 91, 0.55);
}
.ve-booking-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

/* Sidebar */
.ve-booking-sidebar {
    position: sticky;
    top: 100px;
}
.ve-booking-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--ve-dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: var(--ve-trans);
}
.ve-booking-info-card:hover {
    border-color: var(--ve-gold);
}
.ve-binfo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(191, 148, 91, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ve-gold);
}
.ve-booking-info-card h5 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 5px;
}
.ve-booking-info-card a,
.ve-booking-info-card span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.ve-booking-info-card a:hover {
    color: var(--ve-gold);
}

/* Why book with us */
.ve-booking-why {
    background: var(--ve-dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 25px;
}
.ve-booking-why-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ve-booking-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ve-booking-why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ve-booking-why-list li:last-child {
    border-bottom: none;
}
.ve-booking-why-list li i {
    color: var(--ve-gold);
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ve-booking-card-header {
        padding: 20px;
    }
    .ve-booking-form {
        padding: 20px;
    }
    .ve-trip-tabs {
        flex-direction: column;
    }
}

/* ============================================================
   TESTIMONIALS SLIDER - OWL CAROUSEL DOTS
   ============================================================ */
.ve-testimonials-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}
.ve-testimonials-slider.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}
.ve-testimonials-slider.owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--ve-trans);
}
.ve-testimonials-slider.owl-carousel .owl-dots .owl-dot.active span,
.ve-testimonials-slider.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--ve-gold);
    width: 30px;
    border-radius: 10px;
}
.ve-testimonials-slider.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.ve-testimonials-slider.owl-carousel .owl-item .ve-testi-card {
    height: 100%;
}

/* Testimonial Arrow Buttons */
.ve-testimonials-slider.owl-carousel .owl-nav {
    display: flex !important;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: static;
    transform: none;
    pointer-events: all;
}
.ve-testimonials-slider.owl-carousel .owl-prev,
.ve-testimonials-slider.owl-carousel .owl-next {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ve-gold) !important;
    color: #fff !important;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--ve-trans);
    box-shadow: 0 5px 15px rgba(191, 148, 91, 0.4);
    margin: 0;
    line-height: 1;
}
.ve-testimonials-slider.owl-carousel .owl-prev:hover,
.ve-testimonials-slider.owl-carousel .owl-next:hover {
    background: var(--ve-dark) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.ve-testimonials-slider.owl-carousel .owl-prev.disabled,
.ve-testimonials-slider.owl-carousel .owl-next.disabled {
    opacity: 0.4;
}

/* Wrap the slider to position nav buttons properly */
.ve-testimonials-section .container {
    position: relative;
}

.rounded-12 {
    border-radius: 12px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-50 {
    margin-top: 50px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mt-30 {
    margin-top: 30px;
}

.ve-service-detail-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
}

.ve-service-detail-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.ve-service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ve-lead {
    font-size: 18px !important;
    font-weight: 500;
    color: #333 !important;
}

.ve-feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ve-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color, #c5a059);
}

.ve-feature-box i {
    font-size: 30px;
    color: var(--primary-color, #c5a059);
    margin-bottom: 20px;
    display: block;
}

.ve-feature-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.ve-feature-box p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

.ve-amenities-list ul {
    list-style: none;
    padding: 0;
}

.ve-amenities-list ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}

.ve-amenities-list ul li i {
    color: var(--primary-color, #c5a059);
    margin-right: 15px;
    font-size: 14px;
}

.ve-quote-box {
    background: var(--ve-dark);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    color: #fff;
}

.ve-quote-box i {
    font-size: 40px;
    color: var(--primary-color, #c5a059);
    opacity: 0.3;
    position: absolute;
    top: 30px;
    left: 30px;
}

.ve-quote-box p {
    font-style: italic;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.ve-quote-author {
    margin-top: 20px;
    padding-left: 20px;
}

.ve-quote-author strong {
    display: block;
    color: var(--primary-color, #c5a059);
    font-size: 16px;
}

.ve-quote-author span {
    font-size: 13px;
    opacity: 0.6;
}
.ve-sidebar {
    position: sticky;
    top: 100px;
}

.ve-sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ve-widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.ve-widget-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color, #c5a059);
}

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

.ve-service-list li {
    margin-bottom: 12px;
}

.ve-service-list li:last-child {
    margin-bottom: 0;
}

.ve-service-list li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ve-service-list li a i {
    width: 30px;
    color: var(--primary-color, #c5a059);
    font-size: 16px;
}

.ve-service-list li.active a,
.ve-service-list li a:hover {
    background: var(--primary-color, #c5a059);
    color: #fff;
    transform: translateX(5px);
}

.ve-service-list li.active a i,
.ve-service-list li a:hover i {
    color: #fff;
}

.ve-contact-widget {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}

.ve-contact-widget-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
    z-index: -1;
}

.ve-contact-widget-content i {
    font-size: 40px;
    color: var(--primary-color, #c5a059);
    margin-bottom: 15px;
}

.ve-contact-widget-content h4,
.ve-contact-widget-content p {
    color: #fff !important;
}

.ve-contact-widget-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.ve-contact-widget-content p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.ve-book-widget p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* ============================================================
   AIRPORT GRID SECTION
   ============================================================ */
.ve-airport-grid-section {
    padding: 100px 0;
    background: #fff;
}
.ve-airport-card-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 15px;
    transition: var(--ve-trans);
}
.ve-airport-card-text h4 {
    color: var(--ve-gold); /* Premium Pinkish Accent */
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}
.ve-airport-card-text p {
    font-size: 13px;
    line-height: 1.7;
    color: #6a7682;
    margin: 0;
}
.ve-airport-card-img {
    height: 100%;
    min-height: 240px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    transition: var(--ve-trans);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.ve-airport-card-img:hover, 
.ve-airport-card-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
    .ve-airport-card-img {
        min-height: 200px;
        margin-bottom: 20px;
    }
    .ve-airport-card-text {
        margin-bottom: 20px;
        padding: 25px;
    }
}

/* ============================================================
   SIMPLE PAGE HERO (Text focused)
   ============================================================ */
.ve-page-hero-simple {
    background: var(--ve-dark);
    padding: 120px 0 80px;
    text-align: center;
}
.ve-hero-simple-content h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}
.ve-hero-simple-content h1 span {
    color: var(--ve-gold);
}
.ve-hero-simple-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Text Item */
.ve-feature-text-item {
    padding: 30px;
    background: #fcfcfc;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--ve-trans);
}
.ve-feature-text-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.ve-feature-text-item i {
    font-size: 28px;
    color: var(--ve-gold);
    margin-bottom: 15px;
    display: block;
}
.ve-feature-text-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.ve-feature-text-item p {
    font-size: 14px;
    color: var(--ve-text);
    margin: 0;
    line-height: 1.6;
}

/* Sidebar Links */
.ve-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ve-sidebar-links li {
    margin-bottom: 10px;
}
.ve-sidebar-links li a {
    display: block;
    padding: 12px 20px;
    background: #f4f7fb;
    border-radius: 8px;
    color: var(--ve-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--ve-trans);
}
.ve-sidebar-links li a:hover,
.ve-sidebar-links li.active a {
    background: var(--ve-gold);
    color: var(--ve-dark);
}

/* WhatsApp Floating Button */
.ve-whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 36px;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: ve-pulse 2s infinite;
}
.ve-whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 2px 10px 30px rgba(0,0,0,0.4);
    animation: none;
}
.ve-whatsapp-float i {
    margin-top: 0;
}

@keyframes ve-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   SERVICE AREA DETAIL STYLES
   ============================================================ */
.ve-service-area-detail h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 60px;
    margin-bottom: 25px;
    border-left: 5px solid var(--ve-gold);
    padding-left: 20px;
    line-height: 1.2;
    color: var(--ve-dark);
}

.ve-service-area-detail h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 0;
}

.ve-area-intro h2 {
    margin-top: 0 !important;
}

.ve-service-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

@media (max-width: 768px) {
    .ve-service-sidebar {
        position: relative;
        top: 0;
    }
    .ve-service-area-detail h2 {
        font-size: 26px;
        padding-left: 15px;
    }
    .ve-service-area-detail h3 {
        font-size: 20px;
    }
}
