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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}


.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar {
    background: #d64545;
    color: white;
    padding: 18px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    position: relative;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.contact-info span {
    margin-right: 25px;
    display: flex;
    align-items: center;
}

.auth-links {
    display: none;
}

.auth-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.navbar {
    padding: 5px 0;
    background: white;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.nav-container .logo {
    flex-shrink: 0;
}

.nav-container .nav-menu {
    flex: 1;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

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

.logo img {
    height: 150px;
    width: auto;
    margin-right: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #d64545;
}

.book-now-btn {
    background: #d64545;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
    text-transform: uppercase;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.book-now-btn:hover {
    background: #b83939;
}

.review-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 15px;
}

.review-btn {
    display: block;
    text-decoration: none;
    border-radius: 5px;
    padding: 8px 12px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-content {
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.review-title {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
}

.review-subtitle {
    font-size: 8px;
    margin-bottom: 3px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tripadvisor-btn {
    background: #00af87;
    color: white;
    border-color: #00af87;
    width: 140px;
}

.tripadvisor-btn .review-title {
    color: white;
}

.tripadvisor-btn .review-subtitle {
    color: white;
    opacity: 0.9;
}

.tripadvisor-logo {
    font-size: 11px;
    font-weight: bold;
    color: white;
    background: #000;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 2px;
}

.google-btn {
    background: white;
    color: #666;
    border-color: #ddd;
    width: 140px;
}

.google-btn .review-title {
    color: #666;
    font-size: 9px;
}

.google-logo {
    font-size: 14px;
    font-weight: bold;
    color: #4285f4;
    margin-top: 2px;
}

.review-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.header-contact-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
    align-items: center;
}

.header-contact-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.whatsapp-blink {
    background: #25d366;
    animation: blink-whatsapp 2s infinite;
}

.phone-blink {
    background: #4285f4;
    animation: blink-phone 2s infinite;
}

.email-blink {
    background: #ea4335;
    animation: blink-email 2s infinite;
}

@keyframes blink-whatsapp {
    0%, 50% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes blink-phone {
    0%, 50% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes blink-email {
    0%, 50% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.7; transform: scale(1.1); }
}

.header-contact-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.top-bar-review-buttons {
    display: flex !important;
    gap: 8px;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.top-review-btn {
    display: block;
    text-decoration: none;
    border-radius: 4px;
    padding: 6px 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
    height: 40px;
    display: flex;
    align-items: center;
}

.top-review-content {
    text-align: center;
    line-height: 1.1;   
    white-space: nowrap;
}

.top-review-title {
    font-size: 8px;
    font-weight: 600;
    margin-bottom: 1px;
    white-space: nowrap;
}

.top-review-subtitle {
    font-size: 7px;
    margin-bottom: 2px;
    line-height: 1;
    white-space: nowrap;
}

.tripadvisor-top {
    background: rgba(0,175,135,0.9);
    color: white;
    width: 120px;
}

.top-tripadvisor-logo {
    font-size: 9px;
    font-weight: bold;
    color: white;
    background: rgba(0,0,0,0.8);
    padding: 1px 4px;
    border-radius: 2px;
    display: inline-block;
    text-align: center;
}

.google-top {
    background: rgba(255,255,255,0.9);
    color: #666;
    width: 120px;
}

.google-top .top-review-title {
    color: #666;
    font-size: 8px;
}

.top-google-logo {
    font-size: 11px;
    font-weight: bold;
    color: #4285f4;
}

.top-review-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


.hamburger {
    display: none;
}





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

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: white;
    color: #d64545;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: #d64545;
}


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


.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 600;
}


.features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #d64545;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

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


.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.placeholder-image {
    background: #e9ecef;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
    font-size: 1.2rem;
}


.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #d64545;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
}

.social-link {
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #ccc;
}


.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.page-title {
    color: #d64545;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.room-grid,
.facilities-page,
.rooms-page,
.banquets-page,
.more-page,
.tariff-page {
    background: #f5f5f5;
    min-height: 100vh;
}

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

.tariff-table-section {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.main-tariff-table {
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-width: 400px;
}

.main-tariff-table th {
    background: #d64545;
    color: white;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
}

.category-header {
    width: 60%;
}

.tariff-header {
    width: 40%;
}

.main-tariff-table td {
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

.main-tariff-table tr:last-child td {
    border-bottom: none;
}

.even-row {
    background: #f9f9f9;
}

.tariff-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

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

.tariff-info li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

.services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.service-header {
    background: #f9f9f9;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.service-icon {
    font-size: 1.2rem;
    color: #d64545;
}

.service-header h3 {
    color: #d64545;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-content {
    padding: 20px;
}

.service-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 14px;
}

.book-online-btn {
    background: #d64545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s;
}

.book-online-btn:hover {
    background: #b83939;
}

.more-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.sidebar {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    display: block;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar-item:first-child {
    border-radius: 10px 10px 0 0;
}

.sidebar-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: #d64545;
    color: white;
}

.main-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.content-title {
    color: #d64545;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

.owner-text {
    color: #666;
    line-height: 1.6;
}

.owner-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.owner-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.owner-photo {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.owner-info {
    text-align: center;
}

.owner-info h4 {
    color: #d64545;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.owner-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3px;
    line-height: 1.4;
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

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

.contact-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d64545;
}

.contact-item h3 {
    color: #d64545;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.inquiry-form,
.feedback-form {
    max-width: 600px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.submit-btn {
    background: #d64545;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #b83939;
}

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

.direction-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.direction-item h4 {
    color: #d64545;
    margin-bottom: 10px;
}

.job-listings {
    margin: 20px 0;
}

.job-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #d64545;
}

.job-item h4 {
    color: #d64545;
    margin-bottom: 5px;
}

.about-content h3 {
    color: #d64545;
    margin: 20px 0 10px 0;
}

.about-content ul {
    margin-left: 20px;
}

.about-content li {
    margin-bottom: 5px;
    color: #666;
}

.about-page {
    background: #f5f5f5;
    min-height: 100vh;
}

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

.about-page .page-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 40px;
}

.about-page .content-title {
    color: #d64545;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #d64545;
    padding-bottom: 15px;
    display: block;
}

.about-page .about-content {
    display: block;
}

.about-page .about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
    display: block;
}

.about-page .about-content h3 {
    color: #d64545;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
    display: block;
}

.about-page .about-content ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: disc;
    display: block;
}

.about-page .about-content li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
    display: list-item;
}

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

.banquet-tab {
    margin-bottom: 30px;
}

.banquet-tab-btn {
    background: #d64545;
    color: white;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-size: 16px;
}

.banquet-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.banquet-title {
    color: #d64545;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.banquet-description {
    margin-bottom: 25px;
}

.banquet-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.banquet-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.banquet-features li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.terms {
    color: #d64545;
    font-weight: 600;
    margin-top: 15px;
}

.book-now-red {
    background: #d64545;
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.book-now-red:hover {
    background: #b83939;
}

.banquet-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-note {
    text-align: center;
}

.image-note p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.main-banquet-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banquet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.banquet-gallery h5 {
    color: hsl(0, 64%, 55%);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.banquet-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
}

.banquet-thumb {
    flex: 0 0 calc(25% - 7.5px);
    max-width: calc(25% - 7.5px);
}

.banquet-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.banquet-thumb:hover {
    transform: scale(1.05);
}

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

.rooms-title {
    color: #d64545;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 2px solid #d64545;
    padding-bottom: 10px;
    display: inline-block;
}

.rooms-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.room-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tab-btn {
    background: #f0f0f0;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-right: 1px solid #ddd;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.active {
    background: #d64545;
    color: white;
}

.tab-btn:hover {
    background: #d64545;
    color: white;
}

.room-content {
    display: none;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.room-content.active {
    display: grid;
}

.room-price {
    color: #d64545;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.room-description {
    margin-bottom: 30px;
}

.room-description p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.room-amenities h4 {
    color: #d64545;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.amenity-icon {
    font-size: 1.2rem;
    width: 25px;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-btn {
    background: #d64545;
    color: white;
    border: none;
    padding: 15px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.reservation-btn:hover {
    background: #b83939;
}

.booking-partners {
    display: flex;
    gap: 15px;
}

.partner-btn {
    flex: 1;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    line-height: 1.2;
}

.partner-btn.goibibo {
    background: #ff6d00;
    color: white;
}

.partner-btn.makemytrip {
    background: #d84e55;
    color: white;
}

.partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.room-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.image-gallery h5 {
    color: #d64545;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
}

.thumb-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.thumb-img:hover {
    transform: scale(1.05);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.gallery-sidebar {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.gallery-tabs {
    display: flex;
    flex-direction: column;
}

.gallery-tab {
    display: block;
    padding: 15px 20px;
    color: #666;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.gallery-tab:first-child {
    border-radius: 10px 10px 0 0;
}

.gallery-tab:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: #d64545;
    color: white;
}

.gallery-main {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-pagination {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.gallery-pagination span {
    color: #666;
    font-size: 14px;
}

.hidden {
    display: none !important;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    z-index: 10000;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    max-width: 80%;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-caption {
        bottom: 15px;
        font-size: 14px;
        padding: 8px 15px;
    }
}

.contact-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
    font-size: 0;
    position: relative;
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.contact-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}

.whatsapp-icon {
    background: #25d366;
}

.whatsapp-icon::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.488"/></svg>');
}

.phone-icon {
    background: #4285f4;
}

.phone-icon::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.email-icon {
    background: #ea4335;
}

.email-icon::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.whatsapp-contact {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.banner-section {
    background: white;
    padding: 15px 0;
    text-align: right;
    padding-right: 50px;
}

.banner-text {
    color: #d64545;
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    z-index: 3;
    max-width: 500px;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    z-index: 4;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

.booking-form-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    min-width: 600px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
}

.search-btn {
    background: #d64545;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-end;
    min-width: 120px;
}

.search-btn:hover {
    background: #b83939;
}

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

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hotel-name {
    color: #d64545;
}

.welcome-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

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

.services-title {
    color: #d64545;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #d64545;
    padding-bottom: 10px;
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item-full {
    grid-column: 1 / -1;
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: #d64545;
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.room-card, .facility-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-card h3, .facility-card h3 {
    background: #d64545;
    color: white;
    padding: 15px;
    margin: 0;
}

.room-card p, .facility-card p {
    padding: 20px;
}

.banquet-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.tariff-table th, .tariff-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}

.tariff-table th {
    background: #d64545;
    color: white;
}

.tariff-table tr:nth-child(even) {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
        background: white;
    }
    
    .nav-menu li {
        border: 1px solid #eee;
        border-radius: 5px;
    }
    
    .nav-menu a {
        padding: 12px 8px;
        display: block;
        text-align: center;
        font-size: 12px;
    }
    
    .header-right {
        width: 100%;
        justify-content: center;
    }
    
    .book-now-btn {
        width: auto;
        padding: 8px 16px;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 10px 0;
        position: static;
    }
    
    .contact-info {
        margin-left: 0;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info span {
        margin-right: 0;
    }
    
    .top-bar-review-buttons {
        display: none;
    }
    
    .auth-links {
        margin-right: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .logo img {
        height: 60px;
        margin-right: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .banner-section {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content {
        left: 20px;
        max-width: calc(100% - 40px);
    }
    
    .booking-form-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: none;
        min-width: auto;
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-btn {
        align-self: stretch;
        margin-top: 10px;
    }
    
    .room-showcase {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        padding: 20px 15px;
        margin: 15px 10px;
        border-radius: 10px;
    }
    
    .room-info {
        order: 2;
        width: 100%;
    }
    
    .room-image {
        order: 1;
        width: 100%;
        display: block !important;
    }
    
    .room-type {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .per-night {
        font-size: 0.9rem;
        display: block;
        margin-top: 5px;
    }
    
    .room-desc {
        font-size: 0.9rem;
        text-align: left;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .room-amenities-list {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .amenity {
        font-size: 0.85rem;
        padding: 2px 0;
    }
    
    .room-main-img {
        width: 100%;
        height: 200px;
        border-radius: 8px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .room-showcase {
        margin: 10px 5px;
        padding: 15px 10px;
        gap: 15px;
    }
    
    .room-type {
        font-size: 1.4rem;
    }
    
    .room-main-img {
        height: 180px;
    }
    
    .room-desc {
        font-size: 0.85rem;
    }
    
    .amenity {
        font-size: 0.8rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .facility-item {
        padding: 20px 15px;
    }
    
    .facility-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .services-container,
    .rooms-container,
    .banquets-container,
    .more-container,
    .tariff-container {
        padding: 20px 15px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-section {
        grid-template-columns: 1fr;
    }
    
    .main-tariff-table {
        min-width: 100%;
    }
    
    .main-tariff-table th,
    .main-tariff-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .owner-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .sidebar {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .sidebar-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .sidebar-item {
        flex: 1;
        min-width: 120px;
        text-align: center;
        border: none;
        border-radius: 5px;
        margin-bottom: 5px;
    }
    
    .banquet-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-partners {
        flex-direction: column;
    }
    
    .gallery-thumbs {
        justify-content: center;
    }
    
    .contact-widget {
        right: 10px;
        bottom: 10px;
    }
    
    .whatsapp-contact {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .gallery-tabs {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .gallery-tab {
        min-width: 120px;
        border-right: 1px solid #ddd;
        border-bottom: none;
    }
    
    .gallery-tab:first-child {
        border-radius: 10px 0 0 10px;
    }
    
    .gallery-tab:last-child {
        border-right: none;
        border-radius: 0 10px 10px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
/* Homepage Sections */
.room-highlight {
    padding: 80px 0;
    background: #f8f9fa;
}

.room-showcase {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 50px 0;
    border: 1px solid #f0f0f0;
}

.room-type {
    color: #d64545;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.per-night {
    font-size: 1.1rem;
    color: #888;
    font-weight: 400;
    font-style: italic;
}

.room-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
    font-size: 1rem;
}

.room-amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 35px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d64545;
}

.amenity {
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.amenity::before {
    content: '✓';
    color: #d64545;
    font-weight: bold;
    margin-right: 8px;
    font-size: 1rem;
}

.room-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.room-main-img:hover {
    transform: scale(1.02);
}

.room-image {
    position: relative;
}

.room-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    pointer-events: none;
}

.facilities-section {
    padding: 80px 0;
    background: white;
}

.facilities-title {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.facility-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.facility-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.read-more-btn {
    display: block;
    margin: 0 auto;
    background: #d64545;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #b83939;
}

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-title {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-highlight {
    color: #d64545;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.testimonials-section {
    padding: 80px 0;
    background: #d64545;
    color: white;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-app-section {
    padding: 80px 0;
    background: white;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.app-title {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.app-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.app-img {
    width: 100%;
    max-width: 250px;
    height: auto;
}