/* 
   Ayush Dental Health & Implant Clinic - Premium Styles 
   Font: Outfit (Google Fonts)
   Colors: Royal Blue Primary, White/Grey Secondary
*/

:root {
    --primary: #0056b3;
    /* Royal Blue - Trust & Medical */
    --primary-dark: #003d80;
    --primary-light: #e6f0ff;
    --accent: #00a8e8;
    /* Sky Blue for highlights */
    --secondary: #333333;
    /* Dark Grey for text */
    --text-light: #666666;
    --white: #FFFFFF;
    --off-white: #f8fbff;
    --shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 86, 179, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--off-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
}

.nav-links li a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links li a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Language Switcher in Nav */
.lang-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.9), rgba(0, 61, 128, 0.8)), url('hero_bg_new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-braces {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.9), rgba(0, 61, 128, 0.8)), url('braces_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-implants {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.9), rgba(0, 61, 128, 0.8)), url('implants_new.jpg') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-trust {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* --- PAIN BANNER (NEW) --- */
.pain-banner {
    background: linear-gradient(to right, #eef7ff, #ffffff);
    padding: 30px 20px;
    border-left: 5px solid var(--primary);
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.pain-text h3 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

/* --- SECTION GLOBAL --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-heading {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- ONLINE CONSULTATION (NEW) --- */
.online-consult {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    padding: 80px 0;
    margin-bottom: 50px;
}

.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.consult-content h2 {
    color: white;
    margin-bottom: 20px;
}

.consult-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.consult-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.c-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}

.c-step i {
    font-size: 1.5rem;
    margin-bottom: 1px;
    display: block;
}

.c-step span {
    font-size: 0.9rem;
    font-weight: 600;
}

.consult-price {
    font-size: 1.2rem;
    font-weight: 800;
    background: white;
    color: #128C7E;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

/* --- SERVICES --- */
.services {
    background: #000c19;
    /* Premium Dark Background */
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    /* Increased visibility */
    mix-blend-mode: luminosity;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .sub-heading {
    color: var(--accent);
}

.services h2 {
    color: var(--white);
}

.services p {
    color: rgba(255, 255, 255, 0.9);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 0.9rem;
    border: 1px dashed #ddd;
}

.service-details ul {
    margin-top: 5px;
    padding-left: 20px;
    list-style: disc;
    color: var(--text-light);
}

.cost-tag {
    display: inline-block;
    background: #e6f0ff;
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* --- TIMELINE (NEW) --- */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 50px auto;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
    min-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.step-content h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* --- COMPARISON TABLE (NEW) --- */
.comparison-section {
    background: var(--white);
    padding-bottom: 80px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f1f1f1;
    color: var(--secondary);
    font-weight: 700;
}

.comparison-table th.highlight {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.comparison-table th.highlight::after {
    content: 'Recommended';
    position: absolute;
    top: -10px;
    right: 10px;
    background: #FFD700;
    color: #333;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.comparison-table td i.fa-check {
    color: var(--primary);
}

/* --- CLINIC PROMISE (NEW) --- */
.promise-box {
    background: linear-gradient(135deg, var(--white) 0%, #f0f8ff 100%);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
    position: relative;
}

.promise-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--secondary);
}

.promise-item i {
    color: #28a745;
}

/* --- FAQ --- */
.faq-section {
    background: var(--off-white);
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-answer {
    margin-top: 15px;
    color: var(--text-light);
    display: none;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* --- CONTACT CTA --- */
.cta {
    background: linear-gradient(135deg, var(--primary), #003366);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* --- LOCATION --- */
.location-section {
    padding: 0;
    position: relative;
    height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    /* Optional: classy grayscale map */
    transition: filter 0.3s;
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

.location-info {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    max-width: 400px;
    z-index: 10;
}

.location-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* --- FOOTER --- */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-widget p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* --- CHATBOT WIDGET --- */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-toggle-btn {
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0, 86, 179, 0.4);
    cursor: pointer;
    font-size: 1.8rem;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.chat-toggle-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.chat-window.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title h5 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-title p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    padding: 12px 18px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.bot-message {
    background: var(--white);
    color: var(--secondary);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.user-message {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 15px;
    background: var(--white);
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 25px;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.chat-input-area input:focus {
    border-color: var(--primary);
}

/* --- EXIT MODAL --- */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.exit-modal.visible .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .consult-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .consult-steps {
        justify-content: center;
    }

    .features-box {
        grid-template-columns: 1fr;
    }

    .location-info {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        margin: 20px auto;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .chat-window {
        width: 90%;
        bottom: 100px;
        right: 5%;
        height: 500px;
    }

    .timeline-steps {
        flex-direction: column;
        align-items: center;
    }

    .timeline-step {
        margin-bottom: 30px;
    }

    .step-number::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 50%;
        width: 2px;
        height: 30px;
        background: #ddd;
        transform: translateX(-50%);
    }

    .timeline-step:last-child .step-number::after {
        display: none;
    }
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--light-bg);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin: 20px 0 0 0;
        justify-content: center;
    }
}

/* --- BOOKING MODAL --- */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.booking-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-booking {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.close-booking:hover {
    color: #000;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}