:root {
    --primary: #1BCA00;
    --secondary: #1BCA00;
    --accent: #1BCA00;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Candara', 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Candara', 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s;
    color: var(--dark);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 50px;
}

.btn-accent:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero {
    background: linear-gradient(rgba(27, 202, 0, 0.125), rgba(27, 202, 0, 0.325)), url('SylCln.png');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

.services .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 7px 20px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--primary);
}

.services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-bottom-color: var(--accent);
}

.services .card-img-top {
    height: 220px;
    object-fit: cover;
}

.services .card-body {
    padding: 25px;
}

.services .card-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
}

.icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(52, 160, 164, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.icon-box:hover {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary);
}

.icon-box:hover i {
    color: white;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    transition: all 0.3s;
}

/* Section base */
.testimonials {
    background-color: #f9f9f9;
    padding: 3rem 1rem;
    overflow-x: hidden;
}

/* Horizontal scroll container */
.testimonial-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    -webkit-overflow-scrolling: touch;
}

/* Hide default scrollbar across browsers */
.testimonial-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}
.testimonial-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}
.testimonial-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

/* Each card wrapper */
.testimonial-wrapper {
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Card styling */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
    position: relative;
    border-left: 4px solid var(--secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Decorative quotation mark */
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(52, 160, 164, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Reviewer image */
.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--secondary);
}

/* Reviewer name and text */
.testimonial-card h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 1rem;
}

.testimonial-card .text-warning {
    margin-top: 4px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background-color: var(--secondary); /* Match your brand color */
}

.stats {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats:before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.stats:after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-top: 5px solid var(--accent);
}

.cities {
    background-color: #f9f9f9;
}

.city-badge {
    background: white;
    border-radius: 30px;
    padding: 12px 30px;
    box-shadow: 0 7px 15px rgba(0,0,0,0.08);
    margin: 10px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.city-badge i {
    color: var(--primary);
    margin-right: 8px;
    transition: all 0.3s;
}

.city-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.city-badge:hover i {
    color: white;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer h5 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 12px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.guarantee-badge {
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.gallery {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, white);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 107, 143, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: white;
    font-size: 3rem;
}

.gallery-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.gallery-modal .modal-body {
    padding: 0;
}

.gallery-modal img {
    width: 100%;
    display: block;
}

.gallery-modal .modal-header {
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.gallery-modal .btn-close {
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.gallery-modal .btn-close:hover {
    opacity: 1;
}

.gallery-modal .modal-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.2rem;
}

.city-card img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.city-card .card-body {
    background-color: #1BCA00;
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.city-card:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.form-control-lg {
    font-size: 1rem;
}

.form-select {
    font-size: 1rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: #1BCA00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Modal Enhancements */
.modal-header {
    background: var(--primary);
    color: white;
}

.review-modal .rating {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.review-modal .rating i {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.2s;
}

.review-modal .rating i.active {
    color: var(--accent);
}

.upload-modal .upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-modal .upload-area:hover {
    border-color: var(--primary);
    background: rgba(42, 107, 143, 0.05);
}

.upload-modal .upload-area i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.calendar-modal .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-modal .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-modal .calendar-day {
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    background: #f8f9fa;
    cursor: pointer;
}

.calendar-modal .calendar-day:hover {
    background: var(--primary);
    color: white;
}

.calendar-modal .calendar-day.booked {
    background: var(--accent);
    color: white;
}

.calendar-modal .calendar-day.today {
    border: 2px solid var(--primary);
}

.booking-list {
    max-height: 300px;
    overflow-y: auto;
}

.booking-item {
    border-left: 3px solid var(--primary);
    padding: 10px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 0 5px 5px 0;
}

.booking-item .time {
    font-weight: 600;
    color: var(--primary);
}

.booking-item .service {
    font-size: 0.9rem;
}

#bookingModalDialog {
    max-width: 300px; /* You can tweak this value */
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}