/* Hotel Partners Page Styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #f8f6ea;
    color: #0A1833;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hotel-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #faf7ec;
    padding: 7rem 0 2.5rem 0;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hotel-hero-content {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.hotel-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #162447;
    margin-bottom: 1rem;
}
.hotel-hero-content p {
    font-size: 1.1rem;
    color: #222b45;
    margin-bottom: 1.2rem;
}
.hotel-hero-content .btn-primary {
    background: #2853A0;
    color: #fff;
    padding: 0.7rem 1.7rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s;
    display: inline-block;
    width: auto;
    min-width: 120px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.hotel-hero-content .btn-primary:hover {
    background: #1a376b;
}
.hotel-hero-logos {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: center;
}
.hotel-hero-logos img {
    height: 28px;
    opacity: 0.7;
}
.hotel-hero-image {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.hotel-hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* Video Section */
.hotel-video-section {
    background: #0A1833;
    padding: 3rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
}
.hotel-video-container {
    background: #0A1833;
    border-radius: 18px;
    padding: 2rem 1.5rem 2rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hotel-video-container iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 12px;
    background: #000;
}
.hotel-video-container .video-label {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Info Cards Section */
.hotel-info-section {
    background: #0A1833;
    color: #fff;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}
.hotel-info-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
}
.hotel-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.hotel-info-card {
    background: rgba(46, 133, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.hotel-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}
.hotel-info-card p {
    font-size: 1rem;
    color: #eaf6ff;
    font-weight: 400;
}
.hotel-info-section .btn-primary {
    display: inline-block;
    margin: 2.5rem auto 0 auto;
    background: #2853A0;
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    text-align: center;
    width: auto;
    min-width: 120px;
}
.hotel-info-section .btn-primary:hover {
    background: #1a376b;
}
.hotel-info-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.hotel-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    
}

/* Case Study Properties */
.hotel-case-section {
    background: #0A1833;
    color: #fff;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}
.hotel-case-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
}
.hotel-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.hotel-case-card {
    background: #fff;
    color: #0A1833;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
.hotel-case-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.hotel-case-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0A1833;
}
.hotel-case-card p {
    font-size: 0.98rem;
    color: #2853A0;
    margin: 0;
}
.hotel-case-section .btn-secondary {
    display: inline-block;
    margin: 2.5rem auto 0 auto;
    background: #2853A0;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    width: auto;
    min-width: 120px;
}
.hotel-case-section .btn-secondary:hover {
    background: #2853A0;
    color: #fff;
}

/* Stats Section */
.hotel-stats-section {
    background: #0A1833;
    color: #fff;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}
.hotel-stats-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.hotel-stat {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.2rem 2.2rem;
    font-size: 1.1rem;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hotel-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4ea1f7;
    margin-bottom: 0.2rem;
}

/* Testimonial Section */
.hotel-testimonial-section {
    background: #0A1833;
    color: #fff;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}
.hotel-testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hotel-testimonial-author {
    display: flex;
    align-items: left;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hotel-testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.hotel-testimonial-author span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    align-items: start;
    text-align: left;
}

/* Team Section */
.hotel-team-section {
    background: #0A1833;
    color: #fff;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}
.hotel-team-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
}
.hotel-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.hotel-team-member {
    background: #fff;
    color: #0A1833;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
.hotel-team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.hotel-team-member strong {
    font-size: 1.13rem;
    color: #0a1833;
    margin-bottom: 0.2rem;
    font-weight: 700;
}
.hotel-team-member span {
    color: #4ea1f7;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: block;
    font-weight: 500;
}

/* CTA Section */
.hotel-cta-section {
    background: #f8f6ea;
    padding: 3.5rem 0 3.5rem 0;
    color: #0A1833;
    text-align: center;
}
.hotel-cta-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0A1833;
}
.hotel-cta-section .btn-primary {
    background: #2853A0;
    color: #fff;
    padding: 0.7rem 1.7rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s;
    display: inline-block;
    width: auto;
    min-width: 120px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.hotel-cta-section .btn-primary:hover {
    background: #1a376b;
}

@media (max-width: 900px) {
    .hotel-hero {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 5rem 0 2rem 0;
    }
    .hotel-hero-image img {
        width: 90vw;
        max-width: 400px;
    }
    .hotel-hero-content {
        max-width: 98vw;
        align-items: flex-start;
    }
    .hotel-hero-content h1 {
        font-size: 2rem;
    }
}
@media (max-width: 600px) {
    .hotel-hero {
        padding: 3.5rem 0 1.5rem 0;
    }
    .hotel-hero-content,
    .hotel-hero-content h1,
    .hotel-hero-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hotel-hero-image img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .hotel-hero-content .btn-primary {
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }
} 