/* Mobile-First Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #FFFFFF;           /* Pure white background */
    --white: #FFFFFF;
    --dark-text: #333333;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --header-height-mobile: 70px;
    --header-height-desktop: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px; /* Base font size for better readability on mobile */
    background-color: var(--light-bg);
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Mobile-First Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height-desktop);
}

header .container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-symbol {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    overflow: hidden;
}

.logo-house {
    width: 24px;
    height: 24px;
    background: var(--white);
    position: relative;
    transform: rotate(-45deg);
}

.logo-house:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 2.2rem; /* Increased font size for brand name */
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-slogan {
    font-size: 1.1rem; /* Increased font size for slogan */
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 5px 0;
}

/* Mobile Navigation */
nav {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

nav.active {
    display: block;
}

nav a {
    font-size: 14px;
    padding: 6px 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav a:last-child {
    border-bottom: none;
}

/* Mobile Menu Button */
.menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
}

/* Hero Section Mobile */
#hero {
    padding-top: 110px; /* Increased to account for larger header */
    margin-top: 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

#hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1rem;
    padding: 0 1rem;
}

/* Benefits Grid Mobile */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
}

.benefit-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* AI Features Mobile */
.ai-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
}

.ai-feature-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.ai-feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ai-feature-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.ai-intro h3 {
    font-size: 1.4rem;
    padding: 0 1rem;
}

/* CTA Buttons Mobile */
.cta-buttons {
    flex-direction: column;
    padding: 1rem;
}

.cta-button {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 1rem;
}

/* About Section Mobile */
.founder-section {
    padding: 1rem;
}

.founder-info {
    flex-direction: column;
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.founder-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.founder-text {
    flex: 1;
}

/* Contact Section Mobile */
.contact-info {
    padding: 1rem;
}

.contact-button {
    width: 100%;
    margin-top: 1rem;
}

/* Larger Screen Styles */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    .menu-toggle {
        display: none;
    }

    nav {
        display: flex;
        position: static;
        padding: 0;
        box-shadow: none;
    }

    nav a {
        display: inline-block;
        border: none;
        padding: 0;
        margin-left: 2rem;
    }

    #hero {
        padding-top: 120px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .ai-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .founder-info {
        flex-direction: row;
        text-align: left;
    }

    .founder-image {
        margin: 0;
    }

    .cta-button {
        width: auto;
    }

    .logo-symbol {
        width: 48px;
        height: 48px;
    }

    .logo-house {
        width: 28px;
        height: 28px;
    }

    .brand-name {
        font-size: 1.75rem;
    }

    .brand-slogan {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 80px; /* Reduced from 150px */
    }

    #benefits {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px; /* Reduced from 90px */
    }

    header {
        padding: 5px 0;
    }
}

/* Touch-friendly Interactions */
.benefit-card,
.ai-feature-card,
.cta-button,
.contact-button {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Improved Form Elements for Mobile */
input,
textarea,
select,
button {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.8rem;
    border-radius: 8px;
    width: 100%;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #FFFFFF;
        --light-bg: #1a1a1a;
        --white: #2d2d2d;
        --dark-text: #FFFFFF;
        --primary-color: #2E7D32;      /* Keep brand colors consistent */
        --secondary-color: #4CAF50;    /* Keep brand colors consistent */
        --accent-color: #81C784;       /* Keep brand colors consistent */
    }
}

/* Header Styles */
header .container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo {
    margin-right: auto;
}

header .container .logo .logo-img {
    height: 88px;
    width: auto;
    object-fit: contain;
    padding: 5px 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 4rem 0;
    background-color: transparent;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 1rem;
    max-width: 1400px;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    min-width: 250px;
    border: none;
}

.cta-button.primary {
    background-color: #FFFFFF;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #F8F8F8;
}

.cta-button i {
    margin-right: 12px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-button i {
        font-size: 1.2rem;
        margin-right: 10px;
    }
}

/* About Section */
.founder-section {
    max-width: 800px;
    margin: 0 auto;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.founder-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.founder-text {
    flex: 1;
}

.vision {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

/* Contact Section */
#contact {
    background-color: var(--white);
    border-radius: 8px;
    padding: 3rem 1rem;
    margin: 2rem auto;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: -1;
    border-radius: 8px;
}

#contact h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-text);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.contact-info strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
}

.contact-button:hover {
    transform: translateY(-2px);
    background-color: #128C7E;
}

.contact-button i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #contact {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--light-bg);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-color);
}

/* AI Features Section */
#ai-features {
    background-color: var(--light-bg);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 12px;
}

.ai-features-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ai-intro h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ai-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.ai-feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ai-feature-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.ai-feature-card h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ai-highlight {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ai-highlight i {
    font-size: 2rem;
}

.ai-highlight p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive adjustments for AI features */
@media (max-width: 768px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }

    .ai-intro h3 {
        font-size: 1.5rem;
    }

    .ai-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        height: var(--header-height-mobile);
    }

    .logo-img {
        height: 50px;
    }

    /* Hamburger Menu Button */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: var(--primary-color);
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle i {
        font-size: 24px;
    }

    /* Mobile Navigation Menu */
    nav {
        display: none;
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav.active {
        display: block !important;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        color: var(--primary-color);
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: left;
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    nav a:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    nav a:last-child {
        border-bottom: none;
    }

    /* Hero section adjustment */
    #hero {
        padding-top: calc(var(--header-height-mobile) + 20px);
    }
}

@media (min-width: 1024px) {
    header .container .logo .logo-img {
        height: 88px; /* Increased by 25% from 70px */
        padding: 5px 0;
    }
    
    header .container {
        padding: 0 30px;
    }
}

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

.benefit-card, .founder-info, .vision {
    animation: fadeIn 0.5s ease-out forwards;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-button {
        min-width: 240px;
    }
}

#mission {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

#mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: -1;
    border-radius: 8px;
}

#mission h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

#mission p {
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 2rem;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    #mission {
        padding: 3rem 1rem;
        margin: 1rem;
    }
    
    #mission p {
        padding: 0 1rem;
        font-size: 1rem;
        line-height: 1.6;
    }
}

#list-homestay {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 2rem;
    margin: 4rem auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

#list-homestay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

#list-homestay h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

#list-homestay p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    min-width: 250px;
    border: none;
}

.cta-button.primary {
    background-color: #FFFFFF;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #F8F8F8;
}

.cta-button i {
    margin-right: 12px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    #list-homestay {
        margin: 2rem 1rem;
        padding: 2.5rem 1.5rem;
    }

    #list-homestay h2 {
        font-size: 2rem;
    }

    #list-homestay p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Add animation for the section */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

#list-homestay {
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .logo-img {
        height: 220px; /* Increased for large screens */
    }
}

/* Ensure menu items are visible in both light and dark modes */
nav a {
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color) !important;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    nav {
        display: flex;
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    nav a {
        display: inline-block;
        padding: 0;
        margin-left: 30px;
        border: none;
    }

    .logo-img {
        height: 70px;
    }
}

/* Multi-Platform Section Styles */
#multi-platform {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 5rem 0;
    margin: 3rem 0;
    border-radius: 15px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#multi-platform::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.2;
}

.platform-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.platform-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.platform-intro h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.platform-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.platform-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.platform-card:hover::before {
    transform: translateY(0);
}

.platform-card i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.platform-card:hover i {
    transform: scale(1.1);
}

.platform-card h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.platform-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.platform-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.platform-logos i {
    font-size: 3.5rem;
    color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.platform-logos i:hover {
    transform: scale(1.1);
    opacity: 1;
}

.platform-highlight p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Add platform-specific colors for logos */
.platform-logos .fa-airbnb {
    color: #FF5A5F;
}

.platform-logos .fa-hotel {
    color: #FFB700;
}

.platform-logos .fa-building {
    color: #00A699;
}

.platform-logos .fa-home {
    color: #484848;
}

@media (max-width: 768px) {
    #multi-platform {
        padding: 3rem 1rem;
        margin: 2rem 1rem;
    }

    .platform-intro h3 {
        font-size: 1.8rem;
    }

    .platform-intro p {
        font-size: 1.1rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-card {
        padding: 2rem;
    }

    .platform-logos {
        gap: 2rem;
    }

    .platform-logos i {
        font-size: 2.8rem;
    }

    .platform-highlight {
        padding: 2rem;
    }
}

/* Coming Soon Section */
#coming-soon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 6rem 0;
    margin: 4rem 0;
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.2;
    pointer-events: none;
}

.coming-soon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
}

.launch-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coming-soon-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.platform-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item:hover::before {
    transform: translateY(0);
}

.feature-item i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.platform-highlight-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    margin: 4rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.platform-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-content i {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.highlight-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.early-access {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.early-access h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.early-access p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.early-access .cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.early-access .cta-button i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.early-access .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.early-access .cta-button:hover i {
    transform: scale(1.1);
}

/* Add shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.coming-soon-content h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

@media (max-width: 768px) {
    #coming-soon {
        padding: 4rem 1rem;
        margin: 2rem 1rem;
    }

    .coming-soon-content h2 {
        font-size: 2.2rem;
    }

    .platform-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

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

    .feature-item {
        padding: 2rem;
    }

    .platform-highlight-box {
        padding: 2.5rem 1.5rem;
        margin: 3rem 0;
    }

    .highlight-content i {
        font-size: 3rem;
    }

    .highlight-content h3 {
        font-size: 1.8rem;
    }

    .early-access {
        padding: 2rem;
        margin-top: 3rem;
    }

    .early-access h4 {
        font-size: 1.6rem;
    }

    .early-access .cta-button {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
    }
} 