/* ===== CSS Variables ===== */
:root {
    --primary-blue: #2563EB;
    --primary-blue-dark: #1E40AF;
    --primary-blue-light: #3B82F6;
    --accent-blue: #60A5FA;
    --background: #FFFFFF;
    --background-light: #F8FAFC;
    --background-blue: #EFF6FF;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --text-light: #64748B;
    --border-light: #E2E8F0;
    --nigeria-green: #008751;
    --poland-red: #DC143C;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== Floating Particles Background ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.btn-float {
    animation: btn-float 3s ease-in-out infinite;
}

@keyframes btn-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.btn-float:hover {
    animation: none;
    transform: translateY(-3px) scale(1.02);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-md);
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: glow-rotate 3s linear infinite;
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes glow-rotate {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-accent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav-cta {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    background: var(--primary-blue-dark);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.nav.active a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav.active .nav-cta {
    text-align: center;
    margin-top: 8px;
    border-bottom: none;
}

/* ===== Hero Section ===== */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--background-blue) 0%, var(--background) 100%);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-blue);
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Hero Slider ===== */
.hero-slider {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 20px;
}

.country-card,
.journey-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    animation: card-float 4s ease-in-out infinite;
}

@keyframes card-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.country-card.nigeria {
    border-color: var(--nigeria-green);
}

.country-card.poland {
    border-color: var(--poland-red);
}

.flag-icon {
    width: 80px;
    height: 55px;
    margin: 0 auto 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.flag-icon svg {
    width: 100%;
    height: 100%;
}

.country-card h3,
.journey-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.country-card p,
.journey-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.country-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.icon-item {
    font-size: 0.9rem;
    padding: 6px 12px;
    background: var(--background-blue);
    border-radius: 20px;
}

.journey-card {
    background: linear-gradient(135deg, var(--background-blue), white);
}

.plane-animation {
    height: 80px;
    position: relative;
    margin-bottom: 16px;
}

.plane {
    width: 60px;
    animation: fly-plane 2s ease-in-out infinite;
}

@keyframes fly-plane {

    0%,
    100% {
        transform: translateX(-20px) translateY(0);
    }

    50% {
        transform: translateX(20px) translateY(-10px);
    }
}

.flight-path {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--nigeria-green), var(--primary-blue), var(--poland-red));
    border-radius: 2px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* ===== Section Styles ===== */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== About Section ===== */
.about {
    background: var(--background);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.float-item {
    animation: item-float 3s ease-in-out infinite;
}

.float-item:nth-child(2) {
    animation-delay: 0.5s;
}

.float-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes item-float {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.list-icon svg {
    width: 100%;
    height: 100%;
}

.list-icon.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.about-visual {
    display: flex;
    justify-content: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    background: var(--background-blue);
    border-radius: var(--radius-lg);
}

.float-badge {
    animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.trust-icon {
    width: 64px;
    height: 64px;
}

.spin-slow {
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.trust-badge span {
    font-weight: 600;
    color: var(--primary-blue);
}

/* ===== Services Section ===== */
.services {
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: var(--background);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.float-card {
    animation: card-hover-float 5s ease-in-out infinite;
}

.float-card:nth-child(2) {
    animation-delay: 0.3s;
}

.float-card:nth-child(3) {
    animation-delay: 0.6s;
}

.float-card:nth-child(4) {
    animation-delay: 0.9s;
}

.float-card:nth-child(5) {
    animation-delay: 1.2s;
}

.float-card:nth-child(6) {
    animation-delay: 1.5s;
}

.float-card:nth-child(7) {
    animation-delay: 1.8s;
}

.float-card:nth-child(8) {
    animation-delay: 2.1s;
}

.float-card:nth-child(9) {
    animation-delay: 2.4s;
}

@keyframes card-hover-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px) !important;
    border-color: var(--primary-blue);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: var(--background);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
}

.float-step {
    animation: step-float 4s ease-in-out infinite;
}

.float-step:nth-child(odd) {
    animation-name: step-float-alt;
}

@keyframes step-float {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@keyframes step-float-alt {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.step-connector {
    width: 2px;
    height: 24px;
    background: var(--border-light);
    margin-left: 23px;
}

.animated-connector {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--border-light) 100%);
    animation: connector-pulse 2s ease-in-out infinite;
}

@keyframes connector-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ===== Why Choose Us Section ===== */
.why-us {
    background: var(--background-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.why-card {
    background: var(--background);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px) !important;
    border-color: var(--primary-blue);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    transition: transform 0.5s;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.rotate-hover:hover {
    transform: rotate(360deg) scale(1.1);
}

.why-card h3 {
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== Disclaimer Section ===== */
.disclaimer {
    padding: 60px 0;
    background: var(--background);
}

.disclaimer-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: var(--radius-lg);
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #D97706;
}

.disclaimer-icon svg {
    width: 100%;
    height: 100%;
}

.disclaimer-content h3 {
    font-size: 1.1rem;
    color: #92400E;
    margin-bottom: 8px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #78350F;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.cta .btn-primary:hover {
    background: var(--background-light);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    padding: 60px 0 30px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-accent {
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact h4,
.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Media Queries ===== */
@media (min-width: 640px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .disclaimer-box {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        text-align: left;
        flex: 1;
        max-width: 550px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-slider {
        flex: 1;
        max-width: 450px;
    }

    section {
        padding: 100px 0;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .about-text {
        flex: 2;
    }

    .about-visual {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3.25rem;
    }
}

/* ===== Booking Modal ===== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.booking-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0) scale(1);
}

.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    background: var(--background-blue);
}

.booking-modal-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.booking-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.booking-modal-close:hover {
    background: var(--primary-blue);
    transform: rotate(90deg);
}

.booking-modal-close:hover svg {
    stroke: white;
}

.booking-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dark);
}

.booking-modal-body {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

.booking-modal-body iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.booking-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--background-light);
    text-align: center;
}

.booking-modal-footer p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Modal responsive */
@media (min-width: 640px) {
    .booking-modal-body {
        min-height: 600px;
    }

    .booking-modal-body iframe {
        min-height: 600px;
    }
}

@media (max-width: 640px) {
    .booking-modal {
        padding: 10px;
    }

    .booking-modal-content {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }

    .booking-modal-header {
        padding: 16px 20px;
    }

    .booking-modal-header h3 {
        font-size: 1.1rem;
    }

    .booking-modal-body {
        min-height: 400px;
    }

    .booking-modal-body iframe {
        min-height: 400px;
    }

    .booking-modal-footer {
        padding: 12px 20px;
    }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}