/* Customer Layout Styles */
:root {
    --primary: #65E0FF;
    /* main cyan */
    --yellow-1: #FFFA65;
    /* pale yellow */
    --yellow-2: #FFF541;
    /* bright yellow */
    --navy-dark: #0b2136;
    /* footer/background dark */
    --navy-light: #12304d;
    --navy-border: #1a4269;
    --text-muted: #cbd5e1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

/* Header & Navigation */
.customer-header {
    background-color: white;
    box-shadow: none;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.customer-header.transparent-top {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-header.transparent-top .logo-text,
.customer-header.transparent-top .nav-menu li a {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.customer-header.transparent-top .search-icon {
    color: #ffffff;
}

.customer-header.transparent-top .header-search-form {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.customer-header.transparent-top .header-search-input {
    color: #ffffff;
}

.customer-header.transparent-top .header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.customer-header.scrolled {
    background-color: white;
    box-shadow: 0 5px 20px rgba(255, 180, 0, 0.2);
    border-bottom: 2px solid var(--yellow-1);
}

.customer-header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    min-width: 250px;
    display: flex;
    align-items: center;
    position: relative;
    height: 46px;
    /* Maintain height for header flow */
}

.header-logo-img {
    position: absolute;
    top: -67px;
    /* Centered vertically relative to the 46px container ( (46-180)/2 = -67 ) */
    left: -10px;
    height: 180px;
    width: 300px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    display: block;
    z-index: 1100;
}

.logo-text {
    color: #1a73e8;
    font-weight: 800;
}

.logo-text {
    color: var(--primary);
}

/* Mobile Menu Elements */
.mobile-menu-toggle,
.mobile-search-toggle,
.mobile-search-dropdown {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.header-nav-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-left: 60px;
}

.nav-menu li a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

.search-container {
    display: flex;
    align-items: center;
}

.header-search-form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 5px 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.header-search-form:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(101, 224, 255, 0.2);
}

.header-search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px 10px;
    font-size: 14px;
    width: 150px;
    transition: width 0.3s ease;
}

.header-search-input:focus {
    width: 200px;
}

.search-icon {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon:hover {
    color: var(--primary);
}

/* Banner Section */
.home-banner {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    height: 100vh;
}

.bannerSwiper {
    height: 100%;
}

.bannerSwiper .swiper-slide {
    position: relative;
    background: #f5f5f5;
    height: 100%;
    width: 100%;
}

.bannerSwiper .swiper-slide>a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--navy-dark);
    height: 100%;
    width: 100%;
}

/* Common Container */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 2. About Section */
.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-subtitle {
    font-size: 22px;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.about-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 3. Hiring Section */
.hiring-section {
    padding: 60px 0;
    background: var(--navy-dark);
    color: white;
}

.hiring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hiring-image img {
    width: 100%;
    border-radius: 12px;
}

.hiring-title {
    font-size: 40px;
    color: var(--yellow-1);
    margin-bottom: 20px;
}

.job-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.job-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hiring-action {
    display: flex;
    align-items: center;
    gap: 20px;
}



.btn-apply {
    background: var(--yellow-1);
    color: var(--navy-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-apply:hover {
    background: var(--primary);
    color: white;
}

/* 4. Rooms Section */
.rooms-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* 5. Feedback Section */
.feedback-section {
    padding: 60px 0;
    background: var(--navy-dark);
}

.feedback-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    margin: 40px 10px;
    transition: 0.3s;
}

.swiper-slide-active .feedback-card {
    background: var(--yellow-1);
    transform: scale(1.05);
}

.feedback-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -80px auto 20px;
    border: 4px solid #fff;
    background: #eee;
    overflow: hidden;
}

.feedback-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: #999;
}

.feedback-name {
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.feedback-stars {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 20px;
}

.feedback-content {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.05);
}

/* 6. News Section */
.news-section {
    padding: 60px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-img-wrap {
    height: 220px;
    background: #eee;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 20px;
}

.news-title {
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 10px;
    font-weight: bold;
}

.news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.news-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-readmore {
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.btn-readmore:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .about-grid,
    .hiring-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .home-banner {
        height: auto;
    }

    .bannerSwiper {
        height: 250px;
    }

    .bannerSwiper .swiper-slide {
        height: 100%;
    }
}

/* Search Section */
.search-section {
    max-width: 1920px;
    margin: -50px auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto;
    gap: 15px;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.search-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background-color: #3bbbe8;
}

.reset-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset-btn:hover {
    background-color: #e0e0e0;
}

/* Content Section */
.content-section {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

main.home-main.content-section {
    padding: 0 !important;
    max-width: none !important;
}

/* Newsletter Bar */
.newsletter-bar {
    background-color: var(--navy-dark);
    border-bottom: 1px solid var(--navy-border);
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: white;
}

.newsletter-title {
    font-size: 18px;
    font-weight: bold;
}

.newsletter-title span {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    border-radius: 99px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
    flex: 1;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0 20px;
    cursor: pointer;
}

/* Custom Modern Footer */
.customer-footer {
    background-color: var(--navy-dark);
    color: #cbd5e1;
    font-family: inherit;
    border-top: 1px solid var(--navy-border);
}

.footer-top {
    padding: 70px 0 50px 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 3fr 3fr 2.5fr 3.5fr;
    gap: 50px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.brand-col .footer-logo {
    margin-bottom: 0;
}

.brand-col .footer-logo img {
    max-height: 280px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    background: transparent;
    margin-left: -5px;
    margin-top: -45px;
    margin-bottom: -40px;
}

.brand-col .logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.brand-separator {
    width: 295px;
    max-width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 15px;
    margin-left: -5px;
}

.brand-col .footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 295px;
    max-width: 100%;
    margin-left: -5px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(101, 224, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(101, 224, 255, 0.3);
}

/* Common Headings */
.footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary);
}

.footer-links li a:hover::before {
    transform: translateX(4px);
}

/* Map */
.footer-map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.footer-map-container iframe,
.footer-map-container img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: 0.3s;
}

.footer-map-container:hover iframe,
.footer-map-container:hover img {
    filter: brightness(1) contrast(1);
}

/* Bottom Bar */
.footer-bottom {
    background: linear-gradient(90deg, var(--yellow-1), var(--yellow-2));
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid transparent;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.top {
    border-color: var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 20px;
}

.floating-phone-menu {
    position: absolute;
    right: 60px;
    bottom: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
}

.floating-phone-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-phone-menu a {
    padding: 12px 20px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.floating-phone-menu a:last-child {
    border-bottom: none;
}

.floating-phone-menu a:hover {
    background: #f8fafc;
    color: var(--primary);
}

.floating-phone-menu svg {
    color: var(--primary);
}

@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .brand-col {
        align-items: center;
    }
    .brand-col .footer-logo img {
        margin-left: 0;
    }
    .brand-separator {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-socials {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }
    .footer-links {
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 1200px) {

    .customer-header-container,
    .search-section,
    .content-section {
        padding: 0 30px;
    }

    .nav-menu {
        margin-left: 30px;
        gap: 25px;
    }

    .search-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .customer-header-container {
        flex-direction: row;
        justify-content: center;
        padding: 15px 20px;
        position: relative;
    }

    .logo {
        margin: 0 auto;
        min-width: 240px;
    }

    .header-logo-img {
        top: -47px;
        height: 140px;
        width: 260px;
        left: 50%;
        transform: translateX(-50%);
        object-position: center center;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 26px;
        color: var(--navy-dark);
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-search-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--navy-dark);
        cursor: pointer;
        z-index: 1001;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .customer-header.transparent-top .mobile-menu-toggle,
    .customer-header.transparent-top .mobile-search-toggle {
        color: #fff;
    }

    .header-nav-wrapper {
        position: fixed;
        top: -150%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: top 0.4s ease;
        z-index: 1000;
        border-radius: 0 0 20px 20px;
        align-items: center;
    }

    .header-nav-wrapper.active {
        top: 60px;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-dropdown {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #e2e8f0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-search-dropdown.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-form {
        display: flex;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 99px;
        padding: 5px 15px;
        align-items: center;
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 10px 0;
        outline: none;
        font-size: 15px;
        color: #333;
    }

    .mobile-search-submit {
        background: none;
        border: none;
        color: var(--navy-dark);
        cursor: pointer;
        padding: 5px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        gap: 15px;
        text-align: center;
        justify-content: center;
    }

    .customer-header.transparent-top .nav-menu li a,
    .nav-menu li a {
        color: #666;
        font-size: 16px;
        padding: 10px;
        display: block;
        text-shadow: none;
    }

    .customer-header.transparent-top .nav-menu li a.active,
    .nav-menu li a.active {
        color: var(--primary);
    }

    .search-container {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .customer-header.transparent-top .header-search-form,
    .header-search-form {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        width: 100%;
        max-width: 300px;
    }

    .customer-header.transparent-top .header-search-input,
    .header-search-input {
        color: #333;
        width: 100%;
    }

    .customer-header.transparent-top .search-icon,
    .search-icon {
        color: #666;
        position: static;
    }

    .search-section,
    .content-section {
        padding: 0 20px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-btn,
    .reset-btn {
        width: 100%;
    }
}

/* --- Contact Page Styles --- */
.contact-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('https://via.placeholder.com/1920x400/0b2136/ffffff?text=Contact+Us') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
}

.contact-section-page {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.contact-info-panel {
    background: var(--navy-dark);
    color: #fff;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(101, 224, 255, 0.1);
    border-radius: 50%;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-info-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--primary);
}

.info-content h4 {
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.info-content p,
.info-content a {
    margin: 0;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.5;
    font-size: 15px;
    word-break: break-word;
    display: block;
}

.info-content a:hover {
    color: #fff;
}

.contact-form-panel {
    padding: 50px 40px;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.c-form-group {
    margin-bottom: 25px;
}

.c-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.c-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.3s;
}

.c-form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(101, 224, 255, 0.15);
}

textarea.c-form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit-contact {
    background: var(--navy-dark);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit-contact:hover {
    background: var(--primary);
    color: #000;
}

.map-section {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 500px;
}

.map-section iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* --- Popup Styles --- */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup-box {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.contact-popup-overlay.active .contact-popup-box {
    transform: translateY(0) scale(1);
}

.popup-img-wrapper {
    width: 100%;
    height: 350px;
    position: relative;
    background: #f8fafc;
}

.popup-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.popup-content {
    padding: 30px 40px 40px;
}

.popup-icon-check {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: -60px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    border: 4px solid #fff;
}

.popup-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.popup-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.popup-desc strong {
    color: var(--primary);
}

.btn-close-popup {
    background: var(--navy-dark);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-close-popup:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.daily-password-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 22px;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    outline: none;
    box-sizing: border-box;
}

.daily-password-input:focus {
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.daily-password-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: normal;
    font-size: 16px;
}

.daily-password-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily-password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.daily-password-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

#star-rating-container label {
    color: #cbd5e0;
    font-size: 45px;
    transition: color 0.2s, transform 0.1s;
}

#star-rating-container label:active {
    transform: scale(0.9);
}

#star-rating-container label:hover,
#star-rating-container label:hover~label,
#star-rating-container input:checked~label {
    color: #f59e0b;
}