/* Hotel Xenia Premium Redesign - CSS */

:root {
    /* Premium Color Palette */
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B4941F;
    --primary-gold-light: #E5C769;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E19C 50%, #D4AF37 100%);
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #777;
    --bg-light: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --bg-cream: #F9F6EF;
    --bg-dark: #0D0D0D;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-gold: rgba(212, 175, 55, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;

    /* Premium Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 strong,
h2 strong {
    color: var(--primary-gold);
    font-weight: 400;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background-position: right center;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn:hover::before {
    left: 100%;
}

.section-padding {
    padding: 40px 0;
}

.text-center {
    text-align: center;
}

/* Header & Navigation */
/* Header & Navigation */
header {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-gold);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Google Translate Widget Styling */
.translate-widget {
    margin: 0 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 110px;
    height: 34px;
    isolation: isolate;
}

.translate-button {
    width: 100%;
    height: 100%;
    padding: 0 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.translate-button:hover,
.translate-widget:focus-within .translate-button {
    border-color: var(--primary-gold);
    color: #fff;
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.translate-button::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.25s ease;
}

.translate-widget.is-open .translate-button::after {
    transform: rotate(-135deg) translateY(-1px);
}

.translate-widget-menu {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.translate-widget-menu .goog-te-gadget {
    width: 100%;
    height: 100%;
}

.translate-widget-menu .goog-te-gadget-simple {
    width: 100% !important;
    height: 100% !important;
    min-height: 34px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.translate-widget-menu .goog-te-menu-value,
.translate-widget-menu .goog-te-menu-value span {
    color: transparent !important;
}

.translate-widget-menu .goog-te-menu-value img,
.translate-widget-menu .goog-te-menu-value span:last-child {
    display: none !important;
}

/* Hide the Google logo and branding */
.goog-te-gadget-icon {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-combo {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body {
    top: 0 !important;
}

/* Custom Translate Dropdown */
.translate-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(250px, calc(100vw - 24px));
    max-height: min(340px, 62vh);
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 231, 0.98)),
        var(--bg-light);
    box-shadow: 0 28px 70px rgba(7, 7, 7, 0.32);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1200;
    overflow-y: auto;
}

.translate-widget.is-open .translate-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.translate-dropdown::before {
    content: '';
    position: absolute;
    top: -9px;
    right: 16px;
    width: 14px;
    height: 14px;
    background: #fbf8ef;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    transform: rotate(45deg);
}

.translate-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.translate-dropdown-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--text-dark);
    margin: 0;
}

.translate-dropdown-subtitle {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.55);
}

.translate-language-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.translate-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
    font: inherit;
    font-size: 0.82rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.translate-option::before {
    content: '';
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.38);
    transition: var(--transition-smooth);
}

.translate-option:hover,
.translate-option:focus-visible {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.12);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.16);
    outline: none;
}

.translate-option.is-active {
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(244, 225, 156, 0.22));
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.18);
}

.translate-option.is-active::before {
    background: var(--primary-gold);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.14);
}

.translate-dropdown::-webkit-scrollbar {
    width: 6px;
}

.translate-dropdown::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.35);
    border-radius: 999px;
}

/* Google popup fallback frame */
.goog-te-menu-frame {
    box-shadow: var(--shadow-lg) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(212, 175, 55, 0.16) !important;
    overflow: hidden !important;
}

/* Hero Carousel Section */
.hero-carousel {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    font-weight: 400;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.carousel-slide.active .hero-content h1 {
    transform: translateY(0);
    opacity: 1;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.6s;
}

.carousel-slide.active .hero-content p {
    transform: translateY(0);
    opacity: 1;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Booking Bar */
.booking-bar {
    background-color: #fff;
    padding: 30px;
    margin-top: -50px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.booking-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    min-width: 150px;
}

/* About Section */
.about-section {
    background-color: var(--bg-off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-image img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services / Rooms Section */
.services-section {
    background-color: #fff;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-title p {
    color: #777;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.room-type-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.room-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.room-meta {
    list-style: none;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.room-meta li i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.room-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
}

/* Meal Section Styles */
.meal-box {
    text-align: left;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.meal-box.complimentary {
    background-color: #f0f9f4;
    border: 1px solid #d1eadb;
}

.meal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.meal-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: #444;
}

.status-badge {
    background-color: #1aae6f;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.meal-info {
    font-size: 0.85rem;
    color: #444;
}

.meal-info i {
    color: #1aae6f;
    margin-right: 5px;
}

.meal-box.additional {
    border-top: 1px dashed #ccc;
    padding-top: 20px;
}

.additional-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.price-row i {
    margin-right: 8px;
    width: 15px;
}

.price-row .fa-sun {
    color: #f39c12;
}

.price-row .fa-moon {
    color: #34495e;
}

.gst-notice {
    font-size: 0.7rem;
    color: #999;
    text-align: right;
    margin-top: 10px;
}

/* Room Action Buttons */
.room-actions {
    margin-top: auto;
}

.btn-card {
    width: 100%;
    margin-top: 10px;
}

/* Room Theme Variations */
.room-card.deluxe .room-image {
    border-top: 5px solid #C5A059;
}

.room-card.premium .room-image {
    border-top: 5px solid #A52A2A;
}

.room-card.executive .room-image {
    border-top: 5px solid #708090;
}

.room-card.deluxe .room-title {
    color: #C5A059;
}

.room-card.premium .room-title {
    color: #A52A2A;
}

.room-card.executive .room-title {
    color: #708090;
}

.room-card.deluxe .btn-card {
    background: #C5A059;
}

.room-card.premium .btn-card {
    background: #A52A2A;
}

.room-card.executive .btn-card {
    background: #708090;
}

/* Facilities Section */
.facilities-section {
    background-color: var(--bg-off-white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.facility-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.facility-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.facility-item p {
    font-size: 0.9rem;
    color: #777;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.testimonial-box p {
    font-size: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer */
footer {
    background-color: #050505;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 5px solid var(--primary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.8rem;
}


/* Video/Feature Section */
.video-section {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/3225531/pexels-photo-3225531.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin: var(--spacing-md) auto;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(5px);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.play-button i {
    font-size: 2rem;
    color: #fff;
    margin-left: 5px;
    /* Visual fix for play icon centering */
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #555;
    display: none;
    /* Hidden by default, would need JS to toggle */
    line-height: 1.6;
}

/* Simple hover effect for non-JS FAQ demo */
.faq-item:hover .faq-question i {
    transform: rotate(90deg);
}

.faq-item:hover .faq-answer {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Update Responsive for new sections */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Amenities List */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    margin-top: 30px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.amenities-list li:hover {
    background-color: #fafafa;
}

.amenities-list li i {
    color: var(--primary-gold);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    /* Fixed width for alignment */
    text-align: center;
}

/* Business Service Section */
.business-service-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/3182826/pexels-photo-3182826.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.business-service-bg h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.business-service-bg p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Gallery Page Specifics */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--text-dark);
    padding: 10px 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: #fff;
}

/* Contact Page Specifics */
.contact-container {
    display: flex;
    gap: 50px;
}

.contact-form-wrapper {
    flex: 3;
}

.contact-info-wrapper {
    flex: 2;
    padding-left: 30px;
    border-left: 1px solid #eee;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.contact-info-item {
    display: flex;
    margin-bottom: 15px;
    color: #666;
}

.contact-info-item i {
    color: var(--primary-gold);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    color: var(--text-dark);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: var(--primary-gold);
    color: #fff;
}

.map-section {
    position: relative;
    width: 100%;
    margin-bottom: -5px;
    /* Removes bottom space before footer */
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: contrast(1.1) saturate(1.1);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info-wrapper {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 30px;
    }
}

/* Account Page Specifics */
.account-container {
    max-width: 600px;
    /* Centered and focused */
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.account-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 10px;
}

.account-form .form-group {
    margin-bottom: 25px;
}

.account-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 700;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.account-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.account-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.lost-password {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-decoration: underline;
}

.lost-password:hover {
    color: var(--text-dark);
}

/* Booking Page Specifics */
.booking-search-container {
    background: var(--bg-dark);
    padding: 40px;
    color: #fff;
    margin-top: -50px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-form-inline {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.booking-form-inline .form-group {
    flex: 1;
    min-width: 200px;
}

.booking-form-inline label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary-gold);
}

.booking-form-inline input,
.booking-form-inline select {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    font-family: var(--font-body);
}

.booking-form-inline button {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 13px 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

.booking-form-inline button:hover {
    background: #fff;
    color: var(--text-dark);
}

.room-results {
    margin-top: 50px;
}

.room-result-card {
    display: flex;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.room-result-card:hover {
    transform: translateY(-5px);
}

.room-result-img {
    flex: 1;
    max-width: 400px;
}

.room-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-result-content {
    flex: 2;
    padding: 30px;
    position: relative;
}

.room-result-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.room-result-content .price {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.room-features i {
    color: var(--primary-gold);
    margin-right: 5px;
}


@media (max-width: 768px) {
    .booking-form-inline {
        flex-direction: column;
    }

    .room-result-card {
        flex-direction: column;
    }

    .room-result-img {
        max-width: 100%;
        height: 250px;
    }
}

/* Contact Page Refactor */
.contact-section {
    background-color: #fff;
}

.contact-form-title {
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.contact-intro-text {
    color: #666;
    margin-bottom: 20px;
}

.map-address-box {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    border-bottom: 3px solid var(--primary-gold);
    z-index: 2;
    max-width: 90%;
    width: max-content;
}

/* Footer Enhancements */
.footer-contact-item i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.footer-newsletter-form {
    display: flex;
    margin-top: 10px;
}

.footer-newsletter-input {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter-btn {
    background: var(--primary-gold);
    border: none;
    padding: 0 15px;
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.3s ease;
}

.footer-newsletter-btn:hover {
    background: var(--primary-gold-dark);
}

/* Newsletter Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid var(--primary-gold);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.phone-group {
    display: flex;
    align-items: stretch;
}

.country-code {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-right: none;
    padding: 12px 15px;
    border-radius: 4px 0 0 4px;
    color: #555;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-group input {
    border-radius: 0 4px 4px 0;
    margin: 0;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

/* ===== Lachha Paratha Weekly Menu ===== */
.weekly-menu-section {
    background: var(--bg-cream);
    padding: 80px 0 60px;
}

.lachha-feature-image {
    width: 100%;
    max-width: 900px;
    height: 400px;
    margin: 30px auto 40px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.lachha-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lachha-feature-image:hover img {
    transform: scale(1.03);
}

.menu-week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.menu-day-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.menu-day-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold-light);
}

.menu-day-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-day-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-day-icon {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.menu-day-card:hover .menu-day-icon {
    color: var(--primary-gold-light);
    transform: scale(1.15);
}

.menu-day-body {
    padding: 22px 20px 26px;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.3;
}

.menu-item-side {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.menu-item-side i {
    color: var(--primary-gold);
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Sunday Special Card */
.menu-day-special {
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.menu-day-special .menu-day-header {
    background: linear-gradient(135deg, #1a1200 0%, #2c1e00 50%, #1a1200 100%);
}

.menu-day-special .menu-day-icon {
    color: var(--primary-gold);
}

.menu-special-badge {
    background: var(--gold-gradient);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Menu Note */
.menu-note {
    margin-top: 10px;
}

.menu-note p {
    font-size: 0.85rem;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.06);
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.menu-note i {
    color: var(--primary-gold);
}

/* Weekly Menu Responsive */
@media (max-width: 768px) {
    .weekly-menu-section {
        padding: 50px 0 40px;
    }

    .menu-week-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-day-header {
        padding: 14px 16px;
    }

    .menu-day-body {
        padding: 16px;
    }

    .menu-item-title {
        font-size: 1.05rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    order: 3;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Tablet & Mobile (≤ 992px) ===== */
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }

    .translate-widget {
        display: none;
    }

    nav > .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .booking-form {
        flex-wrap: wrap;
    }

    .about-content {
        gap: 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* ===== Mobile (≤ 768px) ===== */
@media (max-width: 768px) {
    /* --- Navigation --- */
    .hamburger {
        display: flex;
    }

    nav {
        flex-wrap: wrap;
        position: relative;
    }

    nav > .btn {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 14px 20px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a::after {
        display: none;
    }

    .translate-widget {
        display: none;
    }

    /* --- Header --- */
    header {
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
    }

    /* --- Hero Section --- */
    .hero-carousel {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }

    /* --- Sub-page Hero --- */
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
    }

    /* --- Booking Bar --- */
    .booking-bar {
        margin-top: -25px;
        padding: 20px;
    }

    .booking-form {
        flex-direction: column;
        gap: 15px;
    }

    .form-group input,
    .form-group select {
        min-width: auto;
        width: 100%;
    }

    /* --- About Section --- */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    /* --- Section Titles --- */
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-padding {
        padding: 30px 0;
    }

    /* --- Rooms Grid --- */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* --- Facilities Grid --- */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .facility-item {
        padding: 20px 15px;
    }

    .facility-icon {
        font-size: 2rem;
    }

    /* --- Testimonials --- */
    .testimonial-box p {
        font-size: 1.2rem;
    }

    .testimonials-section {
        background-attachment: scroll;
    }

    /* --- Footer --- */
    footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* --- Gallery --- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
    }

    /* --- Gallery Filters --- */
    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    /* --- Contact Page --- */
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-wrapper {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 30px;
    }

    /* --- Map --- */
    .map-section iframe {
        height: 300px;
    }

    .map-address-box {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        border-radius: 0;
        max-width: 100%;
        width: 100%;
    }

    /* --- Business Service --- */
    .business-service-bg {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .business-service-bg h2 {
        font-size: 2rem;
    }

    .business-service-bg p {
        font-size: 1rem;
    }

    /* --- Amenities List --- */
    .amenities-list {
        grid-template-columns: 1fr;
    }

    /* --- Video Section --- */
    .video-section {
        height: 300px;
    }

    /* --- Booking Page --- */
    .booking-form-inline {
        flex-direction: column;
    }

    .room-result-card {
        flex-direction: column;
    }

    .room-result-img {
        max-width: 100%;
        height: 200px;
    }

    /* --- Modal --- */
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }

    /* --- Lachha Feature --- */
    .lachha-feature-image {
        height: 250px;
    }

    /* --- Buttons --- */
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* ===== Small Phones (≤ 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* --- Hero --- */
    .hero-carousel {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 0 15px;
    }

    /* --- Section Titles --- */
    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title h2::after {
        width: 50px;
    }

    /* --- About --- */
    .about-text h2 {
        font-size: 1.6rem;
    }

    /* --- Rooms --- */
    .room-title {
        font-size: 1.4rem;
    }

    .room-meta {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.8rem;
    }

    /* --- Facilities --- */
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    /* --- Gallery --- */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }

    /* --- Gallery Filters --- */
    .gallery-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    /* --- Footer --- */
    footer {
        padding: 40px 0 20px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    /* --- Testimonials --- */
    .testimonial-box p {
        font-size: 1rem;
    }

    /* --- Buttons --- */
    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* --- Business Service --- */
    .business-service-bg {
        padding: 40px 0;
    }

    .business-service-bg h2 {
        font-size: 1.6rem;
    }

    /* --- Lachha Feature --- */
    .lachha-feature-image {
        height: 180px;
        border-radius: 8px;
    }
}
