/* CSS Variables */
:root {
    --primary: #ff4081;
    --secondary: #9c27b0;
    --accent: #e91e63;
    --light: #f8f9fa;
    --dark: #333;
    --gray: #666;
    --light-gray: #eee;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Top Header */
.top-header {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-social a {
    color: white;
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.header-social a:hover {
    background: white;
    color: var(--primary);
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
    color: var(--secondary);
}

.logo small {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--primary);
}

.main-nav a.active:after,
.main-nav a:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    height: 600px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

.slide-4 {
    background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-images {
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 320px);
    gap: 5px;
    
}

.service-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
}

.view-more {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-more:hover {
    gap: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.rating {
    color: #FFC107;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

/* Footer Map */
.footer-map {
    margin-bottom: 40px;
}

.footer-map h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    background: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.map-placeholder p {
    margin: 5px 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom i {
    color: var(--primary);
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call-btn,
.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.call-btn {
    background: var(--primary);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}








/* About Page Styles */

.about-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission-values {
    padding: 60px 0;
    background: var(--light);
}

.mission {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.mission h2 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.our-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light);
    box-shadow: var(--shadow);
}

.team-member h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray);
    margin-bottom: 5px;
}

.why-choose-us {
    padding: 60px 0;
    background: var(--light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reason i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 5px;
}

.reason h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.awards-section {
    padding: 60px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.award:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.award i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.award h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

/* Contact Page Styles */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.contact-info h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-method h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-method .whatsapp-btn {
    margin-top: 10px;
    display: inline-flex;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.emergency-contact {
    background: #fff3e0;
    border-left: 5px solid var(--primary);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.emergency-contact h3 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.contact-form-container {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

/* Service Areas */
.service-areas {
    padding: 60px 0;
    background: var(--light);
}

.areas-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.areas-list h3,
.map-container h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.areas-list ul {
    columns: 2;
    margin-bottom: 20px;
}

.areas-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.areas-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.map-placeholder {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.map-address {
    margin-bottom: 30px;
}

.map-address h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.map-address p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-directions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: white;
    border-radius: 10px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Booking Process */
.booking-process {
    padding: 60px 0;
    background: var(--light);
}

.booking-process h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

/* Services Page Styles */

.services-overview {
    padding: 60px 0;
}

.overview-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.overview-intro h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.overview-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-summary {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-summary:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-summary h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-summary p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-summary ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-summary li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

.service-summary li:before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -10px;
}

.service-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.view-details {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-details:hover {
    gap: 10px;
}

/* Service Comparison */
.service-comparison {
    padding: 60px 0;
    background: var(--light);
}

.comparison-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    background: var(--secondary);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 64, 129, 0.05);
}

.comparison-note {
    text-align: center;
    font-style: italic;
    color: var(--gray);
}

/* Services Booking */
.services-booking {
    padding: 60px 0;
}

.booking-steps {
    margin-bottom: 60px;
}

.booking-steps h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.booking-steps .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.booking-steps .step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.booking-steps .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.booking-steps .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.booking-steps .step h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.booking-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: white;
    border-radius: 15px;
}

.booking-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-cta {
    background: #25D366;
}

.whatsapp-cta:hover {
    background: #128C7E;
}

.call-cta {
    background: white;
    color: var(--primary);
}

.call-cta:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.contact-cta {
    background: transparent;
    border: 2px solid white;
}

.contact-cta:hover {
    background: white;
    color: var(--primary);
}

/* Services FAQ */
.services-faq {
    padding: 60px 0;
    background: var(--light);
}

.services-faq h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.faq-item a {
    color: var(--primary);
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}








Cities Section Styles
.cities-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.cities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cities-search {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.cities-search input {
    width: 100%;
    padding: 16px 50px 16px 25px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cities-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.city-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-search-btn:hover {
    background: var(--accent);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.city-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.city-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.city-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.city-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.city-item h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.city-item p {
    color: #666;
    margin-bottom: 20px;
}

.city-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.city-link:hover {
    border-bottom-color: var(--primary);
}

.cities-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-radius: 15px;
    margin-top: 30px;
}

.cities-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cities-cta .btn {
    background: white;
    color: var(--primary);
}

.cities-cta .btn:hover {
    background: #f0f0f0;
}

/* Responsive Styles for Cities Section */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .city-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-cta {
        padding: 30px 20px;
    }
}


/* Privacy Policy Active TOC Link */
.toc-list a.active {
    color: var(--accent);
    font-weight: 600;
    padding-left: 10px;
    border-left: 3px solid var(--accent);
}

.img_man
		{
			width: 100%;
			height: 110px;
		}