/* =============================================
   NextSTEP Consultants — styles.css
   Theme: Dark (#0A0A0A) + Lime Green (#A3D636)
   Font: Space Grotesk + Inter
   ============================================= */

/* ── Variables ── */
:root {
    --lime: #A3D636;
    --lime-dark: #8ab82a;
    --lime-glow: rgba(163, 214, 54, 0.25);
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #242424;
    --grey: #58595B;
    --grey-light: #8A8A8A;
    --white: #FFFFFF;
    --off-white: #F0F0F0;
    --text-dim: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.08);

    --font-head: 'Space Grotesk', "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    --font-body: 'Inter', "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Utilities ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

.dark-section {
    background: var(--dark-2);
}

.lime {
    color: var(--lime);
}

.mt-1 {
    margin-top: 1.5rem;
}

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    background: var(--lime-glow);
    border: 1px solid rgba(163, 214, 54, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.section-label.light {
    color: var(--lime);
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lime {
    background: var(--lime);
    color: var(--dark);
}

.btn-lime:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--lime-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.btn-pulse {
    animation: pulseLime 2s infinite;
}

@keyframes pulseLime {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 214, 54, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(163, 214, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(163, 214, 54, 0);
    }
}

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    padding: 0.8rem 0;
    border-bottom-color: var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--off-white);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--lime);
}

.nav-cta {
    background: var(--lime) !important;
    color: var(--dark) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(163, 214, 54, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(163, 214, 54, 0.06) 0%, transparent 60%),
        var(--dark);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 214, 54, 0.12), transparent);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(163, 214, 54, 0.08), transparent);
    bottom: 50px;
    left: -50px;
    animation-delay: -4s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 62% 38%;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-main-img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--dark-3);
    position: relative;
    z-index: 2;
}

.hero-img-box::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--lime);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.3;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lime);
    border: 1px solid rgba(163, 214, 54, 0.3);
    background: rgba(163, 214, 54, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    animation: fadeSlideDown 0.8s ease both;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeSlideDown 0.8s ease 0.1s both;
}

.type-wrapper {
    display: inline-flex;
    align-items: center;
    min-width: 400px;
    vertical-align: bottom;
    line-height: 1.2;
}

.cursor {
    display: inline-block;
    color: var(--lime);
    animation: blink 0.8s step-end infinite;
    font-weight: 300;
    margin-left: 4px;
    height: 1em;
    width: 2px;
    background: var(--lime);
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dim);
    max-width: 580px;
    margin-bottom: 2.5rem;
    animation: fadeSlideDown 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeSlideDown 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeSlideDown 0.8s ease 0.4s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-n {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
}

.hero-stat p {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 26px;
    height: 42px;
    border: 2px solid var(--border);
    border-radius: 13px;
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--lime);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
    background: var(--lime);
    overflow: hidden;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.marquee-track {
    display: flex;
    overflow: hidden;
    padding: 0.75rem 0;
}

.marquee-items {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-flag {
    height: 14px;
    width: auto;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 2px;
}

.marquee-items span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    letter-spacing: 0.05em;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--lime);
    box-shadow: 0 0 30px var(--lime-glow);
    transform: translateY(-4px);
}

.stat-big {
    display: inline;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(163, 214, 54, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 2rem;
    color: var(--lime);
    margin-bottom: 1.25rem;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--lime-glow);
    border-radius: var(--radius-sm);
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

.card-arrow {
    margin-top: 1.5rem;
    color: var(--lime);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   DESTINATIONS
   ============================================= */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dest-card {
    background: linear-gradient(to bottom, rgba(16, 16, 16, 0.8), rgba(16, 16, 16, 0.95)), var(--bg);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lime);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.dest-card:hover::after {
    opacity: 0.05;
}

.dest-card:hover {
    border-color: var(--lime);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(163, 214, 54, 0.1);
}

.dest-flag {
    margin-bottom: 1.5rem;
}

.flag-img {
    height: 32px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-flag {
    height: 38px;
    width: auto;
    border-radius: 6px;
    margin: 0 12px;
    box-shadow: 0 8px 24px rgba(163, 214, 54, 0.2);
    border: 1px solid rgba(163, 214, 54, 0.3);
    vertical-align: middle;
}

.dest-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.dest-card .dest-sub {
    font-size: 0.85rem;
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-head);
}

.dest-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.dest-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lime);
    font-family: var(--font-head);
    transition: var(--transition);
}

.dest-cta i {
    transition: var(--transition);
}

.dest-card:hover .dest-cta i {
    transform: translateX(4px);
}

/* =============================================
   PROCESS
   ============================================= */
.process-steps {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    align-items: start;
    gap: 0;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
}

.step-num {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--lime-glow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--lime);
    color: var(--dark);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.process-step h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-dim);
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.process-connector::after {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--lime), rgba(163, 214, 54, 0.2));
    border-radius: 2px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: rgba(163, 214, 54, 0.3);
    transform: translateY(-4px);
}

.testi-stars {
    color: var(--lime);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.testi-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    background: var(--lime);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
}

.testi-author span {
    font-size: 0.8rem;
    color: var(--lime);
    font-weight: 600;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info>p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.office-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.office-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.office-item i {
    color: var(--lime);
    margin-top: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

.office-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
}

.office-item span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.contact-links a i {
    color: var(--lime);
}

.contact-links a:hover {
    color: var(--lime);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--off-white);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px var(--lime-glow);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-3);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-note {
    text-align: center;
    font-size: 0.88rem;
    margin-top: 1rem;
    min-height: 1.2rem;
    color: var(--lime);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 63px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-dim);
    max-width: 280px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--lime);
    color: var(--dark);
    border-color: var(--lime);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--lime);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--lime);
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ── FAQ ── */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--lime);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--lime);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

/* ── Newsletter ── */
.newsletter-wrap {
    margin-top: 2rem;
}

.news-label {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem !important;
}

.news-form {
    display: flex;
    gap: 0.5rem;
    max-width: 300px;
}

.news-form input {
    flex: 1;
    background: var(--dark-4);
    border: 1px solid var(--border);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
}

.news-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.news-form button:hover {
    background: var(--white);
    transform: scale(1.05);
}

.news-msg {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    min-height: 1rem;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    animation: floatIn 1s ease both;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: #20BA5A;
}

@keyframes floatIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .process-connector {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(16px);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }


    .hero-img-box::after {
        right: 0;
        top: 15px;
        left: 15px;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .dest-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 5rem 0;
    }

    .type-wrapper {
        min-width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}