
:root {
    --primary-color: #003049;
    --secondary-color: #1a4a6b;
    --accent-color: #D4AF37;
    --dark-color: #001f2e;
    --light-color: #f8f9fa;
    --gold: #D4AF37;
    --cream: #f5f5f5;
    --brown: #003049;
    --dark-brown: #001f2e;
    --text-light: #ffffff;
    --text-dark: #003049;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 48, 73, 0.1);
    --gradient-primary: linear-gradient(135deg, #003049 0%, #1a4a6b 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.hero-section {
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 73, 0.8) 0%, rgba(26, 74, 107, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.phone-number {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-block;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Service Items - New Layout */
.service-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-title {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.service-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-cta {
    text-align: center;
}

.cta-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.btn-call {
    background: var(--gradient-accent);
    color: var(--dark-brown);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-call::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-call:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    color: var(--dark-brown);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-call:hover::before {
    left: 100%;
}

.btn-whatsapp {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    color: var(--text-light);
    text-decoration: none;
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .btn-whatsapp {
        margin-left: 0;
        margin-top: 10px;
    }
}

.service-image-container {
    text-align: center;
}

.service-image-large {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-content-left,
.service-content-right {
    padding: 20px;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .service-item {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .service-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .service-image-large {
        height: 300px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .service-content-left,
    .service-content-right {
        padding: 10px;
    }
    
    .service-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta .btn-call,
    .service-cta .btn-whatsapp {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .service-item {
        padding: 15px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-image-large {
        height: 250px;
    }
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
}

.testimonial-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    border-left: 5px solid var(--primary-color);
}

.why-choose-section {
    background: var(--light-color);
    padding: 80px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
}

.footer {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 80px 0 40px;
    box-shadow: 0 -10px 30px var(--shadow-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer h5:hover::after {
    width: 80px;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 0;
    border-radius: 4px;
    position: relative;
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    padding-left: 8px;
    padding-right: 8px;
}

.footer a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer a:hover::before {
    opacity: 1;
    left: -20px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.navbar {
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-color);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

.navbar .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px !important;
    border-radius: 6px;
}

.navbar .nav-link:hover {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.interior-gallery {
    background: var(--light-color);
    padding: 80px 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Mobile Gallery Optimizations */
@media (max-width: 768px) {
    .interior-gallery {
        padding: 40px 0;
    }
    
    .gallery-item {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .btn-outline-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .interior-gallery {
        padding: 30px 0;
    }
    
    .gallery-item {
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .card-body {
        padding: 12px;
    }
    
    .btn-outline-primary {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px 0;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.25);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-info h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}

.contact-info h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    cursor: pointer;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.call-button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(30, 136, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0);
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Popup Modal */
.modal-custom {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 30px;
    animation: slideUp 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-color);
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 150, 0.25);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info-modal {
    background: var(--light-color);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info-modal h6 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info-modal p {
    margin-bottom: 5px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .hero-video-background video {
        object-position: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .phone-number {
        padding: 10px 20px;
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .btn-outline-light, .btn-light {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        width: 100%;
        display: block;
    }
    
    .call-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-button {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 20px;
    }
}

/* Additional responsive adjustments for extra small devices */
@media (max-width: 576px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .lead {
        font-size: 0.9rem;
    }
    
    .phone-number {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .btn-outline-light, .btn-light {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Bottom Popup Styles */
.popup-trigger-btn {
    position: fixed;
    bottom: 170px;
    right: 30px;
    z-index: 3000;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.popup-trigger-btn:hover {
    background: var(--secondary-color);
}

.bottom-popup-modal {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4000;
    background: rgba(44,24,16,0.55); /* Darker overlay for contrast */
    justify-content: center;
    align-items: flex-end;
    width: 100vw;
    height: 100vh;
    animation: fadeIn 0.3s;
}

.bottom-popup-content {
    background: #fff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 8px 32px rgba(44,24,16,0.25), 0 1.5px 8px rgba(44,24,16,0.10);
    padding: 32px 24px 24px 24px;
    max-width: 400px;
    width: 90vw;
    margin: 0 auto 32px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideUp 0.4s cubic-bezier(.4,0,.2,1);
    position: relative;
}

.bottom-popup-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.bottom-popup-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.7rem;
    font-family: 'Playfair Display', serif;
}

.bottom-popup-offer {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.bottom-popup-desc {
    text-align: center;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--secondary-color);
}

.bottom-popup-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #B8941F);
    color: var(--dark-brown);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    padding: 12px 0;
    margin-bottom: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}
.bottom-popup-call i {
    margin-right: 10px;
    font-size: 1.2rem;
}
.bottom-popup-call:hover {
    background: linear-gradient(135deg, #B8941F, var(--gold));
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.bottom-popup-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, var(--brown), var(--secondary-color));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    padding: 12px 0;
    margin-bottom: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
    transition: background 0.3s;
}
.bottom-popup-whatsapp i {
    margin-right: 10px;
    font-size: 1.2rem;
}
.bottom-popup-whatsapp:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--brown));
    color: #fff;
}

.bottom-popup-hours {
    width: 100%;
    background: var(--light-color);
    border-radius: 12px;
    padding: 14px 10px 8px 10px;
    text-align: center;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(30, 136, 229, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.1);
}
.bottom-popup-hours i {
    color: var(--primary-color);
    margin-right: 6px;
}
.bottom-popup-hours span {
    font-weight: 600;
    color: var(--dark-color);
}

.bottom-popup-close {
    margin-top: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #bbb;
    cursor: pointer;
    align-self: flex-end;
    transition: color 0.2s;
}
.bottom-popup-close:hover {
    color: var(--primary-color);
}

.bottom-popup-close.top-right {
    position: absolute;
    top: 12px;
    right: 18px;
    margin: 0;
    align-self: unset;
    z-index: 10;
}

@media (max-width: 576px) {
    .bottom-popup-content {
        max-width: 98vw;
        padding: 18px 6px 12px 6px;
        margin-bottom: 12px;
    }
    .popup-trigger-btn {
        bottom: 120px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Mobile Contact Buttons Section */
.mobile-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

/* Show only on mobile devices */
@media (max-width: 991.98px) {
    .mobile-contact-buttons {
        display: block;
    }
    
    /* Add bottom padding to prevent content from being hidden behind floating buttons */
    body {
        padding-bottom: 100px;
    }
}

.mobile-contact-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: white;
    width: 50px;
    height: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-contact-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.mobile-contact-btn.phone-btn {
    background: white;
    color: var(--gold);
}

.mobile-contact-btn.phone-btn:hover {
    background: var(--gold);
    color: var(--dark-brown);
}

.mobile-contact-btn.address-btn {
    background: white;
    color: var(--brown);
}

.mobile-contact-btn.address-btn:hover {
    background: var(--brown);
    color: white;
}

.mobile-contact-btn.whatsapp-btn {
    background: white;
    color: var(--secondary-color);
}

.mobile-contact-btn.whatsapp-btn:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.btn-text {
    display: none;
}

/* Responsive adjustments for mobile contact buttons */
@media (max-width: 576px) {
    .mobile-contact-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .mobile-contact-btn {
        width: 45px;
        height: 45px;
    }
    
    .btn-icon {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .mobile-contact-buttons {
        display: none;
    }
}

/* Mobile Contact Section Optimizations */
@media (max-width: 768px) {
    .contact-info {
        padding: 1.5rem;
        margin: 10px 0;
        border-radius: 15px;
    }
    
    .contact-info h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* Contact section spacing */
    #contact .section-title {
        margin-bottom: 2rem;
    }
    
    #contact .section-title h2 {
        font-size: 1.8rem;
    }
    
    #contact .section-title p {
        font-size: 1rem;
    }
    
    /* Contact grid adjustments */
    #contact .row.gy-4 {
        margin: 0;
    }
    
    #contact .col-md-3 {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    /* Enquiry form mobile optimizations */
    .card.shadow-lg {
        margin: 1rem 0;
        padding: 1.5rem;
    }
    
    .card.shadow-lg h2 {
        font-size: 1.5rem;
    }
    
    .form-control {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-submit {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 1.2rem;
        margin: 8px 0;
    }
    
    .contact-info h5 {
        font-size: 1rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    #contact .section-title h2 {
        font-size: 1.6rem;
    }
    
    .card.shadow-lg {
        padding: 1rem;
    }
    
    .card.shadow-lg h2 {
        font-size: 1.3rem;
    }
    
    /* Mobile Footer Optimizations */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .footer h5::after {
        width: 40px;
    }
    
    .footer h5:hover::after {
        width: 60px;
    }
    
    .footer a {
        margin-bottom: 10px;
        padding: 6px 0;
        font-size: 0.95rem;
    }
    
    .footer a:hover {
        transform: translateX(5px);
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .footer a::before {
        left: -12px;
    }
    
    .footer a:hover::before {
        left: -15px;
    }
    
    .footer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer .row > div {
        margin-bottom: 30px;
    }
    
    .footer hr {
        margin: 30px 0 20px 0;
    }
    
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }
}