:root {
    /* Updated Palette: Fresh Green + Tech Blue (Trust & Cleanliness) */
    --primary-color: #00C853; /* Fresh Green */
    --primary-dark: #009624;
    --secondary-color: #2962FF; /* Tech Blue */
    --text-main: #1C1C1E;
    --text-muted: #8E8E93;
    --bg-body: #F5F7FA;
    --bg-card: #FFFFFF;
    --border-light: #E0E0E0;
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    --radius-card: 16px;
    --radius-btn: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--text-main); /* Black/Dark button for high contrast interface */
    color: white;
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--text-main);
    color: var(--text-main);
    background: transparent;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* --- Header --- */
.app-header {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: none;
    gap: 24px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-main);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    border: none;
    background: none;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn.active {
    background: white;
    color: var(--text-main);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.lang-btn:hover:not(.active) {
    color: var(--text-main);
}

.phone-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

.mobile-hidden {
    display: none;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: auto;
}

.mobile-nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-footer {
    margin-top: 20px;
}

/* Mobile Language Switcher adjustments */
.mobile-lang {
    justify-content: center;
    margin-bottom: 20px;
    background: #f0f0f0;
    padding: 6px;
}

.mobile-lang .lang-btn {
    flex: 1;
    padding: 8px;
    font-size: 1rem;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-main);
}

/* --- Hero Section --- */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 100%); /* Green to Blue gradient */
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-bottom: 40px;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    gap: 6px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- Wizard Widget (The "Interface") --- */
.hero-widget {
    flex: 0 0 400px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.wizard-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.wizard-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.progress-step {
    flex: 1;
    height: 4px;
    background-color: #F0F0F0;
    border-radius: 2px;
}

.progress-step.active {
    background-color: var(--primary-color);
}

.wizard-step {
    display: none;
    animation: fadeSlide 0.3s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-nav {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.btn-back-icon {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Step 1 Form Elements */
.type-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.type-card-input {
    display: none;
}

.type-card {
    flex: 1;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.type-card i {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.type-card span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
}

.type-card-input:checked + .type-card {
    border-color: var(--primary-color);
    background-color: rgba(0, 200, 83, 0.05);
}

.type-card-input:checked + .type-card i {
    color: var(--primary-color);
}

/* Range Slider */
.form-group { margin-bottom: 20px; }
.range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.label-sm { font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; font-weight: 600; }
.range-value-sm { font-weight: 700; color: var(--primary-color); }

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #F0F0F0;
    border-radius: 5px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Widget Footer */
.widget-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #F0F0F0;
}

.widget-footer.single-btn {
    display: block;
}

.price-tag span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.price-tag strong {
    font-size: 1.4rem;
    color: var(--text-main);
}

/* Step 2 Extras */
.included-list-sm {
    font-size: 0.85rem;
    background: #F9FAFB;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
}
.included-list-sm ul { padding-left: 20px; }
.included-list-sm li { list-style: disc; margin-bottom: 4px; }

.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 20px;
}

.extras-scroll {
    max-height: 150px;
    overflow-y: auto;
}

.extra-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #F5F5F5;
    cursor: pointer;
    font-size: 0.9rem;
}

.switch-sm {
    position: relative;
    width: 40px;
    height: 24px;
}
.switch-sm input { opacity: 0; width: 0; height: 0; }
.slider-sm {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.slider-sm:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider-sm { background-color: var(--primary-color); }
input:checked + .slider-sm:before { transform: translateX(16px); }

/* Step 3 Time */
.date-picker-wrapper { margin-bottom: 15px; }
.date-scroller {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.date-scroller::-webkit-scrollbar { height: 0; }

.date-card {
    flex: 0 0 60px;
    height: 70px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.date-card.active {
    border-color: var(--primary-color);
    background: rgba(0, 200, 83, 0.05);
}
.date-day { font-size: 0.8rem; color: var(--text-muted); }
.date-num { font-weight: 700; font-size: 1.1rem; }

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.time-chip {
    cursor: pointer;
}
.time-chip input { display: none; }
.time-chip span {
    display: block;
    padding: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.time-chip input:checked + span {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
}

/* Step 4 Contacts */
.input-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.input-clean {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}
.input-clean:focus { border-color: var(--primary-color); }

.order-summary-mini {
    background: #F9FAFB;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.summary-line {
    display: flex; justify-content: space-between;
    font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px;
}
.summary-total {
    border-top: 1px solid #eee;
    padding-top: 8px;
    display: flex; justify-content: space-between;
    font-weight: 700; font-size: 1rem; color: var(--text-main);
}

/* Success Step */
.success-view {
    text-align: center;
    padding: 20px 0;
}
.check-circle {
    width: 80px; height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Sections */
.section { padding: 60px 0; }
.section-header {
    text-align: center; margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem; margin-bottom: 10px; color: #1a1a1a;
}
.section-header p {
    color: var(--text-muted); font-size: 1.1rem;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.step-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.step-num {
    width: 40px; height: 40px;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

/* Reviews */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.review-card-app {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.user-avatar {
    width: 40px; height: 40px;
    background: #FFD54F;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #5D4037;
}
.user-avatar.color-2 { background: #4DB6AC; color: white; }
.user-avatar.color-3 { background: #9575CD; color: white; }

.stars-sm { color: #FFC107; font-size: 0.8rem; }
.review-card-app p { font-size: 0.95rem; color: #444; font-style: italic; }

/* Footer */
.app-footer {
    background: white;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* --- Expanded Sections Styles --- */
.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card-large {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}
.service-card-large.featured {
    background: #F0F4FF; /* Light Blue tint */
    border-color: var(--secondary-color);
}
.tag-popular {
    position: absolute; top: 20px; right: 20px;
    background: var(--secondary-color); color: white;
    font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase;
}

.service-icon-lg {
    width: 60px; height: 60px;
    background: #F5F7FA;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.featured .service-icon-lg { background: white; color: var(--primary-color); }

.service-card-large h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.4; flex-grow: 1; }

.service-features-list { margin-bottom: 25px; }
.service-features-list li {
    display: flex; gap: 10px; font-size: 0.9rem; color: #555; margin-bottom: 8px;
}
.service-features-list li i { color: var(--primary-color); font-size: 0.8rem; margin-top: 4px; }

.service-price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid #eee;
}
.price-from { font-weight: 700; font-size: 1.1rem; color: var(--text-main); }

/* Why Us Expanded */
.section-why-us { position: relative; overflow: hidden; }
.why-us-wrapper { display: flex; align-items: center; gap: 50px; }
.why-us-content { flex: 1; }
.why-us-image { flex: 1; display: none; /* Hidden on mobile */ }

.section-subtitle {
    font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px;
}

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.why-item { display: flex; gap: 15px; }
.why-icon {
    flex: 0 0 50px; height: 50px; background: white; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color); font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.why-item h4 { font-size: 1.1rem; margin-bottom: 5px; }
.why-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }

.img-placeholder-lg {
    width: 100%; height: 400px;
    background: #E0E0E0; border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: white;
}

/* Baku Section */
.bg-dark { background-color: #1C1C1E; }
.text-white { color: white; }
.text-white h2 { color: white; margin-bottom: 15px; }
.text-white p { color: #aaa; margin-bottom: 30px;  }

.baku-wrapper { display: flex; align-items: center; justify-content: space-between; }
.baku-text { flex: 1; text-align: center; }
.baku-map-visual {
    flex: 1; height: 300px;
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem; color: #333;
}

.districts-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.districts-tags span {
    padding: 6px 14px; background: rgba(255,255,255,0.1);
    border-radius: 20px; font-size: 0.9rem;
}

.mt-20 { margin-top: 25px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white; border-radius: 12px; margin-bottom: 15px;
    border: 1px solid var(--border-light); overflow: hidden;
}
.faq-question {
    padding: 20px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 600; font-size: 1.05rem;
}
.faq-question i { transition: transform 0.3s; color: var(--text-muted); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    background: #F9FAFB;
}
.faq-answer p { padding: 0 20px 20px; color: #555; font-size: 0.95rem; line-height: 1.5; }

.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-color); }
.faq-item.active .faq-answer { max-height: 1000px; }

/* Footer Expanded */
.footer-content { align-items: flex-start; }
.footer-brand {  margin-bottom: 30px; }
.footer-brand p { margin: 15px 0; color: var(--text-muted); max-width: 250px; }
.social-links { display: flex; gap: 15px; font-size: 1.2rem; color: var(--text-main); }
.social-links a:hover { color: var(--primary-color); }

.footer-links-col { flex: 1 1 150px; display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h4 { font-size: 1.1rem; margin-bottom: 10px; }
.footer-links-col a, .footer-links-col span {
    color: var(--text-muted); font-size: 0.95rem; text-decoration: none;
    transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--primary-color); }

.footer-bottom {
    margin-top: 50px; padding-top: 20px; border-top: 1px solid #eee;
    text-align: center; color: #999; font-size: 0.85rem;
}

/* Media Queries */
@media (min-width: 992px) {
    .desktop-nav { display: flex; }
    .mobile-menu-toggle { display: none; }
    .phone-link { display: flex; }
    .mobile-hidden { display: inline-flex; }
    .hero-title { font-size: 3.5rem; }
    
    .why-us-image { display: block; }
    .hero-features { flex-direction: row; gap: 24px; }
}

@media (max-width: 991px) {
    .hero-wrapper { flex-direction: column; align-items: stretch; gap: 30px; }
    .hero-content { padding-bottom: 20px; text-align: center; }
    .hero-features { align-items: center; justify-content: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-widget { max-width: 100%; margin: 0; }
    
    .section-header h2 { font-size: 1.8rem; }
}

@media (max-width: 767px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; margin: 0 auto 30px; }
    
    .why-grid { grid-template-columns: 1fr; }
    
    .baku-wrapper { flex-direction: column; text-align: center; }
    .baku-map-visual { display: none; }
    .districts-tags { justify-content: center; }
    
    .footer-content { flex-direction: column; gap: 40px; }
    .footer-brand, .footer-links-col { width: 100%; text-align: center; align-items: center; }
    .social-links { justify-content: center; }
}