/* Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.header-main {
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-section h1 {
    color: #ffffff !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-section p {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-primary {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-primary:hover {
    background-color: #1e3f70;
    border-color: #1e3f70;
}

.text-primary {
    color: #2c5aa0 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.service-item {
    background: #fff;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.footer-main {
    background-color: #222;
}

.social-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    background: #444;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2c5aa0;
}

/* Navigation Fixes */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #2c5aa0 !important;
}

.dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2c5aa0;
}

/* Section Styles */
section {
    display: block;
}

#about, #reviews, #contact, #booking, #faq {
    scroll-margin-top: 80px;
}

.why-choose-us, .testimonials-section, .booking-form, .faq-section, .contact-section {
    display: block;
    width: 100%;
}

/* Google Reviews Section */
.google-reviews-section {
    background-color: #f8f9fa;
}

.review-card {
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}

.review-card .stars {
    font-size: 1.2rem;
    color: #ffc107;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.reviewer-name {
    color: #2c5aa0;
    font-size: 0.9rem;
}

#google-reviews {
    scroll-margin-top: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section p {
        font-size: 1rem !important;
    }
    
    .review-card {
        margin-bottom: 1.5rem;
    }
}
