/**
 * Homepage Consolidated CSS
 * All homepage styles in one organized file
 * No conflicts, no duplicates, no !important
 */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* Hero backgrounds */
.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background.active {
    opacity: 1;
}

/* Background images */
.hero-background.hotel-staff {
    background-image: url('../../images/hero/hotel-staff-1.jpg');
}

.hero-background.restaurant-staff {
    background-image: url('../../images/hero/restaurant-staff.jpg');
}

.hero-background.hotel-service {
    background-image: url('../../images/hero/hotel-service.jpg');
}

.hero-background.event-staff {
    background-image: url('../../images/hero/event-staff.jpg');
}

/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--brand-navy);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 1.1rem;
}

/* Hero title */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.02em;
}

/* Hero subtitle */
.hero-subhead {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

/* Hero features */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    color: var(--brand-cyan);
    font-size: 1.25rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-cta .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero microcopy */
.hero-microcopy {
    color: white;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* City indicators */
.city-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.city-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.city-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
}

/* ============================================
   STATS BANNER SECTION
   ============================================ */
.stats-banner {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #e0e0e0;
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.875rem;
    color: #4a4a4a;
    font-weight: 500;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    background: white;
    padding: 6rem 0;
}

.why-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-navy), var(--brand-cyan));
    margin: 0 auto 4rem;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 4rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    display: block;
}

.feature h3 {
    font-size: 1.5rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature p {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ============================================
   HOSPITALITY SECTION
   ============================================ */
.hospitality-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-navy);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hospitality-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.department-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.department-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.department-header i {
    font-size: 2.5rem;
    color: var(--brand-navy);
}

.department-header h3 {
    font-size: 2rem;
    color: var(--brand-navy);
    margin: 0;
    font-weight: 700;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.role-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.role-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.role-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.role-icon i {
    font-size: 1.75rem;
    color: white;
}

.role-card h4 {
    font-size: 1.25rem;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.role-card p {
    font-size: 0.875rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.role-stats {
    font-size: 0.875rem;
    color: #16a34a;
    font-weight: 600;
}

/* Hospitality stats bar */
.hospitality-stats {
    background: linear-gradient(135deg, #1a1560 0%, #0f0a3d 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(35, 26, 112, 0.3);
}

.hospitality-stats .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}

.hospitality-stats .stat-item::after {
    display: none;
}

.hospitality-stats .stat-item i {
    font-size: 2.5rem;
    opacity: 0.8;
    color: var(--brand-cyan);
}

.hospitality-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hospitality-stats .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* ============================================
   EXCELLENCE SECTION
   ============================================ */
.excellence-section {
    background: white;
    padding: 6rem 0;
}

.excellence-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.excellence-showcase {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.excellence-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.excellence-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.excellence-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.excellence-hero-image .hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(35, 26, 112, 0.9);
    margin-bottom: 0;
}

.excellence-hero-content h3 {
    font-size: 2.5rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.excellence-hero-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat {
    text-align: center;
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.hero-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: #4a4a4a;
}

/* Vetting Timeline */
.vetting-timeline {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-header h3 {
    font-size: 2rem;
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--brand-navy);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-icon {
    background: var(--brand-navy);
    color: white;
    transform: scale(1.1);
}

.timeline-step h4 {
    font-size: 1.125rem;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-step p {
    font-size: 0.875rem;
    color: #4a4a4a;
}

/* Excellence features */
.excellence-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.excellence-feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.excellence-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.excellence-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.excellence-feature h4 {
    font-size: 1.25rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.excellence-feature p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Trust banner */
.excellence-trust-banner {
    background: linear-gradient(135deg, #1a1560 0%, #0f0a3d 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.trust-text p {
    font-size: 0.875rem;
    opacity: 0.95;
}

.excellence-cta {
    text-align: center;
}

/* ============================================
   SOLUTIONS OVERVIEW
   ============================================ */
.solutions-overview {
    background: #f8f9fa;
    padding: 6rem 0;
}

.solutions-overview h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(35, 26, 112, 0.15);
}

.solution-card i {
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    display: block;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.solution-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

.cta-wrapper {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--brand-navy);
    color: var(--brand-navy);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--brand-navy);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   STAFF SHOWCASE
   ============================================ */
.staff-showcase-section {
    background: white;
    padding: 6rem 0;
}

.staff-showcase-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.showcase-tab {
    background: #f8f9fa;
    border: 2px solid transparent;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-tab:hover {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}

.showcase-tab.active {
    background: var(--brand-navy);
    color: white;
    border-color: var(--brand-navy);
}

.showcase-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--brand-navy);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.showcase-details h3 {
    font-size: 2rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-details p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--brand-navy);
    margin-top: 0.25rem;
}

.feature-item strong {
    display: block;
    color: var(--brand-navy);
    margin-bottom: 0.25rem;
}

.feature-item span {
    color: #4a4a4a;
    font-size: 0.875rem;
}

.showcase-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.process-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 4rem;
    font-weight: 800;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--brand-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(35, 26, 112, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step p {
    color: #4a4a4a;
    font-size: 1rem;
}

.step-arrow {
    position: absolute;
    right: -2rem;
    top: 35px;
    color: var(--brand-cyan);
    font-size: 2rem;
}

.process-note {
    text-align: center;
    font-style: italic;
    color: #666666;
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    background: white;
    padding: 6rem 0;
}

.social-proof h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 4rem;
    font-weight: 800;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
}

.testimonial i {
    font-size: 3rem;
    color: var(--brand-navy);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial cite {
    display: block;
    color: #666666;
    font-style: normal;
    font-weight: 600;
}

.case-study {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.case-study h3 {
    font-size: 2rem;
    color: var(--brand-navy);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.case-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333333;
}

.case-content strong {
    color: var(--brand-navy);
    font-weight: 700;
}

/* ============================================
   DUAL CONVERSION
   ============================================ */
.dual-conversion {
    background: linear-gradient(135deg, #1a1560 0%, #0f0a3d 100%);
    padding: 6rem 0;
}

.conversion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.conversion-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.conversion-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.conversion-box i {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.conversion-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.conversion-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hospitality-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .excellence-hero {
        grid-template-columns: 1fr;
    }
    
    .excellence-features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .conversion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subhead {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Sections */
    section h2 {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    /* Hospitality */
    .hospitality-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    /* Timeline */
    .timeline-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-steps::before {
        display: none;
    }
    
    /* Solutions */
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Showcase */
    .showcase-tabs {
        flex-wrap: wrap;
    }
}