/* Main Colors 
   Primary: #007AFF (Blue)
   Secondary: #FF9500 (Orange/Yellow)
   White: #FFFFFF
   Dark: #333333
*/

:root {
    --primary: #007AFF;
    --secondary: #FF9500;
    --dark: #333333;
    --light: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
    opacity: 0.7;
}

.back-to-top:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: white;
}

.hero-content {
    max-width: 650px;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.service-card .card-img-container {
    position: relative;
    overflow: hidden;
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(var(--bs-primary-rgb), 0.85);
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-top-left-radius: 5px;
}

.service-category-card {
    transition: all 0.3s ease;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.service-list-card {
    transition: all 0.3s ease;
}

.service-list-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light);
}

.feature-box {
    padding: 30px 20px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonial-slide {
    background: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin: 10px;
}

.testimonial-rating {
    color: var(--secondary);
    margin-bottom: 10px;
}

.testimonial-author {
    position: relative;
    padding-top: 15px;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--bs-primary);
}

/* Testimonial carousel styling */
.testimonial-text {
    font-style: italic;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: white;
}

/* Service Detail Page */
.service-detail-header {
    position: relative;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    padding: 40px 0;
    margin-bottom: 30px;
}

.service-detail-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--bs-primary), var(--bs-warning));
}

.service-detail-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-feature-list {
    list-style: none;
    padding-left: 0;
}

.service-feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.service-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--bs-primary);
}

.service-cta-box {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--bs-primary);
}

.service-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.service-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.price-tag {
    background-color: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

/* About Page */
.about-img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid var(--light);
}

/* Contact Page */
.contact-info-box {
    padding: 20px;
    border-radius: 5px;
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Blog Cards */
.blog-card {
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-date {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Rates Table */
.rates-table th {
    background-color: var(--primary);
    color: white;
}

.rates-table tr:hover {
    background-color: rgba(0, 122, 255, 0.05);
}

/* Breadcrumb styling */
.breadcrumb {
    background-color: transparent;
    padding: 10px 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 120px;
    margin-bottom: 0;
    color: var(--primary);
}

.error-404 h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 70px 0;
    }
    
    .service-card .card-img-top {
        height: 270px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .navbar-brand img {
        max-width: 150px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
}

/* Animation for CTA buttons */
.btn-primary, .btn-warning {
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom switch styling for form elements */
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Custom styling for select boxes */
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 122, 255, 0.25);
}

/* Footer social links hover effect */
.social-links a {
    transition: transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
} 