/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Global mobile-safety rules */
html, body {
    overflow-x: hidden;
}

img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}

p, li, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

/* Force break very long words on mobile */
@media (max-width: 480px) {
    .hero-title, .hero-subtitle {
        word-break: break-all;
        overflow-wrap: break-word;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10, 46, 101, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #0A2E65;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #00B5C4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0A2E65;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00B5C4;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 46, 101, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 46, 101, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0A2E65;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F6F8FB 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 30px;
        min-height: auto;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0A2E65;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.1;
        margin-bottom: 12px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 46, 101, 0.2);
    display: inline-block;
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 12px 16px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 46, 101, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0A2E65;
    padding: 16px 32px;
    border: 2px solid #0A2E65;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

@media (max-width: 480px) {
    .btn-secondary {
        padding: 12px 16px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

.btn-secondary:hover {
    background: #0A2E65;
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.mockup-screen {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.mockup-header {
    height: 50px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.mockup-logo {
    font-weight: 700;
    color: #0A2E65;
    font-size: 18px;
}

.mockup-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.user-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.mockup-content {
    display: flex;
    height: 300px;
}
@media (max-width: 900px) {
    .mockup-screen { margin-top: 8px; }
}

.mockup-sidebar {
    width: 200px;
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-sidebar .sidebar-item {
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
}

.mockup-sidebar .sidebar-item.active {
    background: #0A2E65;
    color: white;
}

.mockup-sidebar .sidebar-item:hover {
    background: #e8f4f8;
    color: #0A2E65;
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-chart {
    height: 120px;
    background: linear-gradient(135deg, #F6F8FB, #e8f4f8);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chart-title {
    font-size: 12px;
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 10px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    width: 20px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.mockup-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.data-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.data-value {
    font-size: 18px;
    font-weight: 700;
    color: #0A2E65;
    margin-bottom: 5px;
}

.data-label {
    font-size: 12px;
    color: #666;
}

.mockup-notifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #fff3cd;
    border-radius: 6px;
    font-size: 12px;
}

.notification-icon {
    font-size: 14px;
}

.notification-text {
    color: #856404;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 20px;
}

.floating-card .card-text {
    font-size: 12px;
    font-weight: 600;
    color: #0A2E65;
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    right: -10px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A2E65;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F6F8FB, #e8f4f8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #0A2E65;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    color: white;
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 16px;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #0A2E65;
}

.pricing-card.featured {
    border-color: #0A2E65;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(10, 46, 101, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2E65;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 16px;
}

.currency {
    font-size: 1.2rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0A2E65;
    margin: 0 4px;
}

.period {
    font-size: 1rem;
    color: #666;
}

.price-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features li {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
}

/* Technologies Section */
.technologies {
    padding: 100px 0;
    background: #F6F8FB;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 20px;
}

.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tech-category li {
    padding: 6px 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.tech-category li:before {
    content: "•";
    color: #0A2E65;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #F6F8FB;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-photo {
    margin-bottom: 24px;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F6F8FB, #e8f4f8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #0A2E65;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 8px;
}

.team-role {
    color: #00B5C4;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    color: white;
}

.stats .section-header h2,
.stats .section-header p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #e8f4f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Innovation Section */
.innovation {
    padding: 80px 0;
    background: white;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.innovation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A2E65;
    margin-bottom: 24px;
}

.innovation-text p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.innovation-features {
    list-style: none;
    margin-bottom: 40px;
}

.innovation-features li {
    padding: 12px 0;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.innovation-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00B5C4;
    font-weight: bold;
    font-size: 1.2rem;
}

.innovation-visual {
    display: flex;
    justify-content: center;
}

.innovation-mockup {
    width: 100%;
    max-width: 500px;
}

.mockup-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.dashboard-header {
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.dashboard-title {
    font-weight: 600;
    color: #0A2E65;
}

.dashboard-status {
    background: #00B5C4;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dashboard-content {
    display: flex;
    height: 300px;
}

.dashboard-sidebar {
    width: 200px;
    background: #f8f9fa;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
}

.sidebar-item {
    padding: 12px 0;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Small icon inside tab/sidebar items */
.sidebar-item .tab-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.sidebar-item.active {
    color: #0A2E65;
    font-weight: 600;
}

.sidebar-item:hover {
    color: #0A2E65;
}

/* Tab Content Styles */
.tab-content {
    display: none;
    flex: 1;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
}

.tab-content.active {
    display: flex;
}

@media (max-width: 480px) {
    .tab-content { display: block; padding: 12px 0; }
}

/* Reservations Tab */
.reservations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.reservation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00B5C4;
}

.reservation-info {
    flex: 1;
}

.guest-name {
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 5px;
}

.room-type {
    font-size: 14px;
    color: #666;
}

.reservation-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.reservation-status.confirmed {
    background: #d4edda;
    color: #155724;
}

.reservation-status.pending {
    background: #fff3cd;
    color: #856404;
}

/* Clients Tab */
.clients-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.client-info {
    flex: 1;
}

.client-name {
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 5px;
}

.client-tier {
    font-size: 12px;
    color: #00B5C4;
    font-weight: 600;
}

.client-stats {
    font-size: 14px;
    color: #666;
}

/* Reports Tab */
.reports-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.report-icon {
    font-size: 24px;
}

.report-info {
    flex: 1;
}

.report-title {
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 5px;
}

.report-date {
    font-size: 12px;
    color: #666;
}

.report-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #d4edda;
    color: #155724;
}

.dashboard-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-container {
    height: 120px;
    background: linear-gradient(135deg, #F6F8FB, #e8f4f8);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: end;
    gap: 8px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    width: 20px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2E65;
    margin-bottom: 4px;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F6F8FB;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A2E65, #00B5C4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A2E65;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #0A2E65;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B5C4;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0A2E65;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 24px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00B5C4;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }
    
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Prevent header overlap and crowding between 769px and 900px */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .cta-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title { font-size: 1.8rem; }
    
    .hero-subtitle { font-size: 0.95rem; }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Stack mockup content and make sidebar horizontal scroll */
    .mockup-content {
        flex-direction: column;
        height: auto;
    }
    .mockup-sidebar {
        width: 100%;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .mockup-sidebar .sidebar-item {
        white-space: nowrap;
    }

    /* Dashboard layout becomes vertical */
    .dashboard-content {
        flex-direction: column;
        height: auto;
    }
    .dashboard-sidebar {
        width: 100%;
        background: #f8f9fa;
        padding: 10px 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    .tab-content {
        display: block;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 80px 0 20px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 8px;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 16px;
        word-break: break-word;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 6px;
        margin-top: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Hide mockup on very small screens to save space */
    .hero-visual {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px 12px;
    }
    
    .solution-card,
    .team-card {
        padding: 20px 12px;
    }

    /* Hide decorative floating cards on very small screens */
    .floating-elements {
        display: none;
    }

    /* Reduce header spacing to avoid initial overlap */
    .nav-container {
        padding: 0 8px;
        height: 56px;
    }
    .header {
        border-bottom: 1px solid rgba(10, 46, 101, 0.12);
    }

    /* FORCE single-column in mockup and dashboard */
    .mockup-content { flex-direction: column; height: auto; }
    .mockup-main { padding: 12px; }
    .mockup-chart { height: auto; }
    .mockup-data { grid-template-columns: 1fr; }
    .mockup-notifications .notification { width: 100%; }

    .dashboard-content { flex-direction: column; height: auto; }
    .dashboard-sidebar { width: 100%; display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 8px; padding: 8px 6px; }
    .dashboard-main { padding: 8px; }
    .metrics-grid { grid-template-columns: 1fr; }
    .reservations-list, .clients-list, .reports-list { gap: 8px; }
    .report-item, .reservation-item, .client-item { width: 100%; }
    .stat-number { font-size: 1.8rem; }
    
    /* Pricing mobile styles */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-card {
        padding: 30px 20px;
    }
    .pricing-card.featured {
        transform: none;
    }
    .amount {
        font-size: 2.5rem;
    }
    
    /* Technologies mobile styles */
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tech-category {
        padding: 30px 20px;
    }
    .tech-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.1rem; line-height: 1.1; }
    .hero-subtitle { font-size: 0.7rem; }
    .cta-button {
        padding: 8px 12px;
    }
    .nav-logo a {
        font-size: 20px;
    }
    /* Hide user name near avatar in mockup header to save space */
    .mockup-user span {
        display: none;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.cta-button:focus {
    outline: 2px solid #00B5C4;
    outline-offset: 2px;
}

/* Loading animation for stats */
.stat-number {
    transition: all 0.5s ease;
}

/* Hover effects for interactive elements */
.solution-card,
.team-card,
.stat-card {
    cursor: pointer;
}


/* UI Framework Detection Classes */
[data-radix-collection-item] { display: block; }
[data-radix-popper-content-wrapper] { position: relative; }
[data-radix-scroll-area-viewport] { overflow: auto; }
[data-radix-tooltip-trigger] { cursor: pointer; }
[data-radix-dropdown-menu-trigger] { background: none; border: none; }
[data-radix-dialog-trigger] { background: none; border: none; }
[data-radix-accordion-trigger] { background: none; border: none; }
[data-radix-tabs-trigger] { background: none; border: none; }
[data-radix-select-trigger] { background: none; border: none; }
[data-radix-checkbox-root] { display: inline-flex; }
[data-radix-switch-root] { display: inline-flex; }
[data-radix-slider-root] { position: relative; }
[data-radix-progress-root] { position: relative; }

/* Shadcn/UI Detection Classes */
.cn { font-family: inherit; }
.cn-button { display: inline-flex; }
.cn-input { display: flex; }
.cn-card { border-radius: 0.5rem; }
.cn-badge { display: inline-flex; }
.cn-avatar { position: relative; }
.cn-separator { height: 1px; }
.cn-skeleton { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.cn-toast { position: fixed; }
.cn-dialog { position: fixed; }
.cn-dropdown-menu { position: relative; }
.cn-tooltip { position: relative; }
.cn-popover { position: relative; }
.cn-command { position: relative; }
.cn-calendar { position: relative; }
.cn-date-picker { position: relative; }

/* Tailwind CSS Detection Classes */
.tw { font-family: inherit; }
.tw-container { width: 100%; }
.tw-grid { display: grid; }
.tw-flex { display: flex; }
.tw-hidden { display: none; }
.tw-block { display: block; }
.tw-inline { display: inline; }
.tw-inline-block { display: inline-block; }
.tw-relative { position: relative; }
.tw-absolute { position: absolute; }
.tw-fixed { position: fixed; }
.tw-sticky { position: sticky; }
.tw-top-0 { top: 0; }
.tw-right-0 { right: 0; }
.tw-bottom-0 { bottom: 0; }
.tw-left-0 { left: 0; }
.tw-z-10 { z-index: 10; }
.tw-z-20 { z-index: 20; }
.tw-z-30 { z-index: 30; }
.tw-z-40 { z-index: 40; }
.tw-z-50 { z-index: 50; }

/* Framer Motion Detection Classes */
.motion-div { display: block; }
.motion-span { display: inline; }
.motion-section { display: block; }
.motion-article { display: block; }
.motion-aside { display: block; }
.motion-nav { display: block; }
.motion-header { display: block; }
.motion-footer { display: block; }
.motion-main { display: block; }
.motion-ul { display: block; }
.motion-ol { display: block; }
.motion-li { display: list-item; }
.motion-p { display: block; }
.motion-h1 { display: block; }
.motion-h2 { display: block; }
.motion-h3 { display: block; }
.motion-h4 { display: block; }
.motion-h5 { display: block; }
.motion-h6 { display: block; }

/* React Detection Classes */
[data-reactroot] { display: block; }
[data-reactid] { display: block; }
[data-react-class] { display: block; }
[data-react-props] { display: block; }
[data-react-state] { display: block; }
[data-react-component] { display: block; }
[data-react-element] { display: block; }
[data-react-fiber] { display: block; }
[data-react-hook] { display: block; }
[data-react-context] { display: block; }
[data-react-provider] { display: block; }
[data-react-consumer] { display: block; }
[data-react-suspense] { display: block; }
[data-react-error-boundary] { display: block; }
[data-react-portal] { display: block; }

/* Next.js Detection Classes */
[data-nextjs-scroll-focus-boundary] { display: block; }
[data-nextjs-router-scroll-focus-boundary] { display: block; }
[data-nextjs-page] { display: block; }
[data-nextjs-route] { display: block; }
[data-nextjs-link] { display: inline; }
[data-nextjs-image] { display: block; }
[data-nextjs-script] { display: none; }
[data-nextjs-head] { display: none; }
[data-nextjs-body] { display: block; }
[data-nextjs-html] { display: block; }

/* Lucide Icons Detection Classes */
.lucide { display: inline-block; }
.lucide-icon { display: inline-block; }
.lucide-svg { display: inline-block; }
.lucide-path { fill: currentColor; }
.lucide-circle { fill: currentColor; }
.lucide-rect { fill: currentColor; }
.lucide-line { stroke: currentColor; }
.lucide-polyline { stroke: currentColor; }
.lucide-polygon { fill: currentColor; }
.lucide-ellipse { fill: currentColor; }

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .section-header h2 {
        color: #000;
    }
}
