:root {
    --primary-blue: #1A5F7A;      /* Deep brand blue */
    --secondary-blue: #227C9D;    /* Vibrant blue */
    --light-blue: #E8F1F5;        /* Very light blue background */
    --accent: #17C3B2;            /* Teal accent */
    --text-main: #2D3748;         /* Dark grey text */
    --text-muted: #718096;        /* Light grey text */
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
    padding-top: 90px; /* Space for the fixed header */
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 0.8rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 0.5rem;
}

/* Navigation Menu */
.main-nav {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

.main-nav a:hover:after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--light-blue);
    color: var(--secondary-blue);
    border: 1px solid rgba(34, 124, 157, 0.1);
}

.btn-secondary:hover {
    background: rgba(34, 124, 157, 0.15);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Hero Section / Slider */
.hero-slider-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Add a gradient overlay so text is readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.1) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none; /* Let clicks pass through to slider if needed, except inner content */
}

.hero-text {
    max-width: 600px;
    padding: 0 5%;
    pointer-events: auto;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Make swiper controls look nice */
.swiper-button-next, .swiper-button-prev {
    color: var(--white) !important;
    background: rgba(0,0,0,0.2);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue) !important;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.services-swiper {
    padding-bottom: 3rem !important;
}

.service-card {
    background: var(--light-blue);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(34, 124, 157, 0.2);
    background: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: var(--light-blue);
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -8rem; /* Overlap the slider slightly for a modern look */
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Hours List */
.hours-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--text-main);
}

.hours-list li:last-child {
    border-bottom: none;
}

.closed {
    color: #e53e3e;
    font-weight: 500;
}

.hours-note {
    font-size: 0.8rem !important;
    font-style: italic;
    margin-top: 1rem;
}

/* Contacts */
.contact-highlight {
    font-size: 1.2rem !important;
    color: var(--primary-blue) !important;
    margin-bottom: 1.5rem;
}

.contact-number-link {
    font-size: 1.4rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-number-link:hover {
    color: var(--secondary-blue);
}

/* Force override of iOS default blue styling for phone numbers */
a[href^="tel"], 
a[href^="sms"] {
    color: inherit;
    text-decoration: none;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.route-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 700;
}

.review-card {
    background: var(--light-blue);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #F6AD55;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
}

.reviews-swiper {
    padding-bottom: 3rem !important; /* Space for pagination */
}

/* Map Section */
.map-section {
    width: 100%;
    display: block;
}

.footer {
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        padding-top: 75px; 
    }
    
    .d-none-mobile {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-right {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        gap: 1.5rem;
        display: none;
    }
    
    .header-right.active {
        display: flex;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        width: 100%;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.95) 100%);
        align-items: flex-end;
    }
    
    .hero-text {
        padding: 2rem 20px;
        text-align: center;
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .info-grid {
        margin-top: 0;
    }
}

@media (max-width: 500px) {
    body {
        padding-top: 65px;
    }
    
    .logo {
        max-height: 48px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
}
