:root {
    --primary-maroon: #4A0E0E;
    --primary-maroon-dark: #350A0A;
    --royal-gold: #D4AF37;
    --royal-gold-light: #F1D279;
    --cream-white: #FFFDF9;
    --soft-beige: #F8F5F0;
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-maroon);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    height: 100px;
    width: auto;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.loader-text {
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.loader-text span {
    color: var(--royal-gold);
    font-size: 28px;
    font-weight: 700;
}

.loader-bar {
    width: 180px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--royal-gold);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .welcome-text, .subtitle {
    font-family: 'Playfair Display', serif;
}

h1, h2 {
    font-weight: 700;
}

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

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: #B48A32; /* Warm gold/brown from screenshot */
    color: var(--white);
}

.btn-gold:hover {
    background: var(--primary-maroon);
}

.btn-gold-outline {
    background: transparent;
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
}

.btn-gold-outline:hover {
    background: var(--royal-gold);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}


/* Top Bar */
.top-bar {
    background: var(--primary-maroon);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-info span, .right-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.right-info {
    display: flex;
    gap: 30px;
}

.contact-info i {
    width: 14px;
    height: 14px;
    color: var(--royal-gold);
}

/* Header */
header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    color: #444;
    text-shadow: none;
}

.nav-links a:hover {
    color: var(--royal-gold);
}

.nav-links a:hover {
    color: var(--royal-gold);
}

.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--royal-gold);
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--soft-beige);
    color: var(--royal-gold) !important;
    padding-left: 25px;
}

.mobile-menu-btn {
    display: none;
}

.hero {
    position: relative;
    height: 85vh;
    background: url('assets/images/homeimg.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    z-index: 0;
}

.hero .container {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-left: 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    text-align: left !important;
}

.welcome-text {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: var(--royal-gold-light);
    margin-bottom: -15px;
    display: block;
    text-align: left !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 90px;
    line-height: 0.85;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -2px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.6);
    text-align: left !important;
}

.highlight {
    color: var(--royal-gold);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 500px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
    text-align: left;
}




/* Features Strip */
.features-strip {
    padding: 60px 0;
    background: var(--soft-beige);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    width: 40px;
    height: 40px;
    color: var(--royal-gold); /* Gold icons as in reference */
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--royal-gold);
    font-weight: 700;
}

.section-header h2 {
    font-size: 36px;
    margin: 10px 0;
    color: var(--primary-maroon);
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: var(--royal-gold);
    margin: 20px auto;
    position: relative;
}

.gold-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 0 10px;
    color: var(--royal-gold);
}

/* Services */
.services {
    padding: 100px 0;
    background-color: #FFFDF9; /* Off-white background */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-icon {
    width: 65px;
    height: 65px;
    border: 1.5px solid var(--royal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: var(--royal-gold);
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Gold Divider Ornament */
.gold-divider {
    width: 100%;
    max-width: 250px;
    height: 1px;
    background: #e0e0e0;
    margin: 30px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-divider::before, .gold-divider::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.gold-divider::before { left: 0; }
.gold-divider::after { right: 0; }

.divider-ornament {
    width: 40px;
    height: auto;
    z-index: 1;
}

/* Rooms */
.rooms {
    padding: 100px 0;
    background: var(--soft-beige);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.room-card:hover {
    box-shadow: var(--shadow-hover);
}

.room-image {
    width: 45%;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-info {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.room-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.room-features span {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-features i {
    width: 14px;
    height: 14px;
    color: var(--royal-gold);
}

.room-price {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-maroon);
}

.per-night {
    font-size: 14px;
    color: var(--text-light);
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Reviews */
.reviews {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--royal-gold);
}

.stars {
    color: var(--royal-gold);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 15px;
}

.reviewer h4 {
    font-size: 16px;
    color: var(--primary-maroon);
}

.reviewer span {
    font-size: 12px;
    color: var(--text-light);
}

/* Facilities */
.facilities {
    padding: 100px 0;
    background-color: #FFFDF9;
    color: var(--text-dark);
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.small-ornament {
    width: 25px;
    height: auto;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.facility-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.facility-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--royal-gold);
    transform: translateY(-5px);
}

.facility-icon {
    width: 55px;
    height: 55px;
    border: 1.5px solid var(--royal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: var(--royal-gold);
}

.facility-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: var(--transition);
}

.facility-card:hover .facility-icon img {
    filter: brightness(0) invert(1);
}

.facility-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--primary-maroon);
}

.facility-info p {
    font-size: 12px;
    color: var(--text-light);
}

    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Footer */
footer {
    padding: 80px 0 0;
    background: var(--primary-maroon-dark);
    color: var(--white);
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 0;
    padding-bottom: 60px;
}

.footer-col {
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent !important;
}

.footer-col:last-child {
    border-right: none;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--royal-gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon i {
    width: 18px;
    height: 18px;
    color: #fff !important;
}

.social-icon:hover {
    background: var(--royal-gold);
    transform: translateY(-3px);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul a:hover {
    color: var(--royal-gold);
    padding-left: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    width: 18px;
    height: 18px;
    color: var(--royal-gold);
    margin-top: 3px;
}

.contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer Bottom */
.footer-bottom {
    background: #2a0808;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    color: var(--royal-gold);
}

.bottom-links a {
    color: var(--royal-gold);
}

.bottom-links a:hover {
    color: var(--white);
}

.bottom-links span {
    color: rgba(255, 255, 255, 0.2);
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.f-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.f-btn:hover {
    transform: scale(1.1);
}

.f-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--soft-beige);
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-side {
    flex: 1;
}

.contact-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary-maroon);
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: var(--soft-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    width: 20px;
    height: 20px;
    color: var(--royal-gold);
}

.info-text .label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--royal-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-text .value {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.info-text .value a {
    color: var(--primary-maroon);
    font-weight: 600;
}

.info-text .value a:hover {
    color: var(--royal-gold);
}

.contact-form-side {
    flex: 1.5;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.form-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
}

#whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input, 
#whatsapp-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, 
#whatsapp-form textarea:focus {
    border-color: var(--royal-gold);
    background: var(--white);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

#whatsapp-form .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card, .form-container {
        padding: 30px 20px;
    }
}

.social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.values {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--royal-gold);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    border: 1.5px solid var(--royal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.value-info h4 {
    font-size: 18px;
    color: var(--primary-maroon);
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.value-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        padding-left: 40px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .right-info {
        gap: 15px;
        justify-content: center;
    }

    .right-info span:last-child {
        display: none; /* Hide email on mobile to save space */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 15px 20px;
        display: none;
    }

    .dropdown-parent.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn i {
        width: 28px;
        height: 28px;
        color: var(--primary-maroon);
    }

    .hero {
        height: 70vh;
    }

    .hero .container {
        padding-left: 20px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .welcome-text {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-card {
        flex-direction: column;
    }

    .room-image, .room-info {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: transparent !important; /* Ensure no inherited background */
        height: auto !important;
    }
    
    .footer-col:nth-child(2n) {
        border-right: none;
    }
    
    .footer-col:last-child {
        border-bottom: none;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .floating-btns {
        right: 15px;
        bottom: 15px;
    }

    .f-btn {
        width: 45px;
        height: 45px;
    }
}
