/* Color Palette and Variables */
:root {
    --primary: #0d47a1;
    --primary-light: #1565c0;
    --primary-dark: #002171;
    --secondary: #f4f6f9;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --red: #e53935;
    --green: #43a047;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --radius: 12px;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body {
    background-color: var(--secondary);
    color: var(--text-main);
    line-height: 1.6;
}
/* Header */
header {
    background-color: var(--white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 12px 5%;
    box-shadow: var(--shadow-md);
}
.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--primary);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.location {
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
}
.sign-in-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 15px;
}
.sign-in-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
    text-align: center;
    padding: 0 5%;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    animation: slowZoom 25s infinite alternate ease-in-out;
    z-index: -2;
}
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 71, 161, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
}
.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    letter-spacing: -1px;
}
.hero p {
    font-size: 20px;
    color: var(--secondary);
    max-width: 700px;
    margin-bottom: 50px;
}
.hero-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px 40px;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}
.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}
.stat-card i {
    font-size: 28px;
    color: #ffb400;
}
/* Services Grid */
.services {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 60px;
    font-weight: 800;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 35px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img {
    transform: scale(1.05);
}
.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    z-index: 1;
}
.service-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}
.service-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}
.service-rating {
    color: #ffb400;
    font-size: 15px;
    font-weight: 700;
    background: #fff8e1;
    padding: 4px 8px;
    border-radius: 6px;
}
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.service-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}
.add-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}
.add-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
}
/* Booking Form Section */
.booking-section {
    background: var(--white);
    padding: 100px 5%;
}
.booking-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--secondary);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary);
}
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-group label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 15px;
}
.booking-form input, 
.booking-form select {
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}
.booking-form input:focus, 
.booking-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}
.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}
.submit-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(13, 71, 161, 0.2);
    transform: translateY(-2px);
}
/* SEO Component & FAQ */
.seo-faq {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
}
.seo-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    border-left: 5px solid var(--primary);
}
.seo-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 28px;
}
.seo-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}
/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.accordion-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid #eaeaea;
}
.accordion-header {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    font-size: 17px;
    transition: background 0.3s;
}
.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s;
}
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}
.accordion-header:hover {
    background: #f8faff;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fdfdfd;
}
.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 25px 25px 25px;
}
.accordion-content p {
    color: var(--text-muted);
}
/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 5% 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}
.footer-col h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
}
.footer-col p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.footer-col p i {
    margin-top: 4px;
    color: #ffb400;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-links a {
    color: var(--white);
    background: rgba(255,255,255,0.15);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}
.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}
/* Floating Elements */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.whatsapp-btn {
    background: var(--green);
    left: 30px;
}
.chat-btn {
    background: var(--red);
    right: 30px;
    border: none;
    cursor: pointer;
}
/* Responsive Styles */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    header.scrolled {
        padding: 15px 20px;
    }
    .hero {
        margin-top: 130px;
    }
    .hero h1 {
        font-size: 48px;
    }
    .header-right {
        width: 100%;
        justify-content: center;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 38px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-stats {
        flex-direction: column;
        width: 100%;
    }
    .stat-card {
        width: 100%;
    }
    .section-title {
        font-size: 32px;
    }
    .header-right {
        flex-direction: column;
        gap: 15px;
    }
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
    }
    .whatsapp-btn { left: 20px; }
    .chat-btn { right: 20px; }
}
