/**
 * MICE Page Styles — Modern Redesign
 */

/* ==========================================================================
   Scroll Reveal Animation System
   ========================================================================== */

/* Only hide elements when JS observer is ready (progressive enhancement) */
.mice-observe-ready .mice-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.mice-observe-ready .mice-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mice-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.mice-observe-ready .mice-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mice-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.mice-observe-ready .mice-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.mice-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for child elements */
.mice-stagger > *:nth-child(1) { transition-delay: 0ms; }
.mice-stagger > *:nth-child(2) { transition-delay: 100ms; }
.mice-stagger > *:nth-child(3) { transition-delay: 200ms; }
.mice-stagger > *:nth-child(4) { transition-delay: 300ms; }

/* ==========================================================================
   Shared Section Label
   ========================================================================== */

.mice-section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #5B21B6;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-4);
}

/* ==========================================================================
   CTA Buttons (Amber Gradient)
   ========================================================================== */

.mice-btn-cta {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #ffffff;
    font-weight: 700;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    border: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.mice-btn-cta:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.mice-btn-cta-outline {
    background: transparent;
    color: #5B21B6;
    font-weight: 700;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    border: 2px solid #5B21B6;
    transition: all var(--transition-base);
}

.mice-btn-cta-outline:hover {
    background: #5B21B6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.3);
}

/* ==========================================================================
   Hero Section — Full Viewport, Dark Purple
   ========================================================================== */

.mice-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1046 0%, #2d1560 30%, #5B21B6 70%, #7c3aed 100%);
    padding: 120px 0 100px;
}

.mice-hero .container {
    position: relative;
    z-index: 2;
}

.mice-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Decorative floating shapes */
.mice-hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.mice-hero-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.08;
    background: #ffffff;
}

.mice-hero-shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: mice-float 20s ease-in-out infinite;
}

.mice-hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    animation: mice-float 15s ease-in-out infinite reverse;
}

.mice-hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 15%;
    animation: mice-float 18s ease-in-out infinite 3s;
}

@keyframes mice-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(4deg); }
}

/* Badge pill */
.mice-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    animation: mice-hero-fadeInDown 0.8s ease-out 0.2s both;
}

.mice-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    animation: mice-hero-fadeInDown 0.8s ease-out 0.4s both;
}

.mice-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: mice-hero-fadeInDown 0.8s ease-out 0.6s both;
}

.mice-hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: mice-hero-fadeInDown 0.8s ease-out 0.8s both;
}

.mice-btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
    font-size: var(--text-base);
}

.mice-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Scroll indicator */
.mice-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mice-hero-scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.mice-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: #ffffff;
    border-radius: 2px;
    animation: mice-scroll-pulse 2s ease-in-out infinite;
}

@keyframes mice-scroll-pulse {
    0% { top: -50%; }
    100% { top: 150%; }
}

@keyframes mice-hero-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Elevate Your Events
   ========================================================================== */

.mice-elevate {
    padding: 100px 0;
    background: #ffffff;
}

.mice-elevate-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mice-elevate-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #5B21B6, #F59E0B);
    border-radius: 2px;
    margin: 0 auto var(--space-8);
}

.mice-elevate-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.mice-elevate p {
    font-size: var(--text-lg);
    color: #4b5563;
    line-height: 1.8;
}

/* ==========================================================================
   Our Premium Services — Alternating Layout
   ========================================================================== */

.mice-services {
    padding: 100px 0 120px;
    background: #f9fafb;
}

.mice-services-header {
    margin-bottom: 80px;
}

.mice-services-heading {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.mice-services-subtitle {
    font-size: var(--text-base);
    color: #6b7280;
    margin-bottom: 0;
}

/* Alternating service rows */
.mice-service-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.mice-service-row:last-child {
    margin-bottom: 0;
}

.mice-service-row-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.mice-service-row-reverse .mice-service-visual {
    order: 2;
}

.mice-service-row-reverse .mice-service-info {
    order: 1;
}

.mice-service-img-wrapper {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 3;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.mice-service-img-wrapper:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-6px);
}

.mice-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.mice-service-img-wrapper:hover .mice-service-img {
    transform: scale(1.04);
}

.mice-service-info h4 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: var(--space-4);
}

.mice-service-info p {
    font-size: var(--text-lg);
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==========================================================================
   Our Approach — Glass Cards with Timeline
   ========================================================================== */

.mice-approach {
    padding: 100px 0;
    background: linear-gradient(180deg, #f3f0ff 0%, #f9fafb 100%);
}

.mice-approach-header {
    text-align: center;
    margin-bottom: 80px;
}

.mice-approach-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.mice-approach-subtitle {
    font-size: var(--text-lg);
    color: #6b7280;
    font-style: italic;
    margin-bottom: 0;
}

.mice-approach-steps {
    position: relative;
}

/* Solid connector line */
.mice-approach-connector {
    position: absolute;
    top: 72px;
    left: calc(16.67% - 0.5rem);
    right: calc(16.67% - 0.5rem);
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed 10%, #7c3aed 90%, transparent);
    z-index: 0;
}

.mice-approach-step {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    position: relative;
    z-index: 1;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
}

.mice-approach-step:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: rgba(91, 33, 182, 0.15);
}

.mice-approach-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #f3f0ff 0%, #ede9fe 100%);
    border: 2px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.mice-approach-step:hover .mice-approach-icon {
    border-color: #5B21B6;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    box-shadow: 0 0 0 6px rgba(91, 33, 182, 0.08), var(--shadow-md);
}

.mice-approach-icon i {
    font-size: var(--text-2xl);
    color: #5B21B6;
    transition: transform var(--transition-base);
}

.mice-approach-step:hover .mice-approach-icon i {
    transform: scale(1.1);
}

.mice-approach-step-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--space-2);
}

.mice-approach-step-desc {
    font-size: var(--text-sm);
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Why Choose Us — Feature Card Grid
   ========================================================================== */

.mice-why-us {
    padding: 100px 0;
    background: #ffffff;
}

.mice-why-us-header {
    margin-bottom: 60px;
}

.mice-why-us-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.mice-why-us-subtitle {
    font-size: var(--text-lg);
    color: #6b7280;
    margin-bottom: 0;
}

.mice-why-us-card {
    text-align: center;
    padding: 2.5rem var(--space-6);
    border-radius: 1.25rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Gradient top border accent */
.mice-why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5B21B6, #F59E0B);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mice-why-us-card:hover {
    background: #ffffff;
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: transparent;
}

.mice-why-us-card:hover::before {
    opacity: 1;
}

.mice-why-us-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all var(--transition-base);
}

.mice-why-us-card:hover .mice-why-us-icon-wrap {
    background: linear-gradient(135deg, #5B21B6 0%, #7c3aed 100%);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.3);
    transform: scale(1.05);
}

.mice-why-us-icon-wrap i {
    font-size: var(--text-2xl);
    color: #5B21B6;
    transition: color var(--transition-base);
}

.mice-why-us-card:hover .mice-why-us-icon-wrap i {
    color: #ffffff;
}

.mice-why-us-text {
    font-size: var(--text-base);
    font-weight: 500;
    color: #374151;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   CTA Banner — Dramatic Purple Gradient
   ========================================================================== */

.mice-cta-banner {
    padding: 140px 0;
    background: linear-gradient(135deg, #1e1046 0%, #2d1560 30%, #5B21B6 70%, #7c3aed 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating shapes (same as hero) */
.mice-cta-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.mice-cta-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.08;
    background: #ffffff;
}

.mice-cta-shape-1 {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -80px;
    animation: mice-float 20s ease-in-out infinite;
}

.mice-cta-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -60px;
    animation: mice-float 15s ease-in-out infinite reverse;
}

.mice-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.mice-cta-banner .container {
    position: relative;
    z-index: 1;
}

.mice-cta-banner-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.mice-cta-banner-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mice-btn-cta-lg {
    padding: var(--space-4) 2.5rem;
    font-size: var(--text-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3), 0 0 40px rgba(245, 158, 11, 0.15);
}

.mice-btn-cta-lg:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4), 0 0 60px rgba(245, 158, 11, 0.2);
}

.mice-btn-cta-lg i {
    transition: transform var(--transition-base);
}

.mice-btn-cta-lg:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Destination Section — Premium Hover Reveal
   ========================================================================== */

.mice-destination {
    padding: 100px 0;
    background: #f9fafb;
}

.mice-destination-header {
    margin-bottom: 60px;
}

.mice-destination-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.mice-destination-subtitle {
    display: none;
}

/* Destination Cards */
.mice-destination-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.mice-destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.mice-destination-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mice-destination-card:hover .mice-destination-card-img {
    transform: scale(1.08);
}

.mice-destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.0) 70%
    );
    z-index: 1;
    transition: background 0.5s ease;
}

.mice-destination-card:hover .mice-destination-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.05) 70%
    );
}

.mice-destination-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mice-destination-card-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: var(--space-2);
}

.mice-destination-card-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.mice-destination-card:hover .mice-destination-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Button hidden by default, revealed on hover */
.mice-btn-destination {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base) 0.1s;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
}

.mice-destination-card:hover .mice-btn-destination {
    opacity: 1;
    transform: translateY(0);
}

.mice-btn-destination:hover {
    background: #ffffff;
    color: #1f2937;
    border-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Specialists Section — White Cards with Avatars
   ========================================================================== */

.mice-specialists {
    padding: 100px 0;
    background: #ffffff;
}

.mice-specialists-header {
    margin-bottom: 60px;
}

.mice-specialists-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

/* Specialist Cards */
.mice-specialist-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    padding: 2.5rem var(--space-6) var(--space-8);
    text-align: center;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid #f3f4f6;
}

.mice-specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5B21B6, #9333ea, #F59E0B);
    border-radius: 1.25rem 1.25rem 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mice-specialist-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.mice-specialist-card:hover::before {
    opacity: 1;
}

/* Avatar initials circle */
.mice-specialist-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #5B21B6 0%, #7c3aed 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.25);
    transition: all var(--transition-base);
}

.mice-specialist-card:hover .mice-specialist-avatar {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(91, 33, 182, 0.35);
}

.mice-specialist-avatar span {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.mice-specialist-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--space-4);
}

.mice-specialist-bio {
    font-size: var(--text-sm);
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Contact Section — Modern Full-Width Card
   ========================================================================== */

.mice-contact {
    padding: 100px 0;
    background: url('../uploads/media/d29b15a8-5e40-4fb3-904c-1499920661f0.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.mice-contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(30, 16, 70, 0.92) 0%,
        rgba(91, 33, 182, 0.85) 50%,
        rgba(45, 21, 96, 0.90) 100%
    );
    z-index: 1;
}

.mice-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.mice-contact-heading {
    display: none;
}

.mice-section-label-light {
    color: rgba(255, 255, 255, 0.8);
}

.mice-contact .mice-section-label {
    color: rgba(255, 255, 255, 0.8);
}

.mice-contact-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.mice-contact-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.mice-contact-desc strong {
    color: #ffffff;
}

.mice-contact-form-section {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
}

.mice-contact-form-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--space-2);
}

.mice-contact-form-subtitle {
    font-size: var(--text-base);
    color: #6b7280;
    margin-bottom: var(--space-6);
}

.mice-contact-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: #6b7280;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mice-contact-input,
.mice-contact-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: #1f2937;
    transition: all var(--transition-base);
    font-family: inherit;
}

.mice-contact-input:focus,
.mice-contact-textarea:focus {
    outline: none;
    border-color: #5B21B6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.08);
    transform: translateY(-1px);
}

.mice-contact-input::placeholder,
.mice-contact-textarea::placeholder {
    color: #c4c9d4;
}

.mice-contact-input.is-invalid,
.mice-contact-textarea.is-invalid {
    border-color: #ef4444;
}

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

.mice-contact-error {
    font-size: var(--text-xs);
    color: #ef4444;
    margin-top: var(--space-1);
}

.mice-btn-contact-submit {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    border-radius: var(--radius-lg);
}

.mice-btn-contact-submit.is-submitted {
    background: #22c55e;
    color: #ffffff;
    cursor: default;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.mice-contact-form input[readonly],
.mice-contact-form textarea[readonly] {
    opacity: 0.7;
    cursor: default;
}

/* ==========================================================================
   Responsive — Tablet (≤991.98px)
   ========================================================================== */

@media (max-width: 991.98px) {
    .mice-hero {
        min-height: 70vh;
        padding: 100px 0 80px;
    }

    .mice-hero-title {
        font-size: 2.5rem;
    }

    .mice-hero-shape-1 { width: 300px; height: 300px; }
    .mice-hero-shape-2 { width: 200px; height: 200px; }
    .mice-hero-shape-3 { display: none; }

    .mice-elevate {
        padding: 80px 0;
    }

    .mice-services {
        padding: 80px 0;
    }

    .mice-services-header {
        margin-bottom: 60px;
    }

    .mice-service-row,
    .mice-service-row-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mice-service-row-reverse .mice-service-visual { order: 0; }
    .mice-service-row-reverse .mice-service-info { order: 0; }
    .mice-service-info { text-align: center; }
    .mice-service-row { margin-bottom: 60px; }

    .mice-approach {
        padding: 80px 0;
    }

    .mice-approach-header {
        margin-bottom: 50px;
    }

    .mice-approach-connector {
        display: none;
    }

    .mice-approach-step {
        margin-bottom: var(--space-6);
    }

    .mice-why-us {
        padding: 80px 0;
    }

    .mice-cta-banner {
        padding: 80px 0;
    }

    .mice-destination {
        padding: 80px 0;
    }

    /* On touch devices, always show destination content */
    .mice-destination-card-desc,
    .mice-btn-destination {
        opacity: 1;
        transform: translateY(0);
    }

    .mice-specialists {
        padding: 80px 0;
    }

    .mice-contact {
        padding: 80px 0;
    }
}

/* ==========================================================================
   Responsive — Mobile (≤575.98px)
   ========================================================================== */

@media (max-width: 575.98px) {
    .mice-hero {
        min-height: 60vh;
        padding: 80px 0 60px;
    }

    .mice-hero-title {
        font-size: 2rem;
    }

    .mice-hero-subtitle {
        font-size: var(--text-base);
    }

    .mice-hero-scroll-indicator {
        display: none;
    }

    .mice-btn-cta-lg {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }

    .mice-btn-hero-secondary {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }

    .mice-elevate {
        padding: 60px 0;
    }

    .mice-elevate-title {
        font-size: var(--text-2xl);
    }

    .mice-elevate p {
        font-size: var(--text-base);
    }

    .mice-services {
        padding: 60px 0 80px;
    }

    .mice-services-heading {
        font-size: var(--text-2xl);
    }

    .mice-service-info h4 {
        font-size: var(--text-2xl);
    }

    .mice-service-info p {
        font-size: var(--text-base);
    }

    .mice-approach {
        padding: 60px 0;
    }

    .mice-approach-title {
        font-size: var(--text-2xl);
    }

    .mice-approach-icon {
        width: 64px;
        height: 64px;
    }

    .mice-approach-icon i {
        font-size: var(--text-xl);
    }

    .mice-why-us {
        padding: 60px 0;
    }

    .mice-why-us-title {
        font-size: var(--text-2xl);
    }

    .mice-why-us-card {
        padding: var(--space-8) var(--space-5);
    }

    .mice-cta-banner {
        padding: 60px 0;
    }

    .mice-cta-banner-title {
        font-size: var(--text-3xl);
    }

    .mice-cta-banner-subtitle {
        font-size: var(--text-base);
    }

    .mice-destination {
        padding: 60px 0;
    }

    .mice-destination-title {
        font-size: var(--text-2xl);
    }

    .mice-destination-card {
        aspect-ratio: 3 / 4;
    }

    .mice-destination-card-title {
        font-size: var(--text-lg);
    }

    .mice-destination-card-content {
        padding: var(--space-5);
    }

    .mice-specialists {
        padding: 60px 0;
    }

    .mice-specialists-title {
        font-size: var(--text-2xl);
    }

    .mice-specialist-card {
        padding: var(--space-8) var(--space-5) var(--space-6);
    }

    .mice-specialist-avatar {
        width: 64px;
        height: 64px;
    }

    .mice-specialist-avatar span {
        font-size: var(--text-xl);
    }

    .mice-specialist-name {
        font-size: var(--text-lg);
    }

    .mice-contact {
        padding: 60px 0;
    }

    .mice-contact-title {
        font-size: var(--text-2xl);
    }

    .mice-contact-form-section {
        padding: var(--space-6);
        border-radius: 1rem;
    }

    .mice-contact-form-title {
        font-size: var(--text-xl);
    }

    .mice-contact-input,
    .mice-contact-textarea {
        font-size: var(--text-sm);
    }
}
