/* ========== GLOBAL STYLES ========== */

:root {
    --primary: #0c4da2;
    --secondary: #58585a;
    --navy: #0B1F3A;
    --slate: #64748b;
    --white: #ffffff;
    --off-white: #F7F9FC;
    --line: rgba(11, 31, 58, 0.08);

    --font-main: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    color: #111;
}

/* ========== NAVIGATION ========== */

.navbar {
    background: rgba(12, 77, 162, 0.90) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(8, 40, 100, 0.25);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand .navbar-item {
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
}

.navbar-brand .navbar-item img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
    filter: brightness(0) invert(1);
}

.navbar-brand .navbar-item:hover img {
    transform: scale(1.05);
}

.navbar-item {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: none !important;
}

.navbar-end .navbar-item {
    position: relative;
    padding-bottom: 0.5rem;
}

.navbar-end .navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.75);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-item:hover {
    color: var(--white);
    background: transparent !important;
}

.navbar-end .navbar-item:hover::after,
.navbar-end .navbar-item.is-active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-item.is-active {
    color: var(--white);
}

.navbar-burger {
    color: rgba(255, 255, 255, 0.88);
}

.navbar-menu.is-active {
    background: rgba(12, 77, 162, 0.97);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.navbar-menu.is-active .navbar-item {
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    justify-content: center;
}

@media screen and (max-width: 1023px) {
    .navbar-end .navbar-item::after {
        display: none;
    }

    .navbar-menu.is-active .navbar-item:hover,
    .navbar-menu.is-active .navbar-item.is-active {
        background: rgba(255, 255, 255, 0.12) !important;
        border-radius: 10px;
    }
}

/* ========== HERO SECTION ========== */

.hero.is-primary {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            160deg,
            rgba(252, 254, 255, 0.80) 0%,
            rgba(236, 246, 255, 0.84) 50%,
            rgba(218, 236, 255, 0.88) 100%
        ),
        url('../assets/hero.png');
    background-size: cover, cover;
    background-position: center, center;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%, center; }
    50% { background-position: 100% 50%, center; }
}

.hero.is-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(12, 77, 162, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 88, 90, 0.04) 0%, transparent 50%);
}

.hero.is-primary::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(12, 77, 162, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: floatOrb 20s ease-in-out infinite;
    filter: blur(80px);
    z-index: 1;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 50px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.9); }
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

.hero-body {
    padding: 1rem 1.5rem 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-logo {
    margin-bottom: 0;
    animation: logoReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s backwards;
    position: relative;
    display: inline-block;
}

.hero-logo img {
    height: 88px;
    width: auto;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-title {
    font-size: 8.5rem;
    font-weight: 900;
    color: var(--navy) !important;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s backwards;
    padding: 2rem 3rem;
    border-radius: 20px;
    display: inline-block;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--slate) !important;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.3s backwards;
}

.hero-buttons {
    margin-top: 2.5rem;
    gap: 1rem;
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.62s backwards;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 4px 24px rgba(12, 77, 162, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    max-width: 480px;
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.46s backwards;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(11, 31, 58, 0.12);
    flex-shrink: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-dot,
.stat-accent {
    color: var(--primary);
    font-weight: 900;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.97);
        filter: blur(6px);
    }
    55% { filter: blur(0); }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(-28px) scale(0.88);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ========== BUTTONS ========== */

.button.is-primary {
    background: linear-gradient(135deg, var(--primary), #0d5ab8);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(12, 77, 162, 0.2);
    position: relative;
    overflow: hidden;
}

.button.is-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.button.is-primary:hover::before {
    left: 100%;
}

.button.is-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(12, 77, 162, 0.35);
}

.button.is-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
}

.button.is-white:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    color: var(--primary)
}

.button.is-outlined {
    border: 2px solid currentColor;
    background: transparent;
}

.services-button {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.services-button:hover {
    background: rgba(12, 77, 162, 0.08) !important;
    color: var(--primary) !important;
    box-shadow: 0 8px 24px rgba(12, 77, 162, 0.15);
}

/* ========== SECTIONS ========== */

.section {
    padding: 5rem 1.5rem;
    position: relative;
}

.section.is-medium {
    padding: 6rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Section background colors - zebra striping */
.section-off-white {
    background: var(--off-white);
}

.section-slate {
    background: #f1f5f9;
}

/* Gradient accent sections */
.section-accent {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.section-accent::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12, 77, 162, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-accent::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 88, 90, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ========== CARDS ========== */

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 246, 255, 0.82) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 8px 32px rgba(12, 77, 162, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.05), rgba(88, 88, 90, 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 28px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 28px 28px 0 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(12, 77, 162, 0.15);
    border-color: rgba(12, 77, 162, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(12, 77, 162, 0.25);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 32px rgba(12, 77, 162, 0.4);
}

.service-name {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--navy), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.7rem;
    text-align: center;
}

.service-price {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    vertical-align: bottom;
    margin-top: auto;
}

.price-tag {
    background: rgba(12, 77, 162, 0.08);
    border: 1px solid rgba(12, 77, 162, 0.2);
    border-radius: 16px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cursor-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 77, 162, 0.07) 0%, transparent 70%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* ========== ABOUT SECTION ========== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(12, 77, 162, 0.2);
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4 / 3;
    min-height: 450px;
    display: flex;
    align-items: stretch;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(12, 77, 162, 0.25);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

.credential-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.84) 0%, rgba(236, 246, 255, 0.76) 100%);
    backdrop-filter: blur(22px) saturate(200%);
    -webkit-backdrop-filter: blur(22px) saturate(200%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(12, 77, 162, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 5px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.credential-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(12, 77, 162, 0.15);
    border-left-width: 6px;
}

.credential-icon {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.credential-text {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
}

/* ========== REVIEWS ========== */

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 246, 255, 0.82) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(12, 77, 162, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    transition: opacity 0.5s ease;
}

.review-card:hover::before {
    opacity: 0.15;
}

.review-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px rgba(12, 77, 162, 0.15);
    border-color: rgba(12, 77, 162, 0.25);
}

.review-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(255, 184, 0, 0.3);
}

.review-text {
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.review-meta {
    color: var(--slate);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* ========== BOOKING SECTION ========== */

.booking-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 246, 255, 0.82) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(12, 77, 162, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.03), rgba(88, 88, 90, 0.01));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
    z-index: 0;
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 48px rgba(12, 77, 162, 0.15);
    border-color: rgba(12, 77, 162, 0.25);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary), #0d5ab8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(12, 77, 162, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(12, 77, 162, 0.4);
}

.timeline-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--navy), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.timeline-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(12, 77, 162, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(12, 77, 162, 0.2);
}

.timeline-description {
    color: var(--slate);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.timeline-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.timeline-btn {
    background: linear-gradient(135deg, var(--primary), #0d5ab8);
    color: var(--white);
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(12, 77, 162, 0.25);
    position: relative;
    overflow: hidden;
    width: 200px !important;
    white-space: nowrap;
}

.timeline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.timeline-btn:hover::before {
    left: 100%;
}

.timeline-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(12, 77, 162, 0.35);
}

.timeline-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Contact Section Styles */

/* Contact Section Width */
#contact .container {
    max-width: 1400px;
}

#contact.section {
    padding: 6rem 3rem;
}

/* Equal Height Columns */
#contact .columns.is-variable {
    align-items: stretch;
}

.contact-form-container,
.contact-info-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 246, 255, 0.82) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(12, 77, 162, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100%;
    height: 100%;
}

.contact-form-container:hover,
.contact-info-container:hover {
    box-shadow: 0 12px 40px rgba(12, 77, 162, 0.15);
    border-color: rgba(12, 77, 162, 0.2);
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-form-container .field:last-of-type {
    margin-top: auto;
}

.contact-form-container .label {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-container .input,
.contact-form-container .textarea {
    border-color: rgba(12, 77, 162, 0.15);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(247, 249, 252, 0.8);
    color: #aaa;
}

.contact-form-container .input:focus,
.contact-form-container .textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(12, 77, 162, 0.12);
    background-color: var(--white);
    color: var(--navy);
}

.input::placeholder, .textarea::placeholder {
    color: var(--slate);
    opacity: 0.7;
}

.contact-form-container .button.is-primary {
    margin-top: 1rem;
    padding: 0.85rem 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.05), rgba(88, 88, 90, 0.02));
    border-radius: 18px;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(12, 77, 162, 0.08);
}

.contact-info-item:hover {
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.1), rgba(88, 88, 90, 0.04));
    transform: translateX(6px);
    border-color: rgba(12, 77, 162, 0.15);
    box-shadow: 0 4px 16px rgba(12, 77, 162, 0.1);
}

.contact-info-icon {
    font-size: 2rem;
    line-height: 1;
}

.hours-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.05), rgba(88, 88, 90, 0.02));
    border-radius: 18px;
    border: 1px solid rgba(12, 77, 162, 0.08);
}

.hours-section .contact-info-icon {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.hours-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-content > p {
    text-align: center;
    margin-bottom: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(12, 77, 162, 0.12);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hours-row:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(12, 77, 162, 0.1);
    border-left-width: 5px;
}

.hours-row.closed {
    background: linear-gradient(to right, rgba(100, 116, 139, 0.04), transparent);
    border-left-color: var(--slate);
    opacity: 0.7;
}

.hours-row.closed:hover {
    background: linear-gradient(to right, rgba(100, 116, 139, 0.06), transparent);
}

.day-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.time-label {
    color: var(--slate);
    font-weight: 500;
    font-size: 0.9rem;
}

.hours-row.closed .day-label,
.hours-row.closed .time-label {
    color: var(--slate);
}

.social-links-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--line);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #0d5ab8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(12, 77, 162, 0.25);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-6px) rotate(5deg);
    box-shadow: 0 10px 28px rgba(12, 77, 162, 0.35);
}

.need-help-title {
    color: var(--primary) !important;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 246, 255, 0.82) 100%);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(12, 77, 162, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.info-box:hover {
    box-shadow: 0 12px 40px rgba(12, 77, 162, 0.18);
    border-color: rgba(12, 77, 162, 0.3);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 24px 24px 0 0;
}

.info-box p strong {
    color: var(--navy);
}

/* ========== FOOTER ========== */

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 1.5rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--primary);
}

/* ========== RESPONSIVE ========== */

@media screen and (max-width: 1024px) {
    .hero-logo img {
        height: 65px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-stats-row {
        gap: 1.5rem;
        padding: 1rem 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .navbar-brand .navbar-item img {
        height: 55px;
    }

    .footer-logo img {
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .hero-logo img {
        height: 60px;
    }

    .hero-body {
        padding: 4rem 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
        padding: 1.5rem 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats-row {
        gap: 1.25rem;
        padding: 0.9rem 1.5rem;
        max-width: 360px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar-brand .navbar-item img {
        height: 50px;
    }

    .footer-logo img {
        height: 45px;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
        margin-bottom: 2rem;
        min-height: auto;
    }

    .contact-info-item {
        padding: 1.2rem;
    }

    #contact .container {
        padding: 0 1.5rem;
    }

    #contact.section {
        padding: 4rem 1.5rem;
    }

    /* Make contact section columns stack on tablet */
    .columns.is-variable .column.is-4 {
        width: 100%;
    }

    .button.is-primary,
    .button.is-white {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .button {
        width: 100%;
        max-width: 400px;
    }

    .section-eyebrow {
        font-size: 0.75rem;
    }

    .about-image {
        margin-bottom: 2rem;
        min-height: 0;
        max-height: 340px;
        width: 100%;
    }

    /* Centre content on mobile */
    .about-text {
        text-align: center;
    }

    .about-text .title,
    .about-text .subtitle {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .credential-list {
        align-items: center;
    }

    .credential-item {
        text-align: left;
        max-width: 400px;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .columns.is-multiline .column.is-3 {
        width: 100%;
    }

    .review-card {
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .info-box {
        text-align: center;
    }

    .info-box p {
        text-align: center;
    }

    .hero-buttons .button.is-large {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Timeline responsive */
    .timeline-item {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .timeline-item .timeline-icon {
        align-self: center;
    }

    .timeline-item:hover {
        transform: translateY(-4px);
    }

    .timeline-header {
        flex-direction: column;
        align-items: center;
    }

    .timeline-actions {
        width: 100%;
        flex-direction: column;
    }

    .timeline-btn {
        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-logo img {
        height: 50px;
    }

    .hero-body {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1;
        padding: 1rem 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
    }

    .hero-stats-row {
        gap: 0.75rem;
        padding: 0.85rem 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .navbar-brand .navbar-item img {
        height: 45px;
    }

    .footer-logo img {
        height: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .service-name {
        font-size: 1.3rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }

    .contact-info-item:hover {
        transform: translateX(0);
    }

    .contact-form-container,
    .contact-info-container {
        margin-bottom: 1.5rem;
    }

    .hours-row:hover {
        transform: translateX(0);
    }

    .social-links {
        justify-content: center;
    }

    .booking-card {
        margin-bottom: 1.5rem;
    }

    .booking-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .booking-title {
        font-size: 1.4rem;
    }

    .booking-buttons {
        flex-direction: column;
    }

    .booking-btn {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .about-text .button {
        display: block;
        margin: 0 auto;
    }

    .hero-buttons .button.is-large {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.05;
        padding: 0.75rem 1rem;
    }

    .hero-logo img {
        height: 30px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-stats-row {
        gap: 0.75rem;
        padding: 0.65rem 1rem;
    }
}

/* ========== ANIMATIONS ========== */

/* ---- Scroll progress bar ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--secondary), var(--primary), #4d9fff);
    background-size: 200% auto;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(12, 77, 162, 0.55);
    animation: progressShimmer 2.5s linear infinite;
}

@keyframes progressShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ---- Navbar compact on scroll ---- */
.navbar.is-scrolled {
    padding: 0.35rem 2rem !important;
    box-shadow: 0 4px 28px rgba(8, 40, 100, 0.45) !important;
}

/* ---- Credential icon pop ---- */
@keyframes iconPop {
    0%   { transform: scale(0.3) rotate(-20deg); opacity: 0; }
    55%  { transform: scale(1.25) rotate(6deg);  opacity: 1; }
    80%  { transform: scale(0.9)  rotate(-3deg); }
    100% { transform: scale(1)    rotate(0deg);  opacity: 1; }
}

.credential-item.is-visible .credential-icon {
    animation: iconPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

/* ---- Review star stagger ---- */
@keyframes starPop {
    from { opacity: 0; transform: scale(0) rotate(-25deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.review-card.is-visible .star {
    display: inline-block;
    animation: starPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.review-card.is-visible .star:nth-child(1) { animation-delay: calc(var(--reveal-delay, 0ms) + 130ms); }
.review-card.is-visible .star:nth-child(2) { animation-delay: calc(var(--reveal-delay, 0ms) + 200ms); }
.review-card.is-visible .star:nth-child(3) { animation-delay: calc(var(--reveal-delay, 0ms) + 270ms); }
.review-card.is-visible .star:nth-child(4) { animation-delay: calc(var(--reveal-delay, 0ms) + 340ms); }
.review-card.is-visible .star:nth-child(5) { animation-delay: calc(var(--reveal-delay, 0ms) + 410ms); }

/* ---- Timeline bullet pulse ---- */
@keyframes bulletPulse {
    0%   { box-shadow: 0 0 0 0 rgba(12, 77, 162, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(12, 77, 162, 0); }
    100% { box-shadow: 0 0 0 0 rgba(12, 77, 162, 0); }
}

.timeline-item.is-visible::before {
    animation: bulletPulse 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 300ms);
}

/* ---- Section eyebrow line draw ---- */
@keyframes lineGrow {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

.section-header.is-visible .section-eyebrow::before {
    animation: lineGrow 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* ---- Stat number count-up display ---- */
[data-count] {
    display: inline;
    font-variant-numeric: tabular-nums;
}

/* Scroll reveal — base hidden state */
[data-reveal] {
    opacity: 0;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(52px) scale(0.96);
        filter: blur(4px);
    }
    55% { filter: blur(0); }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes revealFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes revealFromRight {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes revealCard {
    from {
        opacity: 0;
        transform: translateY(64px) scale(0.93);
        filter: blur(5px);
    }
    50% { filter: blur(0); }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

[data-reveal].is-visible {
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible,
[data-reveal="up"].is-visible {
    animation-name: revealUp;
    animation-duration: 0.9s;
}

[data-reveal="left"].is-visible {
    animation-name: revealFromLeft;
    animation-duration: 0.88s;
}

[data-reveal="right"].is-visible {
    animation-name: revealFromRight;
    animation-duration: 0.88s;
}

[data-reveal="card"].is-visible {
    animation-name: revealCard;
    animation-duration: 1.05s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Floating animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Pulse animation for emphasis */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Glow effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(12, 77, 162, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(12, 77, 162, 0.5), 0 0 40px rgba(12, 77, 162, 0.3);
    }
}

/* ========== SECTION ENHANCEMENTS ========== */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(12, 77, 162, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(12, 77, 162, 0.15);
    border-radius: 100px;
    position: relative;
}

.section-eyebrow::before {
    content: '';
    position: static;
    display: block;
    width: 1.1rem;
    height: 3px;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
    transform-origin: left center;
}


/* ========== PERFORMANCE ========== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    will-change: transform;
}

/* ========== ACCESSIBILITY ========== */


/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    [data-reveal].is-visible {
        animation: none !important;
    }

    .credential-item.is-visible .credential-icon,
    .review-card.is-visible .star,
    .section-header.is-visible .section-eyebrow::before {
        animation: none !important;
    }

    .scroll-progress {
        animation: none !important;
    }
}

/* ========== UTILITIES ========== */

.has-text-primary {
    color: var(--primary) !important;
}

.has-text-secondary {
    color: var(--secondary) !important;
}

.has-background-off-white {
    background-color: var(--off-white) !important;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}