:root {
    --primary: #007aff;
    --primary-dark: #0056b3;
    --secondary: #ff3a2d;
    --dark: #1a1b27;
    --light: #f7f9fa;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.theme-color { color: var(--primary); }
.theme-bg { background: var(--primary); }
.secondary-color { color: var(--secondary); }

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { color: var(--primary); }
.top-bar .contact-details span { margin-right: 20px; }
.top-bar .contact-details i { margin-right: 5px; color: var(--primary); }
.top-bar .text-end a { margin-left: 22px; font-size: 18px; }
.top-bar .text-end a:first-child { margin-left: 15px; }

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header .navbar-brand img { height: 55px; }
.header .nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 25px 15px !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.header .nav-link:hover,
.header .nav-link.active { color: var(--primary) !important; }
.header .book-now-btn {
    background: var(--secondary);
    color: #fff !important;
    border-radius: 30px;
    padding: 10px 25px !important;
    margin: 15px 0 15px 15px;
}
.header .book-now-btn:hover { background: #e02a1e; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2b3d 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(0,122,255,0.08);
    border-radius: 50%;
}
.hero h1 { font-size: 42px; color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
.hero .btn-primary {
    background: var(--primary);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
}
.hero .btn-primary:hover { background: var(--primary-dark); }
.hero .btn-outline-light {
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
}
.hero img { max-width: 100%; animation: float 6s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
}
.section-title p { font-size: 16px; color: #777; max-width: 600px; margin: 0 auto; }

/* About Section */
.about-section { padding: 80px 0; }
.about-section h2 { font-size: 36px; margin-bottom: 20px; }
.about-section p { line-height: 1.8; margin-bottom: 15px; }
.about-section .about-img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Services Section */
.services-section { padding: 80px 0; background: var(--light); }
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    margin-bottom: 30px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.service-card .icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: var(--primary);
    transition: 0.3s;
}
.service-card:hover .icon { background: var(--primary); color: #fff; }
.service-card h4 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: #777; line-height: 1.7; }
.service-card a { color: var(--primary); font-weight: 600; text-decoration: none; }

/* Why Choose Us */
.why-choose-us { padding: 80px 0; }
.why-item {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}
.why-item .icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}
.why-item h5 { margin-bottom: 12px; }
.why-item p { font-size: 14px; color: #777; }

/* Cities Grid */
.cities-section { padding: 80px 0; background: var(--light); }
.city-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    margin-bottom: 20px;
}
.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.city-card a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}
.city-card a:hover { color: var(--primary); }
.city-card i { color: var(--primary); margin-right: 8px; }

/* Process Section */
.process-section { padding: 80px 0; }
.process-step {
    text-align: center;
    position: relative;
    padding: 30px 15px;
}
.process-step .step-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
}
.process-step h5 { margin-bottom: 10px; }
.process-step p { font-size: 14px; color: #777; }

/* Testimonials */
.testimonials-section { padding: 80px 0; background: var(--light); }
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.testimonial-card .stars { color: #ffc107; margin-bottom: 15px; }
.testimonial-card p { font-style: italic; color: #555; }
.testimonial-card .client-name { font-weight: 700; margin-top: 15px; color: var(--dark); }
.testimonial-card .client-city { font-size: 13px; color: #999; }

/* FAQ Section */
.faq-section { padding: 80px 0; }
.accordion-item { border: 1px solid #eee; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.accordion-header {
    background: #fff;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.accordion-header:hover { background: var(--light); }
.accordion-header i { transition: 0.3s; }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-body { padding: 0 20px 15px; display: none; color: #666; line-height: 1.8; }

/* Contact Form */
.contact-section { padding: 80px 0; background: var(--light); }
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 15px;
    height: auto;
    min-height: 48px;
    line-height: 1.4;
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.contact-form select.form-control { padding: 13px 15px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select { font-size: 14px; }
.contact-form .submit-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form .submit-btn:hover { background: var(--primary-dark); }
.contact-info { padding: 40px; }
.contact-info .info-item {
    display: flex;
    margin-bottom: 25px;
}
.contact-info .info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}
.contact-info .info-item h6 { margin-bottom: 5px; }
.contact-info .info-item p { color: #777; margin: 0; }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    color: #fff;
    transform: scale(1.1);
}

/* Call Float Button */
.call-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(255,58,45,0.4);
    z-index: 999;
    transition: 0.3s;
    text-decoration: none;
}
.call-float:hover {
    background: #e02a1e;
    color: #fff;
    transform: scale(1.1);
}

/* Cities Page-Specific */
.city-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2b3d 100%);
    padding: 60px 0;
    color: #fff;
}
.city-hero h1 { color: #fff; font-size: 36px; }
.city-hero p { opacity: 0.9; }
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: #aaa; }
.city-content { padding: 60px 0; }
.city-content h2, .city-content h3 { margin-top: 30px; margin-bottom: 15px; }
.city-content p { line-height: 1.8; margin-bottom: 15px; color: #555; }
.city-content ul { margin-bottom: 20px; padding-left: 20px; }
.city-content ul li { margin-bottom: 8px; line-height: 1.6; color: #555; }

/* Footer */
.footer {
    background: var(--dark);
    color: #aaa;
    padding: 60px 0 0;
}
.footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
}
.footer p { line-height: 1.8; }
.footer a { color: #aaa; text-decoration: none; }
.footer a:hover { color: var(--primary); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li i { margin-right: 8px; color: var(--primary); }
.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 12px;
    transition: 0.3s;
    color: #fff;
}
.footer .social-links a:hover { background: var(--primary); }
.footer .social-links { margin-top: 15px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

/* Bootstrap accordion compatibility for city pages */
.card { border: 1px solid #eee; border-radius: 8px; margin-bottom: 10px; }
.card-header { background: #fff; padding: 0; border: none; }
.card-header .btn-link {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}
.card-header .btn-link:hover { text-decoration: none; color: var(--primary); }
.card-body { padding: 0 20px 15px; color: #666; line-height: 1.8; }

/* Navbar toggler */
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,27,39,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 28px;
    height: 28px;
}

/* Footer cities columns */
.footer .col-6 ul { padding: 0; margin: 0; list-style: none; }
.footer .col-6 ul li { margin-bottom: 6px; font-size: 13px; }
.footer .col-6 ul li a { color: #aaa; }
.footer .col-6 ul li a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 991px) {
    .header .nav-link { padding: 10px 15px !important; }
    .hero h1 { font-size: 32px; }
    .hero { padding: 50px 0; }
}

@media (max-width: 767px) {
    .top-bar .text-end { text-align: center !important; margin-top: 5px; }
    .hero h1 { font-size: 28px; }
    .hero .btn-primary, .hero .btn-outline-light { display: block; margin: 10px 0; }
    .section-title h2 { font-size: 28px; }
    .city-hero h1 { font-size: 28px; }
    .contact-form { padding: 20px; }
    .whatsapp-float, .call-float { width: 50px; height: 50px; font-size: 24px; }
}
