:root {
    --navy: #1B2E5C;
    --navy-dark: #111d3a;
    --navy-light: #2b4585;
    --navy-transparent: rgba(27, 46, 92, 0.95);
    --red: #E63329;
    --red-hover: #cc2a22;
    --gold: #D9A441;
    --gold-glow: rgba(217, 164, 65, 0.3);
    --white: #ffffff;
    --light: #f4f7f9;
    --gray-bg: #eceff3;
    --text-main: #2b2b2b;
    --text-muted: #5a657a;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 15px 35px var(--gold-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--red);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.z-relative {
    position: relative;
    z-index: 10;
}

.section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.py-5 {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light);
    position: relative;
}

.bg-navy {
    background-color: var(--navy);
}

.bg-navy-dark {
    background-color: var(--navy-dark);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-red {
    background-color: var(--red);
}

/* Textures & Orbs */
.bg-texture-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(27, 46, 92, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

.bg-texture-diagonal::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(217, 164, 65, 0.03) 0, rgba(217, 164, 65, 0.03) 1px, transparent 1px, transparent 15px);
    z-index: 1;
    pointer-events: none;
}

.bg-orb-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bg-orb-2 {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(27, 46, 92, 0.1) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bg-orb-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 51, 41, 0.08) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.9rem;
}

.font-bold {
    font-weight: 700;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, #ff5252 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.divider {
    height: 5px;
    width: 70px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1rem auto 2.5rem;
    border-radius: 3px;
}

.divider-left {
    margin-left: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    z-index: 5;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg) translateX(-150%);
    transition: var(--transition-slow);
}

.btn:hover::after {
    transform: skewX(-20deg) translateX(150%);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 51, 41, 0.2);
}

.btn-primary:hover {
    background-color: var(--red-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 51, 41, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 46, 92, 0.15);
}

/* Top Utility Bar */
.top-bar {
    font-size: 0.9rem;
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--navy-dark);
    color: #d1d5df;
    font-weight: 500;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 1.8rem;
    display: inline-flex;
    align-items: center;
}

.top-bar-left i {
    margin-right: 8px;
    color: var(--gold);
    font-size: 0.9rem;
}

.top-bar-right a {
    color: #d1d5df;
    margin-left: 1.2rem;
    transition: var(--transition);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-right a:hover {
    color: var(--navy-dark);
    background: var(--gold);
}

/* Header & Nav */
.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    position: sticky;
    top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-svg {
    max-height: 55px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Nav links — scope to direct children only so dropdown items aren't affected */
.nav-links>a,
.nav-links>.dropdown-wrapper>.dropdown-toggle {
    font-weight: 600;
    color: var(--navy);
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links>a:hover,
.nav-links>.dropdown-wrapper>.dropdown-toggle:hover {
    color: var(--red);
}

.nav-links>a::after,
.nav-links>.dropdown-wrapper>.dropdown-toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: var(--red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links>a:hover::after,
.nav-links>.dropdown-wrapper:hover>.dropdown-toggle::after {
    width: 100%;
}

/* ── Destinations Dropdown ── */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    min-width: 230px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.5rem;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
}

/* Show on hover (desktop) or .active class (JS-toggled mobile) */
.dropdown-wrapper:hover .dropdown-menu,
.dropdown-wrapper:focus-within .dropdown-menu,
.dropdown-wrapper.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Small caret indicator above dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.1rem;
    border-radius: 8px;
    color: var(--navy) !important;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

/* Kill the underline pseudo-element on dropdown items */
.dropdown-item::after {
    display: none !important;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(217, 164, 65, 0.12), rgba(217, 164, 65, 0.04));
    color: var(--navy-dark) !important;
    padding-left: 1.4rem;
}

.dropdown-item img {
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(230, 51, 41, 0.25);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 8rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4fc 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--navy-dark);
    transform: skewX(-12deg) translateX(25%);
    z-index: 1;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-stripe-motif {
    position: absolute;
    left: -20px;
    top: 0;
    width: 12px;
    height: 100%;
    background: var(--gold);
    box-shadow: 0 0 30px rgba(217, 164, 65, 0.5);
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(230, 51, 41, 0.1);
    color: var(--red);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(230, 51, 41, 0.2);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 90%;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -18px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    background: var(--white);
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
    z-index: 3;
}

.avatar-group img:nth-child(2) {
    z-index: 2;
}

.avatar-text {
    margin-left: 20px;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-heading);
}

.avatar-text strong {
    font-size: 1.2rem;
}

/* Hero Visual Depth */
.image-wrapper-hero {
    position: relative;
    width: 100%;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
}

.main-hero-img {
    width: 100%;
    border-radius: 16px 50px 16px 50px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
    border: 8px solid var(--white);
}

.shadow-card {
    background: var(--white);
    box-shadow: var(--shadow-gold);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid rgba(217, 164, 65, 0.3);
    backdrop-filter: blur(10px);
}

.hero-float-card {
    position: absolute;
    z-index: 4;
    width: max-content;
    transition: var(--transition-slow);
}

.hero-float-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 25px 45px rgba(217, 164, 65, 0.4);
}

.hero-float-card.bottom-left {
    bottom: 20px;
    left: -15%;
}

.hero-float-card.top-right {
    top: 15%;
    right: -5%;
}

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    color: var(--navy);
    font-size: 1.7rem;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.5px;
}

.card-text span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.image-wrapper-about {
    position: relative;
    border-radius: 20px;
    z-index: 2;
}

.image-wrapper-about::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--navy-dark);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.05;
}

.main-about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1;
    object-fit: cover;
}

.about-float-card {
    position: absolute;
    right: -30px;
    bottom: 50px;
    background: var(--white);
    border-radius: 16px;
    z-index: 3;
    border-left: 6px solid var(--gold);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-heading);
    padding: 1.5rem;
    gap: 1rem;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-bullets li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 164, 65, 0.3);
}

.bullet-icon {
    width: 35px;
    height: 35px;
    background: rgba(230, 51, 41, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1.1rem;
}

.bullet-text h4 {
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    color: var(--navy);
}

.bullet-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Destinations Depth */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.dest-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.dest-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(27, 46, 92, 0.15);
}

.dest-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-img {
    transform: scale(1.05);
}

.dest-img-container {
    overflow: hidden;
    height: 240px;
    position: relative;
}

.dest-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 29, 58, 0.9), transparent);
    z-index: 1;
}

.flag-badge {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--white);
}

.flag-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-card:hover .flag-badge {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.dest-content {
    padding: 2.2rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    z-index: 2;
}

.dest-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.dest-content p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    flex-grow: 1;
    font-size: 1.05rem;
}

.dest-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    margin-top: auto;
    padding: 0.5rem 0;
}

.dest-link:hover {
    color: var(--navy);
    gap: 15px;
}

/* Services Hover Pattern */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-rich {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card-rich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-rich:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-rich:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: rgba(27, 46, 92, 0.05);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

/* Alternating icon backgrounds */
.service-card-rich:nth-child(even) .service-icon {
    background: rgba(217, 164, 65, 0.1);
    color: var(--gold);
}

.service-card-rich:nth-child(3n) .service-icon {
    background: rgba(230, 51, 41, 0.08);
    color: var(--red);
}

.service-card-rich:hover .service-icon {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(27, 46, 92, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card-rich h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card-rich p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.service-hover-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px) scale(0.8);
    transition: var(--transition-slow);
    box-shadow: 0 5px 15px rgba(230, 51, 41, 0.3);
    font-size: 1.1rem;
}

.service-card-rich:hover .service-hover-btn {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.service-hover-btn:hover {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.15) !important;
}

/* Process Redesign */
.timeline-zigzag {
    position: relative;
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 2rem 0;
}

.timeline-zigzag::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: transparent;
    border-left: 3px dashed rgba(217, 164, 65, 0.8);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    margin-bottom: 5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-num {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 0 10px var(--light), 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: var(--transition);
}

.timeline-step:hover .step-num {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(217, 164, 65, 0.2), 0 10px 30px rgba(217, 164, 65, 0.4);
}

.step-card {
    width: 43%;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 164, 65, 0.3);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    background: var(--white);
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-step:nth-child(odd) .step-card {
    text-align: right;
}

.timeline-step:nth-child(odd) .step-card::before {
    left: -12.5px;
    border-right: none;
    border-top: none;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.02);
}

.timeline-step:nth-child(even) .step-card::before {
    right: -12.5px;
    border-left: none;
    border-bottom: none;
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.02);
}

.step-card h3 {
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.step-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Partner Strip */
.partner-strip {
    padding: 4rem 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    background: var(--white);
    position: relative;
}

.partner-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-box {
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.3rem;
}

/* Testimonials Featured Elements */
.testimonials-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.test-card-rich {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.test-card-rich:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.bg-quote {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 10rem;
    color: rgba(27, 46, 92, 0.04);
    z-index: 0;
    transition: var(--transition-slow);
}

.test-card-rich:hover .bg-quote {
    transform: scale(1.1) rotate(5deg);
    color: rgba(217, 164, 65, 0.08);
}

.rating-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.rating-stars i {
    margin-right: 3px;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-family: var(--font-heading);
}

.author-block {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.author-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-details span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(27, 46, 92, 0.95), rgba(17, 29, 58, 0.98)), url('https://images.pexels.com/photos/1438072/pexels-photo-1438072.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover fixed;
    padding: 6rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.cta-shadow {
    box-shadow: 0 10px 30px rgba(230, 51, 41, 0.5);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--gold);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    margin-right: 12px;
    font-size: 1.4rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    padding-left: 2rem;
}

.faq-item:hover h3::before {
    color: var(--navy);
}


/* Split Contact Section - Rebalanced */
.contact-split {
    padding-top: 6rem;
    padding-bottom: 8rem;
}

.relative-container {
    position: relative;
    z-index: 5;
}

.contact-card-layered {
    display: grid;
    grid-template-columns: 5fr 6fr;
    align-items: center;
    z-index: 5;
}

.contact-panel-dark {
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    left: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel-dark h2 {
    font-size: 2.5rem;
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-info-list li a {
    color: var(--white);
    font-weight: 500;
}

.contact-info-list li a:hover {
    color: var(--gold);
}

.contact-info-list .info-icon {
    width: 45px;
    height: 45px;
    background: rgba(217, 164, 65, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-info-list li:hover .info-icon {
    background: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.1);
}

.map-embedded iframe {
    border-radius: 12px;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.5s ease;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.map-embedded iframe:hover {
    filter: grayscale(0%);
}

.contact-form-layered {
    background: var(--white);
    padding: 4.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 6;
    right: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    border: 2px solid #eef1f6;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    background: #f8fafc;
    transition: var(--transition);
    color: var(--navy);
    font-weight: 500;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.15);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2E5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
}

/* Footer Multi-column */
.footer-rich {
    background: var(--navy-dark);
    color: #b8c4df;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer-rich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list a {
    color: #b8c4df;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    margin-right: 0.8rem;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(217, 164, 65, 0.4);
}

.newsletter-form {
    position: relative;
}

.newsletter-input {
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.newsletter-input input {
    flex-grow: 1;
    padding: 1rem 1.2rem;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input button {
    border-radius: 0 6px 6px 0;
    border: none;
    padding: 0 1.5rem;
    background: var(--gold);
    color: var(--navy-dark);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input button:hover {
    background: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    background: #0c1527;
    margin-top: 5rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.15) rotate(-10deg);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Numbers */
.counter-value {
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-card-layered {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-panel-dark {
        left: 0;
        border-radius: 20px 20px 0 0;
        padding: 4rem 3rem;
    }

    .contact-form-layered {
        right: 0;
        border-radius: 0 0 20px 20px;
        padding: 4rem 3rem;
        border-top: none;
    }

    .hero-content {
        gap: 3rem;
    }

    .about-grid {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: 2;
        margin-top: 2rem;
    }

    .about-text {
        order: 1;
    }

    .bg-orb-1,
    .bg-orb-2 {
        display: none;
    }
}

@media (max-width: 900px) {
    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-bg {
        display: none;
    }

    .hero-stripe-motif {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-float-card.bottom-left,
    .hero-float-card.top-right {
        position: relative;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: 1.5rem auto;
        width: 85%;
        justify-content: flex-start;
        transform: none !important;
        animation: none;
    }

    .image-wrapper-hero {
        padding: 0;
        margin-top: 2rem;
    }

    .trust-avatars {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile dropdown: accordion, no absolute popup */
    .dropdown-wrapper {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: rgba(27, 46, 92, 0.05);
        border-radius: 8px;
        padding: 0.25rem 0.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        left: auto;
        pointer-events: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-wrapper.open .dropdown-menu {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown-item {
        justify-content: center;
        padding: 0.65rem 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-nav {
        display: none;
    }

    .timeline-zigzag::before {
        left: 30px;
    }

    .step-num {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-step {
        flex-direction: column !important;
        align-items: flex-end;
        margin-bottom: 3rem;
    }

    .step-card {
        width: calc(100% - 80px);
        text-align: left !important;
        padding: 2rem;
    }

    .timeline-step:nth-child(even) .step-card::before,
    .timeline-step:nth-child(odd) .step-card::before {
        left: -12.5px;
        right: auto;
        border: 1px solid rgba(0, 0, 0, 0.03);
        border-right: none;
        border-top: none;
        box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.02);
    }

    .about-float-card {
        right: 10px;
        bottom: 10px;
        padding: 1.2rem;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .mt-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .mt-mobile span {
        margin: 0;
    }

    .contact-panel-dark,
    .contact-form-layered {
        padding: 3rem 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}