/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #0f172a;
    /* Dark Navy/Charcoal */
    --secondary-color: #e38d2f;
    /* Custom Orange */
    --accent-color: #f1f2f6;
    /* Light Gray */
    --text-color: #2f3542;
    /* Dark Gray */
    --light-text: #a4b0be;
    /* Soft Gray for dark bg */
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Navbar */
.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--light-text) !important;
    margin-left: 20px;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(227, 141, 47, 0.3);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 141, 47, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-outline-custom:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    /* Removed static background */
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    /* Dark overlay for readability */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
}

/* Animations */
.animate-up {
    /* Base class for animations if needed */
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Control Customization */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 5px;
    background-color: transparent !important;
    border: 2px solid var(--white) !important;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    opacity: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #ddd;
    max-width: 600px;
}

/* Stats Counter */
.counter-section {
    padding: 60px 0;
    background-color: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.counter-item {
    text-align: center;
    border-right: 1px solid #eee;
}

.counter-item:last-child {
    border-right: none;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
}

/* Section General */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h5 {
    color: var(--secondary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* About Section */
.about-img-container {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.about-img-main {
    border-radius: 10px;
    width: 100%;
}

.about-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

.about-list li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    background: rgba(227, 141, 47, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Service Cards Modern */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary-color);
}

.service-img-wrapper {
    height: 220px;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-box {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(227, 141, 47, 0.4);
}

.service-content {
    padding: 40px 30px 30px;
}

.service-content h4 {
    margin-bottom: 15px;
}

/* Why Choose Us Dark */
.why-us-section {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-section .section-title h2 {
    color: var(--white);
}

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.why-us-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}

/* Process Horizontal Stepper */
.process-section {
    background-color: #f8f9fa;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    height: 100%;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.process-number {
    color: rgba(0, 0, 0, 0.05);
    font-size: 4rem;
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-icon-box {
    margin-bottom: 20px;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Team Section */
.team-img {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.team-img img {
    width: 100%;
    border-radius: 15px;
}

/* Testimonials */
.testimonials-section {
    background: url('../images/pattern.png'), linear-gradient(135deg, #fff 0%, #f1f2f6 100%);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-rating {
    color: #f1c40f;
    margin-bottom: 15px;
}

/* Activities Section */
.activities-section {
    background-color: var(--white);
    padding-bottom: 70px;
}

.activity-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    opacity: 1;
    transition: all 0.3s ease;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.activity-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.activity-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact */
.contact-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Removed margin-bottom overlap */
    position: relative;
    z-index: 10;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e272e 100%);
    padding: 60px 40px;
    color: var(--white);
    height: 100%;
}

.contact-form-box {
    padding: 60px 40px;
    background-color: var(--white);
    height: 100%;
}

.contact-info-item {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
}

.contact-info-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #050a12;
    /* Darker than primary */
    color: #a4b0be;
    padding: 80px 0 30px;
    /* Reset padding */
    margin-top: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a4b0be;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 15px;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    position: relative;
}

.faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: rgba(240, 195, 86, 0.1);
    /* Gold tint */
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
    color: #6c757d;
    line-height: 1.6;
}

/* Consultation CTA Strip */
.consultation-cta {
    background: #0f1214;
    /* Very dark, almost black */
    background-image: linear-gradient(90deg, #0f1214 0%, #1a1d21 100%);
    padding: 35px 0;
    margin-top: 60px;
    border-left: 5px solid #f0c356;
    /* Gold accent */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    /* Thinner weight for elegance */
}

.cta-title span {
    color: #e38d2f;
    /* Gold */
    font-style: italic;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.btn-consult-red {
    background-color: #e38d2f;
    /* Deep Muted Red */
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}

.btn-consult-red:hover {
    background-color: #8a3838;
    color: #fff;
    transform: translateY(-2px);
}

.btn-consult-gold {
    background-color: #8a3838;
    /* Soft Gold */
    background: linear-gradient(to bottom, #e38d2f, #e38d2f);
    /* Metallic Gold Gradient */
    color: #fffdfd;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}

.btn-consult-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 195, 86, 0.3);
    color: #000;
}

@media (max-width: 991px) {
    .cta-buttons {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        clip-path: none;
    }

    .counter-section {
        margin-top: 30px;
    }

    .counter-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* Pricing/Accommodation Section */
/* Pricing/Accommodation Section */
.pricing-card {
    background: #fff;
    border-radius: 20px !important;
    padding: 0;
    /* Remove default padding to control inner layout */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    /* Elegant Dark Blue Gradient */
    padding: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 15px;
    background: #fff;
    clip-path: ellipse(50% 60% at 50% 100%);
}

.pricing-card:hover .pricing-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e38d2f 100%);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #fff;
}

.pricing-card .room-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-card .features-list {
    margin: 20px 0 30px;
    padding: 0;
    list-style: none;
}

.pricing-card .features-list li {
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.pricing-card .features-list li i {
    color: #2ecc71;
    /* Green checkmark */
    margin-right: 12px;
    background: rgba(46, 204, 113, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.pricing-badge {
    background: #e38d2f;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(227, 141, 47, 0.3);
}

.pricing-card .price-tag {
    background: #f8f9fa;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin-top: auto;
    font-weight: 600;
    border: 1px dashed #ced4da;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: #fff;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* Medical Banner */
.medical-banner {
    background: linear-gradient(45deg, #e38d2f, #e38d2f);
    color: #fff;
    padding: 40px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.medical-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.medical-feature i {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Facilities Section */
.facility-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.facility-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 195, 86, 0.1) 0%, rgba(227, 141, 47, 0.05) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.facility-box:hover::before {
    opacity: 1;
}

.facility-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.facility-box:hover .facility-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(240, 195, 86, 0.4);
}

.facility-box h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 5px;
}

/* About Section Redesign */
.about-image-stack {
    position: relative;
    padding-bottom: 50px;
    /* Space for floating elements */
    padding-left: 30px;
}

.about-img-back {
    width: 85%;
    min-height: 380px;
    border-radius: 20px;
    object-fit: cover;
    margin-left: auto;
    display: block;
    box-shadow: 20px 20px 0px rgba(240, 195, 86, 0.1);
    /* Gold shadow accent */
}

.about-img-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.working-hours-card {
    position: absolute;
    bottom: 30px;
    right: 10%;
    /* Adjusted to not overlap too much */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 15px;
    width: 200px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.icon-circle-soft {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trusted-box {
    background: linear-gradient(135deg, #d39e33 0%, #edc66c 100%);
    transition: transform 0.3s ease;
}

.trusted-box:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #d4a017 0%, #facc2e 100%);
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-image-stack {
        padding-bottom: 0;
        margin-bottom: 50px;
        text-align: center;
        padding-left: 0;
    }

    .about-img-back {
        width: 100%;
        margin: 0 auto;
    }

    .about-img-front {
        width: 40%;
        left: 5%;
    }

    .working-hours-card {
        right: 5%;
        bottom: -20px;
        width: 180px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .about-img-front {
        display: none;
        /* Hide illustrative front image on very small screens to clear clutter */
    }

    .working-hours-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -40px auto 0;
        /* Pull up slightly */
        width: 90%;
        max-width: 300px;
        background: rgba(255, 255, 255, 0.9);
        /* More solid on mobile */
        border: 1px solid #ddd;
    }
}

/* What We Do Section */
.feature-row {
    margin-bottom: 30px;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #c39d6d;
    /* Muted Gold/Brown from image */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.contact-info-strip {
    background: #fdfdfd;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-contact-brown {
    background-color: #c39d6d;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact-brown:hover {
    background-color: #a88558;
    color: #fff;
}

.what-we-do-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* Utility Animation Classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Custom Red Replacement Overrides */
.text-danger {
    color: #e38d2f !important;
}

.bg-danger {
    background-color: #e38d2f !important;
}

.btn-danger {
    background-color: #e38d2f !important;
    border-color: #e38d2f !important;
}

.btn-outline-danger {
    color: #e38d2f !important;
    border-color: #e38d2f !important;
}

.btn-outline-danger:hover {
    background-color: #e38d2f !important;
    color: #fff !important;
}