/* General Body and Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

/* Header and Navigation */
.navbar-brand {
    font-weight: bold;
}
/* Custom Logo Styling */
.navbar-brand img {
    height: 70px; /* Adjust this value as needed */
    width: auto;
}

.nav-link.btn {
    transition: all 0.3s ease;
}

/* CTA button in navbar — override nav-link color inheritance */
.navbar .nav-link.btn-primary {
    color: #ffffff !important;
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.375rem 0.85rem;
    border-radius: 0.375rem;
}
.navbar .nav-link.btn-primary:hover,
.navbar .nav-link.btn-primary:focus {
    color: #ffffff !important;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* Pricing Panel */
.pricing-panel .card-header {
    background-color: #0d6efd;
    color: #fff;
}
.pricing-panel .service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    gap: 1rem;
}
.pricing-panel .service-row:last-child {
    border-bottom: none;
}
.pricing-panel .price-range {
    white-space: nowrap;
    font-weight: 600;
    color: #0d6efd;
    font-size: 0.85rem;
}
.pricing-panel .price-note {
    font-size: 0.75rem;
    color: #6c757d;
}
.pricing-panel .section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c757d;
    margin: 0.75rem 0 0.25rem;
}
.pricing-panel .sticky-top {
    top: 1rem;
}

/* Hero Section with Parallax Effect */
.hero-section {
    background-image: url('media/image1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Home gallery skeleton loader */
.home-gallery-item.loading {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


.gray-placeholder {
    background-color: #cccccc;
    min-height: 250px;
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.gray-placeholder:hover {
    transform: scale(1.05);
}

/* Card and Button Animations */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Asymmetrical Layout Adjustments */
@media (min-width: 768px) {
    .asymmetric-left {
        padding-right: 3rem;
    }

    .asymmetric-right {
        padding-left: 3rem;
    }
}

/* Footer */
footer a {
    color: #ffffff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* style.css */

/* Review Carousel Styles */
#reviewsCarousel {
    /* Creates space on the sides for the arrows on larger screens */
    padding: 0 4rem; 
}

#reviewsCarousel .carousel-control-prev {
    left: 0; /* Position arrow to the far left of the padded container */
}

#reviewsCarousel .carousel-control-next {
    right: 0; /* Position arrow to the far right of the padded container */
}

#reviewsCarousel .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* On mobile, remove the padding so cards are full-width */
@media (max-width: 767px) {
    #reviewsCarousel {
        padding: 0;
    }
    /* Add some space between stacked cards on mobile */
    #reviewsCarousel .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

.stars {
    color: #ffc107; /* A gold color for the stars */
    font-size: 1.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #343a40; /* Dark background for visibility */
    border-radius: 50%;
    padding: 1.2rem;
}

/* Custom Accordion Styles */
.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd; /* Bootstrap primary blue */
    background-color: #e7f1ff;
}

.accordion-button:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}