/* ---- STATS BAR ---- */
.stats-bar {
    background: #0f2c59;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 5%;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 35px;
    color: #007bff;
}

.stat-item h3 {
    font-size: 24px;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* ---- DUAL BOOKING & CONTENT SECTION ---- */
.booking-dual-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    padding: 60px 5%;
    background: #f4f7fa;
}

.sub-title {
    color: #007bff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

/* Why Choose Us styling */
.why-choose-box {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.why-list {
    list-style: none;
    margin: 20px 0;
}

.why-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

.why-list i {
    color: #28a745;
    margin-right: 8px;
}

.btn-learn-more {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.why-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    opacity: 0.9;
}

/* Form Box Styling */
.booking-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.booking-form-box input, 
.booking-form-box select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fafafa;
    font-size: 14px;
}

.booking-form-box select,
.booking-form-box input {
    margin-bottom: 15px;
}

.form-row input {
    margin-bottom: 0;
}

.btn-submit-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Reviews Styling */
.testimonials-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.review-card {
    margin-top: 25px;
    border-left: 3px solid #007bff;
    padding-left: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin: 10px 0 20px 0;
    line-height: 1.6;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #25d366;
    width: 20px;
    border-radius: 10px;
}
/* ---- GENERAL STYLES ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

/* ---- HEADER STYLES ---- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: 600;
    transition: 0.3s;
}

.navbar a:hover, .navbar a.active {
    color: #0056b3;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    background: #0056b3;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}

.phone-text a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: block;
}

/* ---- HERO SECTION ---- */
.hero-section {
    display: flex;
    padding: 50px 5%;
    background: linear-gradient(135deg, #fff 60%, #eef5ff 40%);
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 55%;
}

.badge {
    background: #0056b3;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.hero-content h1 {
    font-size: 50px;
    margin-top: 15px;
    color: #111;
}

.hero-content h1 .highlight {
    color: #28a745;
}

.features-mini {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.f-mini-item {
    font-weight: 600;
}

.f-mini-item small {
    display: block;
    color: #777;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp { background: #25d366; }
.btn-call { background: #0056b3; }

/* ---- HERO RIGHT PANEL ---- */
.hero-image-container {
    position: relative;
    max-width: 40%;
}

.hero-girl {
    width: 100%;
    z-index: 1;
}

.right-features-panel {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #0f2c59;
    padding: 20px;
    border-radius: 15px;
    color: #fff;
}

.rf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* ---- SERVICES SECTION ---- */
.services-section {
    padding: 60px 5%;
    text-align: center;
}

.section-title h2 {
    font-size: 32px;
    margin: 10px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-details {
    padding: 20px;
}

.service-details ul {
    list-style: none;
    margin: 15px 0;
}

.service-details ul li {
    margin-bottom: 8px;
    color: #555;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price span {
    font-size: 20px;
    font-weight: bold;
    color: #0056b3;
}

.btn-book {
    background: #0056b3;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* ---- FLOATING WHATSAPP ---- */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}
/* ---- STATS BAR ---- */
.stats-bar {
    background: #0f2c59;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 5%;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 35px;
    color: #007bff;
}

.stat-item h3 {
    font-size: 24px;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* ---- DUAL BOOKING & CONTENT SECTION ---- */
.booking-dual-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    padding: 60px 5%;
    background: #f4f7fa;
}

.sub-title {
    color: #007bff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

/* Why Choose Us styling */
.why-choose-box {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.why-list {
    list-style: none;
    margin: 20px 0;
}

.why-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

.why-list i {
    color: #28a745;
    margin-right: 8px;
}

.btn-learn-more {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.why-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    opacity: 0.9;
}

/* Form Box Styling */
.booking-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.booking-form-box input, 
.booking-form-box select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fafafa;
    font-size: 14px;
}

.booking-form-box select,
.booking-form-box input {
    margin-bottom: 15px;
}

.form-row input {
    margin-bottom: 0;
}

.btn-submit-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Reviews Styling */
.testimonials-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.review-card {
    margin-top: 25px;
    border-left: 3px solid #007bff;
    padding-left: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin: 10px 0 20px 0;
    line-height: 1.6;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #25d366;
    width: 20px;
    border-radius: 10px;
}
