/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #262626;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #4CAF4F;
    color: #fff;
}

.btn-gradient {
    background: linear-gradient(to right, #298CB6, #1DA5A1);
    color: #fff;
    border: none;
    transition: transform 0.2s cubic-bezier(.4, 2, .6, 1), box-shadow 0.2s;
}

.btn-green {
    background-color: #4CAF4F;
    color: #fff;
}

.btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.btn-gradient:hover,
.btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 24px rgba(34, 181, 115, 0.15);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(171, 190, 209, 0.4);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.with-ticker {
    top: 40px;
}

/* News Ticker Styles */
.news-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #1e43ad, #1da5a1);
    color: #fff;
    z-index: 1001;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
}

.ticker-label {
    background: #1CCD92;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2);
}

.ticker-content-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    flex-shrink: 0;
}

.ticker-item a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

@media (max-width: 768px) {
    .news-ticker {
        font-size: 12px;
        height: 35px;
    }

    .header.with-ticker {
        top: 35px;
    }
}

/* Adjust Hero padding if ticker is present */
body.has-ticker {
    padding-top: 40px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header-logo {
    padding-right: 20px;
}

.header-logo img {
    height: 50px;
}

.header-menu {
    flex: 1;
}

.header-menu ul {
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.header-menu li a {
    color: #4D4D4D;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.header-menu li a:hover {
    color: #2853A0;
}

/* Hero Section */
.hero {
    position: relative;
    color: #fff;
    padding: 140px 0 80px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 19, 38, 0.83);
}

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

.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 1;
}

.badge {
    display: inline-block;
    color: #1BC98E;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    margin-bottom: 25px;
    font-size: 16px;
}

.sub-heading {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 20px;
}

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

/* Trusted By Section */
.trusted-by {
    background-color: #EAEAEA;
    padding: 60px 0;
    text-align: center;
}

.trusted-by h2 {
    color: #1E43AD;
    font-size: 25px;
    margin-bottom: 40px;
}

.trusted-by .container {
    padding: 0;
    max-width: 100%;
}

.logo-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, opacity 0.2s;
    opacity: .85;
}

.logo-scroll-arrow.left {
    left: 0;
}

.logo-scroll-arrow.right {
    right: 0;
}

.logo-scroll-arrow:hover {
    background: #eaeaea;
    opacity: 1;
}

.logo-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    justify-content: flex-start !important;
    animation: logoScroll 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.logo-grid::-webkit-scrollbar {
    display: none;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    max-width: 280px;
    height: 100px;
}

.logo-item img {
    max-height: 85px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: .7;
    transition: all 0.3s ease;
    transition: transform 0.5s cubic-bezier(.4, 2, .6, 1);
}

.logo-item img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05) rotate(-2deg);
}

/* Auto-scroll animation for mobile */
@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

@media (max-width:700px) {
    .logo-scroll-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .logo-grid {
        gap: 30px;
        padding-bottom: 10px;
        animation: logoScroll 25s linear infinite;
    }

    .logo-item {
        min-width: 110px;
        max-width: 150px;
        height: 70px;
    }

    .logo-item img {
        max-height: 60px;
        filter: grayscale(0) !important;
        opacity: 1 !important;
    }
}

/* Smart Section */
.smart-section {
    background: linear-gradient(rgba(18, 18, 49, 0.95), rgba(18, 18, 49, 0.95));
    color: #fff;
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
    max-width: 1200px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.title-col {
    flex: 1;
}

.desc-col {
    flex: 1;
    padding-top: 10px;
}

.title-col h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.desc-col p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    background: rgba(45, 126, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: all 1.5s ease;
}

.feature-box:hover {
    background: rgba(45, 126, 255, 0.15);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-check {
    color: #2D7EFF;
    font-size: 20px;
    font-weight: bold;
    background: rgba(45, 126, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

/* Team Section */
.team-section {
    background-color: #2853A0;
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    margin: 0 0;
}

.team-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 50px;
    margin: 40px auto;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-content p {
    margin-bottom: 30px;
    font-size: 12px;
}

.team-images {
    flex: 1;
    display: flex;
    justify-content: center;
}

.team-photo {
    max-width: 100%;
    border-radius: 10px;
}

/* All Teams Section */
.all-teams {
    background-image: linear-gradient(rgba(18, 18, 49, 0.43), rgba(18, 18, 49, 0.43)), url('../images/ai-first.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
}

.all-teams .section-header {
    text-align: left;
    margin-bottom: 50px;
}

.all-teams .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.all-teams .section-header h2 {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

.all-teams .ai-advantage {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-top: 10px;
}

.ai-advantage img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 5px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.department-card {
    background-color: rgba(26, 115, 205, 0.7);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.department-card:hover {
    background-color: rgba(26, 115, 205, 0.8);
    transform: translateY(-2px);
}

.department-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.department-icon img {
    width: 34px;
    height: 24px;
    object-fit: contain;
}

.department-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.department-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Multi-Property Section */
.multi-property {
    background-color: #F8F9FC;
    padding: 80px 0;
}

.multi-property .section-header {
    margin-bottom: 40px;
}

.multi-property .section-header h2 {
    color: #1A1F36;
    font-size: 35px;
    font-weight: 600;
    text-align: left;
}

.property-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.property-image {
    flex: 1;
    max-width: 50%;
}

.property-image .dashboard-image {
    width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-text {
    flex: 1;
}

.property-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1F36;
    margin-bottom: 30px;
    line-height: 1.4;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #1A1F36;
    line-height: 1.4;
}

.feature-list .checkmark1 {
    color: #22C55E;
    font-size: 18px;
    font-weight: bold;
}

/* Comparison Section */
.comparison {
    background-image: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), url('../images/image bg.PNG');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.comparison h2 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #fff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.comparison-grid::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5px;
    height: calc(100% - 60px);
    background-color: rgba(255, 255, 255, 0.5);
}

.comparison-content {
    padding: 0 40px;
}

.comparison-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.comparison-header h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1A1F36;
    line-height: 1.2;
}

.comparison-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

.comparison-content.traditional {
    text-align: right;
}

.comparison-content.hotelops {
    text-align: left;
}

.comparison-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comparison-content li {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.comparison-content.traditional li {
    color: #FF5757;
}

.comparison-content.hotelops li {
    color: #86D875;
}

/* Switching Section */
.switching {
    background-color: #fff;
    padding: 80px 0;
}

.switching h2 {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: #1A1F36;
    margin-bottom: 60px;
}

.switching-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.switching-card {
    position: relative;
    padding: 0;
}

.icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: #D2FFE0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-circle img {
    width: 40px;
    height: 40px;
}

.arrow {
    margin-left: 25px;
}

.arrow img {
    width: 20px;
    height: 20px;
}

.switching-card:last-child .arrow {
    display: none;
}

.tag {
    display: inline-block;
    color: #22C55E;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.switching-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1F36;
    margin-bottom: 12px;
    line-height: 1.4;
}

.switching-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* News & Recognitions Section */
.News-recognitions {
    background-color: #F8F9FC;
    padding: 80px 0;
}

.News-recognitions .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.News-recognitions .section-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1A1F36;
    margin-bottom: 16px;
}

.News-recognitions .section-header p {
    font-size: 16px;
    color: #64748B;
    margin: 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.story-content {
    padding: 24px;
}

.story-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.story-category.retail {
    background-color: #E0F2FE;
    color: #0369A1;
}

.story-category.financial {
    background-color: #FEF3C7;
    color: #92400E;
}

.story-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1F36;
    margin-bottom: 12px;
    line-height: 1.3;
}

.story-content p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.stories-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2D7EFF;
    color: #2D7EFF;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #2D7EFF;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width:992px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width:768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .News-recognitions .section-header h2 {
        font-size: 32px;
    }

    .story-image {
        height: 200px;
    }
}

/* Pain Points Section */
.pain-points {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.pain-points .container {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

.title-group {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.left-content {
    flex-shrink: 0;
    margin-top: 20px;
}

.right-content {
    flex: 1;
}

.options-arrow {
    width: 250px;
    height: auto;
}

.title-group h2 {
    font-size: 42px;
    color: #1A1F36;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.title-group p {
    font-size: 16px;
    color: #64748B;
    max-width: 700px;
    margin: 0;
    text-align: left;
}

.choose-options {
    position: absolute;
    top: -30px;
    right: -80px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.choose-options span {
    color: #2D7EFF;
    font-style: italic;
    font-size: 16px;
}

.pain-points>.container>p {
    font-size: 16px;
    color: #64748B;
    max-width: 1080px;
    margin: 0 auto 40px;
}

.pain-points-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 0 auto 40px;
    max-width: 900px;
}

.pain-point-card {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin: 0;
}

.pain-point-card:hover {
    border-color: #2D7EFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.pain-checkbox {
    display: none;
}

.pain-point-card label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0;
}

.checkmark1 {
    width: 20px;
    height: 20px;
    border: 2px solid #19db59;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 1;
}

.pain-point-card:hover .checkmark {
    opacity: 1;
}

.checkmark img {
    width: 12px;
    height: 12px;
    display: none;
}

.pain-checkbox:checked+label .checkmark {
    background-color: #2D7EFF;
    border-color: #2D7EFF;
    opacity: 1;
}

.pain-checkbox:checked+label .checkmark img {
    display: block;
}

.pain-point-card p {
    font-size: 15px;
    font-weight: 500;
    color: #1A1F36;
    margin: 0;
    line-height: 1.4;
}

.show-more {
    background-color: #2D7EFF;
    color: #fff;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more:hover {
    background-color: #1a6aff;
    transform: translateY(-2px);
}

@media (max-width:1200px) {
    .pain-points .container {
        padding: 40px;
        margin: 0 20px;
        max-width: 90%;
    }

    .pain-points-grid {
        max-width: 100%;
        gap: 12px;
    }
}

@media (max-width:768px) {
    .header-cta {
        display: none;
    }

    .pain-points .container {
        padding: 30px 20px;
    }

    .pain-point-card {
        width: 100%;
    }

    .pain-point-card label {
        white-space: normal;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-grid::after {
        display: none;
    }

    .comparison-content.traditional,
    .comparison-content.hotelops {
        text-align: center;
        padding: 0 20px;
    }

    .comparison h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .all-teams .header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .all-teams .section-header h2 {
        font-size: 32px;
    }

    .logo-grid {
        justify-content: center;
        gap: 30px;
    }

    .logo-item {
        min-width: 140px;
        max-width: 180px;
        height: 70px;
    }

    .logo-item img {
        max-height: 55px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .title-group {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
        gap: 30px;
    }

    .title-group .left-content {
        margin-top: 0;
    }

    .title-group .right-content {
        text-align: center;
    }

    .title-group .options-arrow {
        width: 200px;
        margin: 0 auto;
    }
}

@media (max-width:576px) {
    .container {
        padding: 0 20px;
    }

    .section-header h2,
    .team-content h1,
    .bottom-line h2,
    .demo-section h2,
    .pain-points h2,
    .switching h2 {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .bottom-line h2 {
        font-size: 32px;
    }
}

/* Bottom Line Section */
.bottom-line {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.bottom-line .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.bottom-line h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1A1F36;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bottom-line p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
}

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

.metrics-grid-industry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background-color: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 42, 207, 0.05);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.metric-card:nth-child(3n+1) {
    background-color: #EEF2FF;
}

.metric-card:nth-child(3n+2) {
    background-color: #FFF1F2;
}

.metric-card:nth-child(3n+3) {
    background-color: #ECFDF5;
}

.metric-icon img {
    width: 40px;
    height: 40px;
}

.metric-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1F76FF;
    margin-bottom: 8px;
}

.metric-card p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

/* Demo Section */
.demo-section {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4)), url('../images/corporate-img-bg.webp');
    background-size: 1200px;
    border-radius: 10px;
    margin: 10%;
    background-position: center;
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
}

.demo-content {
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
    text-align: left;
    padding-right: 40%;
}

.demo-section h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.demo-text {
    margin-bottom: 32px;
}

.demo-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-demo {
    background-color: #2D7EFF;
    color: #fff;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-demo:hover {
    background-color: #1a6aff;
    transform: translateY(-2px);
}

@media (max-width:992px) {
    .demo-content {
        padding-right: 0;
        text-align: center;
    }

    .demo-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/corporate-img-mob.webp');
        background-size: cover;
        background-position: center;
        padding: 60px 20px;
    }

    .demo-section h2 {
        font-size: 32px;
    }
}

/* Footer */
.footer {
    background-color: #000;
    color: #F5F7FA;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-info {
    flex: 1;
    max-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-tagline,
.footer-address,
.footer-copyright {
    margin-bottom: 20px;
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #2853A0;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    margin-bottom: 30px;
    min-width: 170px;
}

.footer-column h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #1ED699;
}

@media (max-width:1200px) {
    .container {
        padding: 0 40px;
    }

    .switching-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width:992px) {

    .team-section .container,
    .property-content {
        flex-direction: column;
    }

    .team-content,
    .team-images,
    .property-text,
    .property-image {
        flex: auto;
        width: 100%;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header.traditional,
    .comparison-content.traditional {
        text-align: center;
    }

    .comparison-header.hotelops,
    .comparison-content.hotelops {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-info {
        max-width: 100%;
    }

    .property-content {
        flex-direction: column;
        gap: 40px;
    }

    .property-image {
        max-width: 100%;
    }

    .multi-property .section-header h2 {
        font-size: 32px;
        text-align: center;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .header-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .title-col h2 {
        font-size: 32px;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width:768px) {
    .header-cta {
        display: none;
    }

    .header-menu {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .header-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .desc-col {
        padding-top: 0;
    }

    .logo-grid {
        justify-content: center;
    }

    .logo-item {
        min-width: 140px;
    }

    .footer-links {
        flex-direction: column;
    }

    .switching-grid {
        grid-template-columns: 1fr;
    }

    .switching h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .arrow {
        display: none;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-grid::after {
        display: none;
    }

    .comparison-content.traditional,
    .comparison-content.hotelops {
        text-align: center;
        padding: 0 20px;
    }

    .comparison h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .title-group {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
        gap: 30px;
    }

    .title-group .left-content {
        margin-top: 0;
    }

    .title-group .right-content {
        text-align: center;
    }

    .title-group .options-arrow {
        width: 200px;
        margin: 0 auto;
    }
}

@media (max-width:576px) {
    .container {
        padding: 0 20px;
    }

    .section-header h2,
    .team-content h1,
    .bottom-line h2,
    .demo-section h2,
    .pain-points h2,
    .switching h2 {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .bottom-line h2 {
        font-size: 32px;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1E1B39;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width:768px) {
    .mobile-menu-btn {
        display: block;
    }

    .header-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .header-menu.active {
        right: 0;
    }

    .header-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .header-menu li {
        width: 100%;
    }

    .header-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }

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

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

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

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }
}

.mobile-menu-content {
    display: none;
    position: fixed;
    top: 80px;
    right: -300px;
    width: 300px;
    background-color: #fff;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-content li {
    margin-bottom: 15px;
}

.mobile-menu-content a {
    display: block;
    padding: 10px 15px;
    color: #4D4D4D;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #2853A0;
}

@media (max-width:768px) {
    .mobile-menu-btn.active .mobile-menu-content {
        display: block;
        right: 0;
    }
}

/* Platform Page Styles */
.platform-hero {
    padding: 180px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
}

.platform-hero h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.platform-hero p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.dashboard-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.dashboard-images {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.main-dashboard {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preview-text {
    max-width: 800px;
    margin: 0 auto;
}

.preview-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.preview-text h3 {
    color: #4CAF4F;
    font-size: 24px;
    margin-top: 30px;
}

.platform-comparison {
    padding: 80px 0;
    background: #fff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-column {
    padding: 30px;
    border-radius: 10px;
}

.comparison-column.challenges {
    background: #FFF5F5;
}

.comparison-column.solution {
    background: #F0FFF4;
}

.comparison-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.comparison-column h4 {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.challenge-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.challenge-list li,
.solution-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-red,
.icon-green {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon-red {
    background: #FFE5E5;
}

.icon-green {
    background: #E5FFE5;
}

.icon-red img,
.icon-green img {
    width: 24px;
    height: 24px;
}

.why-hotelops {
    padding: 80px 0;
    background: #F8F9FA;
}

.why-hotelops h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.platform-cta {
    padding: 80px 0;
    text-align: center;
    color: #fff;
    background-image: url('images/bg-platform-last.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.platform-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.platform-cta h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.platform-cta p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

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

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Active Menu Item */
.header-menu li a.active {
    color: #4CAF4F;
    font-weight: 600;
}

.mobile-menu-content li a.active {
    color: #4CAF4F;
    font-weight: 600;
}

@media (max-width:992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .platform-hero h1 {
        font-size: 36px;
    }

    .platform-hero p {
        font-size: 18px;
    }

    .preview-content {
        text-align: left;
    }
}

@media (max-width:768px) {
    .platform-hero {
        padding: 140px 0 80px;
    }

    .platform-hero h1 {
        font-size: 28px;
    }

    .platform-hero p {
        font-size: 16px;
    }

    .feature-item {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .challenge-list li,
    .solution-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

.platform-hero .hero-content h1 {
    text-align: center;
    margin: 0 auto 20px;
}

.platform-hero .hero-content p {
    text-align: center;
    margin: 0 auto;
}

/* AI Chatbot Section */
.ai-chatbot-section {
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

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

.chatbot-content h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.chatbot-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    text-align: center;
}

.user-ratings {
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.rating-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.rating-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

.rating-avatars .avatar:first-child {
    margin-left: 0;
}

.rating-stars {
    color: #FFD700;
    font-size: 24px;
    letter-spacing: 4px;
    text-align: center;
}

.rating-text {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.chatbot-cta {
    margin-top: 40px;
    text-align: center;
}

.chatbot-cta .btn-primary {
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 8px;
    background: #ffffff;
    color: #008B9B;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.chatbot-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    padding: 160px 0 120px;
    color: #fff;
    text-align: center;
}

.contact-hero .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0;
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-curve svg {
    width: 100%;
    height: 120px;
}

.contact-content {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    max-width: 500px;
}

.section-label {
    color: #2853A0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1A1F36;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 32px;
}

.contact-cta {
    margin-top: 40px;
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    padding: 24px;
}

.location-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1A1F36;
    margin-bottom: 12px;
}

.location-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 16px;
}

.location-map {
    color: #2853A0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.location-map:hover {
    text-decoration: underline;
}

.location-phone {
    margin-top: 16px;
}

.location-phone a {
    color: #1A1F36;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.location-phone a:hover {
    color: #2853A0;
}

@media (max-width:992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        max-width: 100%;
        text-align: center;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .section-label {
        text-align: center;
    }
}

@media (max-width:768px) {
    .contact-hero {
        padding: 120px 0 100px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .location-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Features Section for Housekeeping (unique styles) */
.features-section-hk {
    background: #fff;
    padding: 80px 0 60px 0;
}

.features-header-hk {
    text-align: center;
    margin-bottom: 40px;
}

.features-title-hk {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
}

.features-desc-hk {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-tabs-hk {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    overflow-x: unset;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    transition: justify-content 0.3s ease;
}

.features-tab-hk {
    flex-shrink: 0;
    display: flex;
    border: 1.5px solid #dbeafe;
    background: #fff;
    color: #20345E;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    outline: none;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.features-tab-hk.active,
.features-tab-hk:focus {
    border-color: #1A62FF;
    color: #1A62FF;
    background: #fff;
    box-shadow: 0 0 0 4px #e6f0ff;
    font-weight: 600;
    z-index: 1;
}

.features-tab-hk img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(16%) saturate(1162%) hue-rotate(182deg) brightness(95%) contrast(90%);
}

.features-cards-hk {
    position: relative;
}

.features-card-area-hk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: #fff;
    border-radius: 18px;
    padding: 48px 40px;
    max-width: 1050px;
    margin: 0 auto;
}

.features-card-img-hk {
    flex: 1 1 340px;
    min-width: 450px;
    max-width: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-card-img-hk img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
}

.features-card-content-hk {
    flex: 1 1 340px;
    min-width: 350px;
    max-width: 750px;
}

.features-card-content-hk h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #20345E;
}

.features-card-content-hk p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.6;
}

.features-card-content-hk .btn {
    margin-top: 10px;
}

.features-card-nav-hk {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.features-card-nav-hk button {
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: #1A62FF;
    cursor: pointer;
    transition: background 0.2s;
}

.features-card-nav-hk button:hover {
    background: #e6f0ff;
}

@media (max-width:600px) {
    img[src^="images/hk-"] {
        max-width: 300px !important;
        width: 100%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width:900px) {
    .header-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-content {
        display: none;
        position: absolute;
        top: 48px;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
        border-radius: 8px;
        min-width: 180px;
        padding: 16px 0;
        z-index: 1002;
    }

    .mobile-menu-content.active {
        display: block;
    }
}

@media (min-width:901px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

.contact-form-section {
    padding: 30px 0;
    background-color: #f8faff;
    text-align: center;
}

.contact-form-section .container {
    max-width: 1080px;
}

.form-title {
    font-family: 'Livvic', sans-serif;
    font-size: 1.5rem;
    color: #3C66A6;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.form-row .form-input,
.form-row .form-textarea {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    color: #333;
    background-color: #f8faff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row .form-input::placeholder,
.form-row .form-textarea::placeholder {
    color: #888;
}

.form-row .form-input:focus,
.form-row .form-textarea:focus {
    border-color: #4A00FF;
    box-shadow: 0 0 0 3px rgba(74, 0, 255, 0.1);
    outline: none;
}

.form-row .full-width {
    flex: none;
    width: 100%;
}

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

.btn-submit {
    display: inline-block;
    width: auto;
    padding: 14px 40px;
    background: linear-gradient(90deg, #4A00FF 0%, #00C6FF 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 198, 255, 0.2);
}

@media (max-width:800px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-title {
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    font-family: 'Poppins', 'Inter', sans-serif !important;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.modal .modal-content {
    width: 95vw !important;
    max-width: 100vw !important;
    min-width: unset !important;
    padding: 30px !important;
    border-radius: 6px !important;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width:600px) {
    .modal {
        align-items: flex-start;
        padding-top: 24px;
        padding-bottom: 24px;
        overflow-y: auto;
    }

    .modal .modal-content {
        width: 95vw !important;
        max-width: 100vw !important;
        min-width: unset !important;
        padding: 30px !important;
        border-radius: 6px !important;
        box-sizing: border-box;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Contact Modal Redesign */
.contact-modal-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.contact-modal-form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
}

.contact-modal-label {
    color: #222b45;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: left;
}

.contact-modal-input,
.contact-modal-textarea {
    border: none;
    border-bottom: .5px solid #2e3a59;
    border-radius: 4px 4px 0 0;
    background: #f7f8fa;
    padding: 10px 12px;
    font-size: 1rem;
    color: #222b45;
    margin-bottom: 0;
    transition: border-color 0.2s;
}

.contact-modal-input:focus,
.contact-modal-textarea:focus {
    outline: none;
    border-bottom: .5px solid #1da5a1;
}

.contact-modal-textarea {
    min-height: 80px;
    resize: vertical;
    width: 100%;
    margin-top: 0;
}

.contact-modal-radio-group {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.contact-modal-radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
}

.contact-modal-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.contact-modal-submit {
    width: 100%;
    background: linear-gradient(90deg, #298CB6 0%, #1DA5A1 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 18px 0;
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30, 42, 100, 0.08);
}

.contact-modal-submit:hover {
    background: linear-gradient(90deg, #1DA5A1 0%, #298CB6 100%);
}

@media (max-width:700px) {
    .contact-modal-wrapper {
        padding: 16px 4px;
        max-width: 98vw;
    }

    .contact-modal-form-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Compact Modal Styles */
.modal .contact-modal-label,
.modal .contact-modal-radio-group label,
.modal .contact-modal-checkbox {
    font-size: 0.7rem !important;
    margin-bottom: 2px !important;
}

.modal .contact-modal-input,
.modal .contact-modal-textarea {
    font-size: 0.7rem !important;
    padding: 6px 8px !important;
}

.modal .contact-modal-form-row {
    gap: 10px !important;
    margin-bottom: 8px !important;
}

.modal .contact-modal-form-group {
    margin-bottom: 0 !important;
}

.modal .contact-modal-radio-group {
    gap: 10px !important;
    margin-bottom: 8px !important;
}

.modal .contact-modal-checkbox {
    margin-bottom: 12px !important;
}

.modal .contact-modal-submit {
    font-size: 0.9rem !important;
    padding: 10px 0 !important;
    margin-top: 6px !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.animate-zoom-in {
    opacity: 0;
    animation: zoomIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Delay utility classes for staggered effects */
.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-delay-4 {
    animation-delay: 0.8s;
}

.animate-delay-5 {
    animation-delay: 1s;
}

.animated {
    opacity: 1 !important;
}

/* How It Works Section Modern Hero Styles */
.how-it-works-section {
    background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.how-it-works-content {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 640px;
}

.how-it-works-badge {
    color: #4a90e2;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
}

.how-it-works-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 28px;
    color: #111827;
    line-height: 1.1;
    text-align: center;
    align-items: center;
}

.how-it-works-desc {
    font-size: 1.08rem;
    color: #4b5563;
    margin-bottom: 28px;
    max-width: 90%;
}

.how-it-works-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.how-it-works-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.13rem;
    margin-bottom: 16px;
    color: #222;
    font-weight: 500;
}

.how-it-works-check {
    color: #22C55E;
    font-size: 1.4em;
    flex-shrink: 0;
}

.how-it-works-btn {
    display: inline-block;
    background: #22C55E;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    padding: 16px 36px;
    margin-top: 10px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.10);
    transition: background 0.2s, transform 0.2s;
}

.how-it-works-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.how-it-works-visuals {
    flex: 1 1 10%;
    min-width: 320px;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    border-radius: 32px;
    overflow: hidden;
}

.how-it-works-main-img img {
    width: 100%;
    border-radius: 32px;
    display: block;
}

.how-it-works-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(40, 83, 160, 0.10);
    overflow: hidden;
    z-index: 3;
    padding: 0;
}

.card-top {
    top: -32px;
    left: 60px;
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-bottom-left {
    bottom: -32px;
    left: 0;
    width: 120px;
    height: 80px;
}

.card-bottom-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-bottom-right {
    bottom: 0;
    right: -32px;
    width: 110px;
    height: 110px;
}

.card-bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:900px) {
    .how-it-works-flex {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .how-it-works-content,
    .how-it-works-visuals {
        max-width: 100%;
        min-width: 0;
    }

    .how-it-works-title {
        font-size: 2rem;
        text-align: center;
        align-items: center;
    }

    .how-it-works-main-img {
        max-width: 320px;
    }
}

/* Key Features section custom background for platform.html */
.key-features-section {
    background: #2853A0 !important;
    background-image: none !important;
    color: #fff;
}

.key-features-section .department-card,
.key-features-section .department-card h3,
.key-features-section .department-card p {
    color: #fff;
}

/* Center the Key Features heading on platform.html */
.centered-key-features {
    text-align: center;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}