/* ============================================
   MBzzz Global Studies — Site Styles
   ============================================ */

:root {
    --navy: #082567;
    --navy-dark: #041b4a;
    --navy-2: #0d3b66;
    --accent: #d7264e;
    --accent-dark: #b71c40;
    --sky: #eaf3ff;
    --sky-2: #d9ebfb;
    --ink: #1c2333;
    --muted: #5a6478;
    --white: #ffffff;
    --radius: 14px;
    --shadow-sm: 0 2px 10px rgba(8, 37, 103, 0.08);
    --shadow-md: 0 10px 30px rgba(8, 37, 103, 0.12);
    --shadow-lg: 0 18px 44px rgba(8, 37, 103, 0.18);
    --font-head: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

/* Legacy reveal classes (used by about/contact inline scripts) */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

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

/* Scroll-reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
}

/* Prevent stray horizontal scroll without breaking position: sticky */
html, body {
    overflow-x: clip;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

::selection {
    background: var(--navy);
    color: #fff;
}

/* ============ Header ============ */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(8, 37, 103, 0.08);
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 32px;
    max-width: 1400px;
    margin: auto;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

.brand:hover .logo {
    transform: rotate(-6deg) scale(1.05);
}

.brand-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.2;
}

.brand-name em {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

nav {
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav ul li a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 10px;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
    display: inline-block;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
    color: var(--navy);
    background: var(--sky);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    transform: scaleX(1);
}

nav ul li a.active {
    color: var(--navy);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 16px;
    border: 1.5px solid rgba(8, 37, 103, 0.18);
    border-radius: 40px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.phone-pill:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.phone-pill img {
    width: 26px;
    height: 26px;
}

.phone-pill small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.2;
}

.phone-pill strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.3;
}

.header-cta {
    padding: 11px 22px !important;
    font-size: 15px !important;
    border-radius: 40px !important;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--navy);
    background: var(--sky);
    border: none;
    border-radius: 10px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    transition: background 0.25s ease;
}

.menu-toggle:hover {
    background: var(--sky-2);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 27, 74, 0.55);
    backdrop-filter: blur(2px);
    z-index: 998;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Legacy header helpers (kept for compatibility) */
.contact-container-web {
    display: block;
}

.contact-container-mobile {
    display: none !important;
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn .arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
}

.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-outline:hover {
    background: var(--sky);
    color: var(--navy);
}

.btn-whatsapp {
    background: #fff;
    color: #1faa3c;
    border: 1.5px solid #34C346;
}

.btn-whatsapp:hover {
    background: #f0fff3;
    color: #1faa3c;
}

.btn-whatsapp img,
.btn-phone img {
    width: 26px;
    height: 26px;
}

.btn-phone {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-phone:hover {
    background: var(--sky);
    color: var(--navy);
}

/* ============ Sections ============ */
.section {
    padding: 72px 0;
    text-align: center;
}

.section h2,
.section-title {
    font-size: 36px;
    margin-bottom: 14px;
    color: var(--navy-2);
    font-weight: 700;
    line-height: 1.25;
}

.section-title-bar {
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background: var(--accent);
    margin: 0 auto 18px;
}

.section p {
    font-size: 17px;
    color: var(--muted);
}

.section-sub {
    max-width: 640px;
    margin: 0 auto 36px;
}

/* ============ Hero ============ */
.hero {
    background:
        radial-gradient(1100px 500px at 85% -10%, rgba(160, 196, 245, 0.45), transparent 60%),
        radial-gradient(700px 420px at -10% 110%, rgba(215, 38, 78, 0.10), transparent 55%),
        linear-gradient(to bottom, var(--sky), #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.container-hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    padding: 56px 32px 40px;
}

.container-hero > img {
    width: 42%;
    height: auto;
    animation: heroFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 24px 30px rgba(8, 37, 103, 0.18));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-content-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 18px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
    border: 1px solid rgba(8, 37, 103, 0.1);
}

.hero h1 {
    font-size: 46px;
    line-height: 1.18;
    color: var(--navy-dark);
    font-weight: 700;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero p {
    margin-top: 18px;
    font-size: 19px;
    margin-bottom: 30px;
    color: var(--muted);
    text-align: left;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-rating:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-rating img {
    width: 26px;
    height: auto;
}

/* Staggered hero entrance */
.hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn 0.8s ease-out forwards;
}

.hero-anim.d1 { animation-delay: 0.05s; }
.hero-anim.d2 { animation-delay: 0.18s; }
.hero-anim.d3 { animation-delay: 0.32s; }
.hero-anim.d4 { animation-delay: 0.46s; }
.hero-anim.d5 { animation-delay: 0.60s; }

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

/* ============ Service Cards ============ */
.services-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
    flex-wrap: wrap;
    margin: 0;
    padding: 48px 20px;
    max-width: 1400px;
    margin: auto;
}

.service-card {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #ffffff;
    width: 300px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--radius);
    padding: 26px 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.icon {
    font-size: 34px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.18) rotate(-6deg);
}

.service-card h3 {
    font-size: 17.5px;
    font-weight: 600;
    line-height: 1.4;
}

/* ============ Destination Cards ============ */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-top: 36px;
}

.card {
    background: #fff;
    border: 1px solid rgba(8, 37, 103, 0.09);
    border-radius: var(--radius);
    overflow: hidden;
    width: 250px;
    padding: 28px 20px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--sky);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.card h3 {
    font-size: 19px;
    color: var(--ink);
    margin-top: 14px;
    font-weight: 600;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(8, 37, 103, 0.22);
}

.card:hover img {
    transform: scale(1.1);
    border-color: var(--sky-2);
}

.card .btn {
    margin-top: 14px;
    font-size: 14.5px;
    padding: 9px 22px;
    border-radius: 40px;
}

/* ============ Consultation Banner ============ */
.consultation-section {
    padding: 40px 20px;
}

.consultation-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.consultation-image {
    flex: 1;
    min-width: 320px;
    padding: 0;
    display: flex;
}

.consultation-image img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.consultation-content {
    flex: 1;
    min-width: 320px;
    padding: 56px 48px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.consultation-content h2 {
    font-size: 38px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.consultation-content p {
    font-size: 17.5px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.94);
}

.consultation-content strong {
    font-weight: 700;
}

.consultation-btn {
    background-color: #fff;
    color: var(--accent-dark);
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-block;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* ============ Visa Services ============ */
.visa-services {
    text-align: center;
    padding: 72px 20px;
    background: linear-gradient(to bottom, var(--sky) 0%, #ffffff 100%);
    max-width: none !important;
    width: 100% !important;
}

.visa-services h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--navy-2);
}

.visa-services > p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 44px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

.visa-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 37, 103, 0.07);
    padding: 36px 26px;
    width: 320px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visa-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.visa-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 8px;
    padding: 0;
    transition: transform 0.3s ease;
}

.visa-card:hover .visa-icon {
    transform: scale(1.12);
}

.visa-card h3 {
    color: var(--navy-2);
    font-size: 22px;
    margin: 14px 0 12px;
}

.visa-card p {
    font-size: 15.5px;
    color: var(--muted);
    margin-bottom: 24px;
    flex: 1;
}

.visa-btn {
    display: inline-block;
    padding: 11px 26px;
    background-color: var(--navy);
    color: #ffffff;
    border-radius: 40px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.visa-btn:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============ Reviews ============ */
.reviews-section {
    padding: 72px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, var(--sky-2) 0%, var(--sky) 100%);
    margin-top: 30px;
    max-width: none !important;
    width: 100% !important;
}

.reviews-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--navy-dark);
}

.reviews-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
}

.reviews-rating {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 10px 22px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.reviews-rating h3 {
    font-size: 17px;
    color: var(--ink);
    text-align: left;
    line-height: 1.4;
}

.reviews-slider {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 46px !important;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px;
    height: 300px !important;
    overflow-y: auto !important;
    text-align: left;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 37, 103, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: grab;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card h3,
.review-card h4 {
    font-size: 17px;
    color: var(--navy);
    text-align: left;
}

.review-quote {
    font-size: 40px;
    line-height: 1;
    color: var(--sky-2);
    font-family: Georgia, serif;
    display: block;
}

.google-logo {
    width: 52px;
    margin-bottom: 0;
}

.review-text {
    font-size: 15.5px;
    color: var(--muted);
    margin-top: 10px;
    text-align: left;
}

.read-reviews-btn {
    background-color: var(--navy);
    color: white;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    display: inline-block;
    margin-top: 0;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.read-reviews-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Swiper controls */
.swiper-button-next,
.swiper-button-prev {
    color: var(--navy);
    background: #fff;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.08);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 17px !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--navy);
    opacity: 0.35;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.25);
}

/* ============ Contact ============ */
.contact-quick-row {
    display: flex;
    flex-direction: row;
    gap: 22px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-quick-row .btn {
    width: 280px;
    font-size: 18px;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 600px;
    margin: 30px auto;
}

.contact-divider::before,
.contact-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(8, 37, 103, 0.15);
}

.contact-divider span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    background: var(--navy);
    color: #fff;
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    max-width: 620px;
    margin: 10px auto 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 34px 30px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(8, 37, 103, 0.07);
    text-align: left;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-2);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1.5px solid #d8dfec;
    border-radius: 10px;
    outline: none;
    font-family: var(--font-body);
    font-size: 15.5px;
    color: var(--ink);
    background: #fbfcfe;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #b9c6de;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(8, 37, 103, 0.10);
}

.contact-form button {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 15px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

/* ============ Floating buttons ============ */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 900;
    transition: transform 0.25s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 94px;
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy-dark);
}

/* ============ Footer ============ */
footer {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 20px 0 24px;
    margin-top: 70px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
    padding: 56px 8%;
    max-width: 1400px;
    margin: auto;
    text-align: left;
}

.footer-log {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    max-width: 300px;
}

.footer-log p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h3,
.footer-container h3 {
    text-align: left;
    font-size: 18px;
    margin-bottom: 6px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after,
.footer-container h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
}

.footer-container ul {
    list-style: none;
}

.footer-container ul li {
    text-align: left;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.footer-container ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-container ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-row img {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.footer-contact-row p,
.footer-contact-row a {
    text-align: left;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    text-decoration: none;
    font-weight: 400;
}

.footer-contact-row a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-social img {
    height: 32px;
    width: 32px;
    transition: transform 0.25s ease;
}

.footer-social:hover img {
    transform: scale(1.15) rotate(-6deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 18px;
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============ Legacy sections (about / contact pages) ============ */
.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    font-size: 20px;
    margin-bottom: 10px;
}

.location-container {
    background: var(--navy);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
    margin-top: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-us-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(8, 37, 103, 0.15);
    border-radius: var(--radius);
    color: #000;
    width: 22%;
    height: 300px;
    padding: 20px;
    gap: 10px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-us-card img {
    width: 50px;
    height: 50px;
}

.contact-us-card h4 {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    color: var(--navy);
}

.contact-us-card p {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    color: #000;
}

.contact-us-card a {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #000;
}

.contact-us-card .active {
    display: none;
}

.contact-us-card .inactive {
    display: block;
}

.contact-us-card:hover {
    background-color: var(--navy);
    color: #fff;
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-us-card:hover h4,
.contact-us-card:hover p,
.contact-us-card:hover a {
    color: #fff;
}

.contact-us-card:hover .active {
    display: block !important;
}

.contact-us-card:hover .inactive {
    display: none !important;
}

.contact-us-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
}

.about-content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    margin-top: 20px;
}

.about-contnet-section {
    width: 60%;
}

.premotion-banner {
    width: 40%;
}

iframe {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ============ Responsive ============ */
@media (max-width: 1150px) {
    .contact-us-card {
        width: 30%;
    }

    .phone-pill {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 36px;
    }

    .cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .card {
        width: 45%;
        max-width: 250px;
    }

    .container-hero > img {
        display: none;
    }

    .hero-content-section {
        align-items: center;
        text-align: center;
        max-width: none;
    }

    .hero p {
        text-align: center;
    }

    .hero-cta-row {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .contact-us-card {
        width: 45%;
    }

    .premotion-banner {
        width: 50%;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .header-cta {
        display: none !important;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -8px 0 30px rgba(4, 27, 74, 0.2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 90px 24px 24px;
        gap: 4px;
        transition: transform 0.35s ease;
        transform: translateX(100%);
        z-index: 999;
    }

    nav ul.show {
        transform: translateX(0);
    }

    nav ul li {
        margin: 4px 0;
        width: 100%;
    }

    nav ul li a {
        font-size: 17px;
        display: block;
        width: 100%;
    }

    .nav-drawer-cta {
        margin-top: 14px;
        width: 100%;
    }

    .nav-drawer-cta a {
        background: var(--navy);
        color: #fff !important;
        text-align: center;
        border-radius: 10px;
    }

    .nav-drawer-cta a:hover {
        background: var(--navy-dark);
        color: #fff;
    }

    .nav-drawer-cta a::after {
        display: none;
    }
}

@media (max-width: 660px) {
    .header-container {
        padding: 8px 16px;
    }

    .logo {
        width: 54px;
        height: 54px;
    }

    .brand-name {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 80px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16.5px;
        margin-top: 14px;
        margin-bottom: 22px;
    }

    .container-hero {
        padding: 40px 20px 32px;
    }

    .section {
        padding: 52px 0;
    }

    .section h2,
    .visa-services h2,
    .reviews-section h2 {
        font-size: 28px;
    }

    .card {
        width: 100%;
        max-width: 320px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 16px;
    }

    .contact-quick-row .btn {
        width: 100%;
        max-width: 320px;
    }

    .consultation-content {
        padding: 36px 26px;
    }

    .consultation-content h2 {
        font-size: 28px;
    }

    .consultation-content p {
        font-size: 16px;
    }

    .contact-us-card {
        width: 100%;
        height: auto;
        min-height: 240px;
    }

    .about-content-container {
        flex-direction: column;
        width: 100%;
    }

    .location-container {
        width: 100%;
    }

    .about-contnet-section {
        width: 100%;
    }

    .premotion-banner {
        width: 100%;
    }

    .footer-container {
        padding: 44px 8%;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        right: 20px;
        bottom: 80px;
    }
}

img {
    -webkit-user-drag: none;
    user-select: none;
}
