/* Hotel Management Page Specific Styles */

/* Hotel Management Page Background */

.hotel-management-page {
    background: #001926d0 url('../assets/hotel-bg.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-blend-mode: darken;
    background-position: top;
}

/* hotel Hero Section */
.hotel-hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #001926d0 url('/assets/hotel-hero.jpg');
    background-size: cover;
    background-position: bottom;
    background-attachment: scroll;
    background-blend-mode: overlay;
}

.hotel-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1366px;
}

.pos-mockup {
    transform: perspective(1200px) rotateX(347deg) rotateY(343deg) !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #00d4ff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-large {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pos-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.pos-mockup img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 12px solid rgba(0, 0, 0, 1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: floatingIcon 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: -30px;
}

.floating-icon:nth-child(2) {
    top: 30%;
    left: -30px;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    right: -30px;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    left: -30px;
}

@keyframes floatingIcon {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Hotel Services Section */
.hotel-services {
    padding: 120px 0;
    position: relative;
}

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

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D4FF;
    font-weight: bold;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
}

.service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #00D4FF;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hotel Core Features Blue Theme */
/* Core Features Section */
.core-features {
    padding: 120px 0;
    position: relative;
}

.features-showcase {
    margin-top: 4rem;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-main:nth-child(even)>* {
    direction: ltr;
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature-icon-large i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1rem;
}

.feature-list i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 300px;
}

.screen-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.screen-dots span:nth-child(1) {
    background: #ff5f57;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #28ca42;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-item span {
    opacity: var(--opacity-light)
}

.kitchen-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.kitchen-item span {
    opacity: var(--opacity-light)
}


.kitchen-item:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.kitchen-item i {
    color: #00D4FF;
    font-size: 0.9rem;
    flex-shrink: 0;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

/* Advanced Features Section */
.advanced-features {
    padding: 120px 0;
    position: relative;
}

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

.advanced-feature {
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* .advanced-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.advanced-feature:hover::before {
    left: 100%;
} */

.advanced-feature:hover {
    background: #00d4ff1a;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.4);
}

.advanced-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.advanced-feature .feature-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.advanced-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.advanced-feature p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    position: relative;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

.benefits-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #00d4ff1a;
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(10px);
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.stat-circle {
    background: linear-gradient(135deg, #00d4ff1a 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-circle .stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #00d4ff;
    line-height: 1;
}

.stat-circle .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: var(--opacity-light)
}

/* Mobile Apps Section */
.mobile-apps {
    padding: 120px 0;
    position: relative;
}

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

.app-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* .app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.app-card:hover::before {
    left: 100%;
} */

.app-card:hover {
    background: #00d4ff1a;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.app-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.app-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.app-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D4FF;
    font-weight: bold;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00D4FF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: 100%;
}

.app-badge i {
    font-size: 1rem;
}

/* Service Types Layout */
.service-types {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(9, 9, 185, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
    min-width: 120px;
    transition: all 0.3s ease;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.service-card i {
    font-size: 1.5rem;
    color: #00D4FF;
    flex-shrink: 0;
}

.service-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    opacity: var(--opacity-light)
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

/* Responsive Styles for Hotel Management Page */
@media (max-width: 1200px) {
    .hotel-hero .container {
        gap: 3rem;
    }

    .hotel-hero h1 {
        font-size: 3rem;
    }

    .hotel-hero .hero-stats {
        gap: 2rem;
    }

    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hotel-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .hotel-hero h1 {
        font-size: 2.5rem;
    }

    .hotel-hero .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hotel-hero .hero-buttons {
        justify-content: center;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }
}

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

    .hotel-hero h1 {
        font-size: 2rem;
    }

    .hotel-hero p {
        font-size: 1rem;
    }

    .hotel-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hotel-hero .stat-number {
        font-size: 2rem;
    }

    .hotel-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hotel-hero .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hotel-hero .floating-icon {
        width: 50px;
        height: 50px;
    }

    .hotel-hero .floating-icon i {
        font-size: 1.2rem;
    }

    .apps-showcase {
        grid-template-columns: 1fr;
    }

    .app-card {
        padding: 1.5rem;
    }

    .app-icon {
        width: 70px;
        height: 70px;
    }

    .app-icon i {
        font-size: 1.8rem;
    }

    .app-card h3 {
        font-size: 1.3rem;
    }

    .app-card p {
        font-size: 0.9rem;
    }

    .app-features li {
        font-size: 0.8rem;
    }

    .app-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    /* Hotel Management Mobile Fixes */
    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .feature-list i {
        font-size: 0.8rem;
        margin-right: 0.5rem;
        width: 18px;
        height: 18px;
    }

    .kitchen-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .kitchen-item i {
        font-size: 0.8rem;
        width: 18px;
        height: 18px;
    }

    .advanced-feature h3 {
        font-size: 1.1rem;
    }

    .advanced-feature p {
        font-size: 0.8rem;
    }

    .benefit-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .benefit-item i {
        font-size: 1.2rem;
    }

    .benefit-item h4 {
        font-size: 1rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 1.8rem;
    }

    .btn-contact {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-circle .stat-number {
        font-size: 1.5rem;
    }

    .stat-circle .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hotel-hero h1 {
        font-size: 1.8rem;
    }

    .hotel-hero .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

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

    .hotel-hero .stat-number {
        font-size: 1.8rem;
    }

    .hotel-hero .stat-label {
        font-size: 0.8rem;
    }

    .hotel-services .service-card {
        padding: 1rem;
    }

    .hotel-services .service-card h3 {
        font-size: 1.3rem;
    }

    .hotel-services .service-card p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .service-types {
        flex-direction: column;
        gap: 0.75rem;
    }

    .service-types .service-card {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }

    .service-types .service-card i {
        font-size: 1.2rem;
    }

    .service-types .service-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hotel-hero h1 {
        font-size: 1.8rem;
    }

    .hotel-hero .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

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

    .hotel-hero .stat-number {
        font-size: 1.5rem;
    }

    .hotel-hero .stat-label {
        font-size: 0.75rem;
    }

    .app-card {
        padding: 1rem;
    }

    .app-icon {
        width: 60px;
        height: 60px;
    }

    .app-icon i {
        font-size: 1.5rem;
    }

    .app-card h3 {
        font-size: 1.1rem;
    }

    .app-card p {
        font-size: 0.8rem;
    }

    .app-features li {
        font-size: 0.75rem;
    }

    .app-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .hotel-services .service-card {
        padding: 0.875rem;
    }

    .hotel-services .service-card h3 {
        font-size: 1.1rem;
    }

    .hotel-services .service-card p {
        font-size: 0.8rem;
    }

    .service-features li {
        font-size: 0.75rem;
    }

    .service-types .service-card {
        min-width: 100px;
        padding: 0.5rem 0.75rem;
    }

    .service-types .service-card i {
        font-size: 1rem;
    }

    .service-types .service-card span {
        font-size: 0.75rem;
    }
}