/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    background-color: #fafafa;
    padding-top: 80px; /* Space for fixed header */
}

/* Premium typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #222;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Premium button styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052a3 0%, #004080 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid #e0e0e0;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Icon button styles */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(0, 102, 204, 0.2);
    transform: scale(1.1);
}

.icon-btn:active {
    transform: scale(0.95);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0 0 0;
    font-weight: 500;
}

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

.main-nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.main-nav ul li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.main-nav ul li a.active {
    color: white;
    background: rgba(0, 102, 204, 0.2);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header actions */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: rgba(0, 102, 204, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(0, 102, 204, 1);
    transform: translateY(-3px) scale(1.05);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Reset and base styles continued */
a {
    text-decoration: none;
    color: inherit;
}

/* Premium button styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052a3 0%, #004080 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid #e0e0e0;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Icon button styles */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(0, 102, 204, 0.2);
    transform: scale(1.1);
}

.icon-btn:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.slide-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 3;
    max-width: 400px;
}

.slide-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 350px;
    line-height: 1.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 40%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 4;
}

.hero-content {
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-overlay p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-buttons .btn-primary, 
.hero-buttons .btn-secondary {
    padding: 16px 32px;
    font-size: 1.15rem;
}

/* Statistics Section */
.stats {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #00b3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-item p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Everything Connected Section */
.connected {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.connected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.connected h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.connected h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.connected-header {
    margin-bottom: 48px;
}

.connected-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.connected-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    min-width: 120px;
    position: relative;
    border: 1px solid #f0f0f0;
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0ff;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.flow-step:hover .step-icon {
    background: linear-gradient(135deg, #0066cc, #00b3ff);
    color: white;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.flow-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.flow-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #0066cc;
    stroke-width: 2;
    fill: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0066cc;
    color: white;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-buttons {
    margin-bottom: 20px;
}

.hero-buttons .btn-primary, .hero-buttons .btn-secondary {
    margin: 0 10px;
}

/* Statistics Section */
.stats {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

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

.stat-item {
    flex: 1;
    min-width: 180px;
    padding: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Everything Connected Section */
.connected {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.connected h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.connected-header {
    margin-bottom: 40px;
}

.connected-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.connected-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    background-color: #e9ecef;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.flow-step h4 {
    font-size: 1rem;
    color: #333;
    text-align: center;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #0066cc;
}

/* Complete Hospitality Ecosystem Section */
.ecosystem {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.ecosystem h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.ecosystem h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.ecosystem-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #e0e0ff;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #00b3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.ecosystem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecosystem-card h3 svg {
    width: 20px;
    height: 20px;
}

.ecosystem-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Designed For Hospitality Businesses Section */
.designed-for {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.designed-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.designed-for h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.designed-for h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.business-types {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.business-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 160px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0ff;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #00b3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.business-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.business-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

.business-card:hover .business-icon {
    background: linear-gradient(135deg, #0066cc, #00b3ff);
    color: white;
}

.business-icon svg {
    width: 28px;
    height: 28px;
}

.business-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.business-description {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 24px auto 0;
    line-height: 1.7;
}

/* Why Proline PMS Section */
.why-proline {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-proline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.why-proline h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.why-proline h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.why-item {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #e0e0ff;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #00b3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-item:hover::before {
    opacity: 1;
}

.why-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-item h3 svg {
    width: 20px;
    height: 20px;
}

.why-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* Dashboard Showcase Section */
.dashboard-showcase {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dashboard-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.dashboard-showcase h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.dashboard-showcase h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    background: white;
    color: #666;
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tab-btn:hover::before {
    transform: translateX(100%);
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, #0066cc, #00b3ff);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.tab-btn:active {
    transform: scale(0.98);
}

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

.tab-content {
    display: none;
    text-align: left;
    animation: fadeIn 0.6s ease-out;
}

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

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

.dashboard-image {
    background: #f8f9ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.dashboard-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(0, 102, 204, 0.06));
    pointer-events: none;
}

.placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.placeholder svg {
    width: 48px;
    height: 48px;
    color: #0066cc;
    margin-bottom: 12px;
}

.dashboard-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* Hospitality Performance Metrics Section */
.performance-metrics {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.performance-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.performance-metrics h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.performance-metrics h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.metric-item {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #e0e0ff;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #00b3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-item:hover::before {
    opacity: 1;
}

.metric-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-item h3 svg {
    width: 16px;
    height: 16px;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 16px 0;
    line-height: 1;
}

.metric-item p {
    font-size: 1rem;
    color: #666;
    max-width: 180px;
}

.metrics-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 24px auto 0;
    line-height: 1.7;
}

/* One Platform. Unlimited Possibilities. Section */
.unlimited-possibilities {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.unlimited-possibilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.unlimited-possibilities h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.unlimited-possibilities h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.ecosystem-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.ecosystem-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.ecosystem-item {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    color: #0066cc;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e0e0ff;
    backdrop-filter: blur(5px);
}

.ecosystem-item:hover {
    background: linear-gradient(135deg, #0066cc, #00b3ff);
    color: white;
    transform: translateY(-3px);
}

.ecosystem-connector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    color: #0066cc;
    font-weight: 600;
}

.ecosystem-connector svg {
    width: 24px;
    height: 24px;
}

.ecosystem-core {
    background: linear-gradient(135deg, #0066cc, #00b3ff);
    color: white;
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* About Proline PMS Section */
.about-proline {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-proline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.about-proline h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.about-proline h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.about-proline-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
    font-size: 1.15rem;
    position: relative;
    z-index: 2;
}

.about-proline .btn-primary {
    margin-top: 24px;
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Call To Action Section */
.call-to-action {
    padding: 120px 20px 100px;
    text-align: center;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Demo Section */
.demo {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.demo h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #222;
    position: relative;
    display: inline-block;
}

.demo h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
    border-radius: 2px;
}

.demo p {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.demo-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto 40px;
    border: 1px solid #f0f0f0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.demo-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.demo-info {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.demo-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
    text-align: center;
}

.demo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0ff;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .demo h2 {
        font-size: 2.2rem;
    }
    
    .demo-info h3 {
        font-size: 1.8rem;
    }
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 20%);
    pointer-events: none;
}

.call-to-action h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    position: relative;
    display: inline-block;
}

.call-to-action h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.6));
    border-radius: 2px;
}

.call-to-action p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: rgba(255,255,255,0.9);
    color: #0066cc;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-buttons .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-buttons .btn-primary:active {
    transform: translateY(-1px);
}

.cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-buttons .btn-secondary:active {
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: #0f0c29;
    color: rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 60px 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #0066cc, #00b3ff);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-section ul li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-section p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-media {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-media a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-3px);
}

.social-media a:active {
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 20px;
    background: rgba(0,0,0,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-overlay p {
        font-size: 1.2rem;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .connected-header h3 {
        font-size: 1.8rem;
    }
    
    .flow-diagram {
        flex-direction: column;
    }
    
    .ecosystem-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .ecosystem-card {
        min-width: 80%;
    }
    
    .business-types {
        flex-direction: column;
        align-items: center;
    }
    
    .business-card {
        min-width: 80%;
    }
    
    .why-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .why-item {
        min-width: 80%;
    }
    
    .dashboard-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .metrics-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .metric-item {
        min-width: 80%;
    }
    
    .ecosystem-items {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: left;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .social-media {
        justify-content: center;
    }
}