
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

h1.brand-logo-text, .brand-logo-text {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    font-style: italic;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Rubik:wght@500;600;700&display=swap');

html {
    scroll-padding-top: 100px;
}

/********** LuxeCraft Interiors - Template CSS **********/
:root {
    --primary: #FF5E14;
    --primary-dark: #cc4b10;
    --secondary: #5F656F;
    --dark: #02245B;
    --light: #F5F5F5;
    --dark-alt: #16213E;
    --cream: #E8DCC8;
    --text: #5F656F;
    --text-muted: #a0a0a0;
    --gold-gradient: linear-gradient(135deg, #FF5E14 0%, #ff8c57 50%, #FF5E14 100%);
    --dark-gradient: linear-gradient(135deg, #02245B 0%, #16213E 100%);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

h1, h2, .h1, .h2, .fw-bold {
    font-weight: 700 !important;
}
h3, h4, .h3, .h4, .fw-medium {
    font-weight: 600 !important;
}
h5, h6, .h5, .h6, .fw-semi-bold {
    font-weight: 500 !important;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: var(--dark) !important;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#spinner .spinner-border {
    border-color: var(--primary);
    border-right-color: transparent;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 30px;
    bottom: 90px;
    z-index: 99;
    background: var(--primary) !important;
    border: none;
}
.back-to-top:hover {
    background: var(--primary-dark) !important;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Topbar ***/
.topbar-right {
    position: relative;
    background: var(--primary);
}
.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background: var(--primary);
}

/*** Navbar ***/
.navbar {
    background: var(--dark) !important;
    transition: all 0.3s ease;
}
.navbar .navbar-brand h1 {
    color: var(--primary) !important;
    font-size: 2rem;
    letter-spacing: 2px;
}
.navbar .navbar-brand span {
    color: var(--cream);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.navbar .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 25px 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}
.navbar .dropdown-menu {
    background: var(--dark-alt);
    border: 1px solid rgba(201,169,110,0.2);
}
.navbar .dropdown-item {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}
.navbar .dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}
.sticky-top.shadow-sm {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}
.navbar .btn-consultation {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.navbar .btn-consultation:hover {
    background: var(--primary-dark);
}

/*** Hero Section ***/
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(2, 36, 91, 0.5) 0%, rgba(2, 36, 91, 0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-content .subtitle {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}
.hero-content h1 {
    color: #fff;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}
.hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 35px;
}
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}
.hero-nav span {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.hero-nav span.active {
    background: var(--primary);
    width: 80px;
}

/*** Section Styling ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}
.section-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.section-heading {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-dark .section-heading {
    color: #fff;
}
.section-dark .section-title::before {
    background: var(--primary);
}

/*** Stats Counter Section ***/
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03" fill="white">✦</text></svg>') repeat;
    background-size: 100px;
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}
.stat-item:hover .stat-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Rubik', sans-serif;
}
.stat-label {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 5px;
}

/*** About Section ***/
.about-section {
    padding: 100px 0;
    background: #fff;
}
.about-img-container {
    position: relative;
}
.about-img-container img {
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-img-container .experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    text-align: center;
    z-index: 2;
}
.experience-badge h2 {
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
}
.experience-badge span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--dark);
    font-weight: 500;
}
.about-features .feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/*** Services Section ***/
.services-section {
    padding: 100px 0;
    background: var(--light);
}
.service-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
    border: none;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26,26,46,0.15);
}
.service-card .card-img-wrapper {
    overflow: hidden;
    height: 280px;
    position: relative;
}
.service-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.service-card:hover .card-img-wrapper img {
    transform: scale(1.15);
}
.service-card .card-img-wrapper .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.service-card:hover .card-img-wrapper .overlay {
    opacity: 1;
}
.service-card .card-img-wrapper .overlay span {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}
.service-card .card-body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: #ffffff;
    overflow-x: hidden;
}
.service-card .card-body h5 {
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}
.service-card .card-body p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}
.service-card .card-body .card-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/*** Process Section ***/
.process-section {
    padding: 100px 0;
    background: #fff;
}
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--cream), var(--primary));
}
.process-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.process-step .step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.5s;
    overflow: hidden;
}
.process-step .step-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.process-step .step-circle .step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s;
}
.process-step:hover .step-circle {
    background: var(--primary);
    transform: scale(1.05);
}
.process-step:hover .step-circle .step-icon {
    color: #fff;
}
.process-step h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 10px;
}
.process-step p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.6;
}
.process-step .step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    line-height: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/*** Featured Projects ***/
.projects-section {
    padding: 100px 0;
    background: var(--dark);
}
.project-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}
.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.project-card:hover img {
    transform: scale(1.1);
}
.project-card .project-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.5s;
}
.project-card:hover .project-overlay {
    opacity: 1;
}
.project-card .project-overlay h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}
.project-card .project-overlay span {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/*** Project Filter ***/
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.project-filters .filter-btn {
    padding: 8px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s;
}
.project-filters .filter-btn:hover,
.project-filters .filter-btn.active {
    background: var(--primary);
    color: #fff;
}
.project-item {
    transition: all 0.5s ease;
}
.project-item.hidden {
    display: none;
}

/*** Testimonials ***/
.testimonial-section {
    padding: 100px 0;
    background: var(--light);
}
.testimonial-item {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}
.testimonial-item::before {
    content: '"';
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
}
.testimonial-item p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.testimonial-item .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-item .client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-item .client-info h6 {
    color: var(--dark);
    margin-bottom: 2px;
}
.testimonial-item .client-info span {
    color: var(--primary);
    font-size: 0.8rem;
}

/*** CTA Section ***/
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(2, 36, 91, 0.3), rgba(2, 36, 91, 0.3)), url('../img/carousel-1.jpg') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 50%);
}
.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
}
.cta-section p {
    color: rgba(255,255,255,0.6);
}

/*** Contact Section ***/
.contact-section {
    padding: 100px 0;
    background: #fff;
}
.contact-form .form-control {
    border: 2px solid #eee;
    padding: 15px 20px;
    font-size: 0.95rem;
    border-radius: 0;
    transition: border-color 0.3s;
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.contact-form textarea.form-control {
    min-height: 150px;
}
.contact-info-card {
    background: var(--dark);
    padding: 40px;
    height: 100%;
}
.contact-info-card h4 {
    color: #fff;
    margin-bottom: 30px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}
.contact-info-item h6 {
    color: #fff;
    margin-bottom: 3px;
}
.contact-info-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.map-container {
    height: 400px;
    width: 100%;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%);
}

/*** Footer ***/
.footer-section {
    background: var(--dark);
    padding: 80px 0 30px;
}
.footer-section h5 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}
.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 2;
}
.footer-section a:hover {
    color: var(--primary);
}
.footer-section .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    margin-right: 8px;
    transition: all 0.3s;
}
.footer-section .social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 50px;
}
.footer-bottom p {
    margin-bottom: 0;
}

/*** WhatsApp Button ***/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
    color: #fff;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/*** Lightbox ***/
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}
.lightbox-overlay img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(201,169,110,0.2);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}
.lightbox-close:hover {
    color: var(--primary);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 20px;
    transition: color 0.3s;
}
.lightbox-nav:hover {
    color: var(--primary);
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/*** Gallery Grid ***/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.gallery-item:hover img {
    transform: scale(1.15);
}
.gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,26,46,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item .gallery-overlay i {
    color: var(--primary);
    font-size: 2rem;
}

/*** Page Header ***/
.page-header {
    background: var(--dark);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 60%);
}
.page-header h1 {
    color: #fff;
    font-size: 3rem;
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb-item a {
    color: var(--primary);
}
.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/*** Why Choose Us ***/
.why-choose-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
}
.feature-box {
    text-align: center;
    padding: 40px 25px;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.feature-box .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.feature-box h5 {
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-box p {
    color: #666;
    font-size: 0.9rem;
}

/*** Room Detail Page ***/
.room-hero {
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.room-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, var(--dark) 0%, rgba(26,26,46,0.5) 100%);
}
.room-hero h1 {
    color: #fff;
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
}
.room-description {
    padding: 60px 0;
    background: #fff;
}
.room-gallery {
    padding: 60px 0;
    background: var(--light);
}

/*** Responsive ***/
@media (max-width: 991.98px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-heading { font-size: 2rem; }
    .process-timeline::before { display: none; }
    .navbar .navbar-nav .nav-link { padding: 12px 0; }
}
@media (max-width: 767.98px) {
    .hero-content h1 { font-size: 2rem; }
    .section-heading { font-size: 1.7rem; }
    .stat-number { font-size: 2rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .about-img-container .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 20px;
    }
    .experience-badge h2 { font-size: 2rem; }
}
@media (max-width: 575.98px) {
    .hero-content h1 { font-size: 1.7rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Mobile Header Fixes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark, #02245B);
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .navbar-light .navbar-collapse {
        background: #fff;
    }
    .navbar-toggler {
        background: var(--primary);
        border: none;
        outline: none;
        padding: 8px 12px;
        box-shadow: none !important;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }
    .navbar-brand h1 {
        font-size: 1.8rem !important;
    }
    .navbar-brand span {
        font-size: 0.5rem !important;
    }
    .back-to-top {
        display: none !important;
    }
}
.back-to-top { display: none !important; }
