:root {
    --primary-color: #ff6b00;
    /* Orange CTA */
    --primary-hover: #e05e00;
    --secondary-color: #0a0f16;
    /* Darker, richer Navy/Black */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #ffffff;
    --bg-light: #f4f5f7;
    /* Slightly more sophisticated off-white */
    --bg-white: #ffffff;
    --border-color: #e5e7eb;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    /* Switched to Outfit */

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smoother transition */
    --container-width: 1280px;
    /* Slightly wider max-width for modern screens */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px; /* Accounts for sticky top bar + header */
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    /* Slightly more relaxed line height */
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    /* Crisper fonts */
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-align: center;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Base Form modifications */
input,
select,
textarea,
button {
    font-family: inherit;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .btn {
    font-family: 'Cairo', var(--font-primary);
}

/* Sticky Header Wrapper */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .top-bar-left, .top-bar-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
        font-size: 12px;
    }
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }
    .top-bar-left, .top-bar-right {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        width: 100%;
    }
    .contact-item {
        justify-content: center;
        width: 100%;
    }
}

.top-bar i {
    color: rgba(255, 255, 255, 0.5);
    margin-inline-end: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
}

/* Main Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* Lang button in header */
.header-actions .lang-btn {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    order: 2;
}

.header-actions .lang-btn::before {
    content: "\f0ac";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
}

.header-actions .lang-btn:hover {
    color: var(--primary-color);
}

.header-actions .btn {
    order: 1;
}

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

.logo-img {
    height: 70px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

.desktop-nav .nav-links {
    display: flex;
    gap: 40px;
    /* Spacious nav */
    position: relative;
}

.desktop-nav .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.desktop-nav .nav-links a:hover,
.desktop-nav .nav-links a.active {
    color: var(--primary-color);
}

.nav-indicator {
    position: absolute;
    bottom: 5px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
    left: 0;
    pointer-events: none;
}

[dir="rtl"] .nav-indicator {
    left: 0;
}

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

@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    .header-actions .lang-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Responsive */
/* Responsive Navigation */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        border-bottom: 1px solid var(--border-color);
    }

    .desktop-nav.mobile-active {
        display: block;
        z-index: 999;
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }

    .desktop-nav .nav-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top-bar-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* Global Section Styles */
section {
    padding: 120px 0;
    /* Huge breathing room */
}

/* Prevent toast containers from taking layout space */
section[data-sonner-toaster],
[data-sonner-toaster] {
    padding: 0 !important;
}

[data-radix-toast-viewport] {
    padding: 0 !important;
}

.section-tag {
    color: var(--primary-color);
    font-size: 13px;
    /* Slightly smaller, more elegant */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* More tracking */
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
}

[dir="rtl"] .section-tag {
    padding-left: 0;
    padding-right: 45px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

[dir="rtl"] .section-tag::before {
    left: auto;
    right: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%), url('/images/hero-bg.png') center/cover no-repeat;
    height: 85vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 0;
    margin-top: -95px;
    padding-top: 95px;
}

[dir="rtl"] .hero-section {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%), url('/images/hero-bg.png') center/cover no-repeat;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
}

/* About Section */
.about-inner {
    display: flex;
    gap: 80px;
    /* Luxurious gap */
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-features {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    color: var(--secondary-color);
}

.about-features i {
    color: var(--primary-color);
    font-size: 14px;
    background: rgba(255, 107, 0, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-images {
    flex: 1;
}

.img-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    align-items: stretch;
}

.img-large {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.img-large img {
    border-radius: 2px;
    /* Sharper corners for modern look */
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.img-small-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.img-small {
    border-radius: 2px;
    object-fit: cover;
    width: 100%;
    height: 235px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--secondary-color);
    /* Switching badge to dark for elegance */
    color: var(--text-light);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* RTL overrides */
[dir="rtl"] .experience-badge {
    left: auto;
    right: -30px;
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.exp-years {
    font-size: 56px;
    /* Bigger number */
    font-weight: 300;
    /* Light weight looks more premium */
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Utility */
.mt-4 {
    margin-top: 20px;
}

.mt-2 {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .about-inner {
        flex-direction: column;
    }

    .experience-badge {
        bottom: -10px;
        left: 10px;
    }

    [dir="rtl"] .experience-badge {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .img-collage {
        flex-direction: column;
    }

    .experience-badge {
        position: relative;
        left: 0;
        right: 0;
        max-width: 250px;
        margin-top: 20px;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 30px; /* Reduced from 50px */
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    /* More spacing */
}

.service-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    /* Removing boxy shadow for premium feel */
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-img {
    position: relative;
    height: 280px;
    /* Taller images */
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    bottom: -25px;
    left: 40px;
    /* Aligning left instead of center for modern look */
    transform: none;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

[dir="rtl"] .service-icon {
    left: auto;
    right: 40px;
}

.service-content {
    padding: 40px 40px 30px;
    text-align: left;
    /* Left align is cleaner */
}

[dir="rtl"] .service-content {
    text-align: right;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-gray);
    font-size: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.team-img {
    width: 100%;
    height: 350px; /* Slightly shorter for tighter look */
    object-fit: cover;
    filter: grayscale(100%);
    /* Editorial style B&W */
    transition: var(--transition);
    margin-bottom: 15px; /* Reduced margin */
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    /* Color on hover */
}

.team-info {
    padding: 10px 0; /* Reduced padding */
}

.team-name {
    font-family: var(--font-heading);
    font-size: 20px; /* Slightly smaller for tighter look */
    color: var(--secondary-color);
    margin-bottom: 2px; /* Reduced margin */
}

.team-role {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* News / Insights Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.news-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.news-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.news-content {
    padding: 0;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--secondary-color);
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* FAQ Section */
.faq-inner {
    display: flex;
    gap: 80px;
}

.faq-text {
    flex: 1;
}

.faq-box-img {
    position: relative;
    margin-top: 40px;
    border-radius: 0;
    overflow: hidden;
    max-width: 450px;
}

.faq-box-img img {
    width: 100%;
    border-radius: 0;
}

.support-contact {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-light);
}

[dir="rtl"] .support-contact {
    right: auto;
    left: -20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.support-info {
    display: flex;
    flex-direction: column;
}

.support-info span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.support-info strong {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.faq-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 25px 0;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[dir="rtl"] .accordion-btn {
    text-align: right;
}

.icon-plus,
.icon-minus {
    color: var(--primary-color);
}

.icon-minus {
    display: none;
}

.accordion-item.active .icon-plus {
    display: none;
}

.accordion-item.active .icon-minus {
    display: block;
}

.accordion-item.active .accordion-btn {
    color: var(--primary-color);
}

.accordion-content {
    display: none;
    padding: 0 20px 20px;
    color: var(--text-gray);
    font-size: 15px;
    background: var(--bg-white);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fc;
    position: relative;
    overflow: hidden;
}

/* New static testimonials grid */
.testimonials-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

.testimonials-static {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .testimonials-static {
        grid-template-columns: 1fr;
    }
}

/* Individual testimonial card */
.testi-card-new {
    background: #ffffff;
    border: 1.5px solid #e8eaf0;
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: left;
}

/* Hover effect only */
.testi-card-new:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.14);
    transform: translateY(-4px);
}

/* Featured / highlighted middle card */
.testi-card-new.featured {
    border-color: #e8eaf0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testi-card-new.featured:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.14);
    transform: translateY(-4px);
}

/* Stars row */
.rating-stars {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}

.rating-stars i {
    color: #f59e0b;
    font-size: 18px;
}

/* Review text */
.testi-text {
    font-size: 15.5px;
    font-style: normal;
    color: #374151;
    line-height: 1.75;
    flex: 1;
    margin: 0;
    text-align: left;
}

/* Author row */
.testi-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 6px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.author-role {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
}

/* RTL support */
[dir="rtl"] .testi-card-new,
[dir="rtl"] .testi-text {
    text-align: right;
}

[dir="rtl"] .rating-stars,
[dir="rtl"] .testi-author {
    justify-content: flex-start;
}

/* CTA Section */
.cta-section {
    position: relative;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    margin-top: 50px;
    background: linear-gradient(rgba(10, 15, 22, 0.85), rgba(10, 15, 22, 0.85)), url('https://placehold.co/1920x600/111827/ffffff?text=Workshop+Environment') center/cover fixed;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.play-btn {
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 60px;
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

.play-btn:hover {
    transform: scale(1.05);
    background-color: var(--text-light);
    color: var(--primary-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.newsletter-box {
    background: var(--bg-white);
    padding: 35px 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Sophisticated shadow */
}

.ns-text {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-align: left;
    line-height: 1.2;
    min-width: 200px;
    letter-spacing: -0.5px;
}

[dir="rtl"] .ns-text {
    text-align: right;
}

.ns-form {
    display: flex;
    flex: 1;
    gap: 0;
    /* Connected input and button */
}

.ns-form input {
    flex: 1;
    padding: 16px 25px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 0;
    background: var(--bg-white);
    font-family: var(--font-primary);
    font-size: 15px;
}

[dir="rtl"] .ns-form input {
    border-right: 1px solid var(--border-color);
    border-left: none;
}

.ns-form input:focus {
    outline: none;
    border-color: var(--border-color);
    background: var(--bg-light);
}

/* Ensure the button matches the height completely */
.ns-form .btn {
    padding: 16px 35px;
    margin: 0;
}

/* Footer Section */
.main-footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 180px;
    /* Space for absolute newsletter */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 12px;
}

.logo-wrapper-footer a {
    display: inline-block;
}

.footer-about {
    margin-bottom: 6px;
}

.footer-about-2 {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.footer-about {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Circles for elegance */
    transition: var(--transition);
    font-size: 14px;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon-disabled {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: default;
    opacity: 0.6;
}

.footer-title {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    /* Subtle hover indent */
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   Booking Page Split Layout
   ========================================= */
.booking-split-section {
    min-height: 100vh;
    padding: 0;
    background: var(--bg-white);
    display: flex;
}

.booking-container.flex-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    max-width: none;
}

/* Left Side: Form Area */
.booking-form-area {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin-left: auto;
}

[dir="rtl"] .booking-form-area {
    margin-left: 0;
    margin-right: auto;
}

.form-header {
    margin-bottom: 32px;
}

.form-main-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -1px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.65;
}

/* Validation Styles */
.form-group {
    position: relative;
}

.field-error {
    display: block;
    font-size: 12px;
    color: #e53e3e;
    margin-top: 5px;
    min-height: 16px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    font-weight: 500;
}

.field-error.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-control.minimal.is-invalid {
    border-bottom-color: #e53e3e;
}

.form-control.minimal.is-valid {
    border-bottom-color: #38a169;
}

.appointment-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.appointment-form .form-group.full-width {
    grid-column: 1 / -1;
}

.form-control.minimal {
    width: 100%;
    padding: 13px 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    background-color: transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    color: var(--secondary-color);
}

textarea.form-control.minimal {
    resize: none;
    line-height: 1.6;
}

.form-control.minimal::placeholder {
    color: #b0b8c1;
}

.form-control.minimal:focus {
    outline: none;
    border-bottom-color: var(--secondary-color);
}

.selector-group .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.radio-card {
    display: block;
    position: relative;
    cursor: pointer;
    margin-bottom: 16px;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-card .card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.radio-card:hover .card-content {
    border-color: #d1d5db;
}

.radio-card input[type="radio"]:checked+.card-content {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.03);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.radio-card input[type="radio"]:checked+.card-content .card-icon {
    color: var(--primary-color);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-gray);
}

.btn-block {
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 6px;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

/* Right Side: Image Area */
.booking-image-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin: 20px;
    border-radius: 16px;
    /* Soft shadow for depth */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .booking-image-area {
    margin-left: 20px;
    margin-right: 0;
}

.booking-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    background: linear-gradient(to top, rgba(10, 15, 22, 0.95), rgba(10, 15, 22, 0.4) 60%, transparent);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.overlay-brand {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: auto;
    /* Push quote down */
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.overlay-quote {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-light);
}

.overlay-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overlay-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.overlay-author span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 991px) {

    /* Responsive Split */
    .booking-container.flex-container {
        flex-direction: column;
    }

    .booking-form-area {
        max-width: 100%;
        margin: 0;
        padding: 40px 30px;
        flex: none;
    }

    [dir="rtl"] .booking-form-area {
        margin: 0;
    }

    .booking-image-area {
        flex: none;
        height: 600px;
        margin: 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .image-overlay-content {
        padding: 40px 20px;
    }

    .overlay-quote {
        font-size: 20px;
    }

    .appointment-form .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .newsletter-box {
        flex-direction: column;
        width: 95%;
        text-align: center;
        padding: 40px;
    }

    .ns-text,
    [dir="rtl"] .ns-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .ns-form {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .ns-form input {
        border: 1px solid var(--border-color) !important;
        border-radius: 4px;
    }

    .ns-form .btn {
        border-radius: 4px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-footer {
        padding-top: 200px;
    }

    .hero-title {
        font-size: 44px;
    }

    .about-inner,
    .faq-inner {
        flex-direction: column;
        gap: 50px;
    }

    .section-header.d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
        margin-top: -80px;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .hero-content .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .section-tag {
        font-size: 11px;
        padding-left: 35px;
    }

    .section-tag::before {
        width: 22px;
    }

    .img-collage {
        grid-template-columns: 1fr;
    }

    .img-large {
        grid-column: 1;
        grid-row: 1;
    }

    .img-large img {
        min-height: 250px;
    }

    .experience-badge {
        bottom: -20px;
        left: 0;
        right: 0;
        padding: 20px;
    }

    [dir="rtl"] .experience-badge {
        right: 0;
        left: 0;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-features li {
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-footer {
        padding-top: 120px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-about {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-img {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-desc {
        font-size: 14px;
    }

    /* Team grid mobile */
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .team-name {
        font-size: 16px;
    }

    /* News grid mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-img {
        height: 180px;
    }

    .news-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* FAQ mobile */
    .faq-inner {
        gap: 30px;
    }

    .faq-box-img {
        max-width: 100%;
    }

    .support-contact {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -1px;
    }

    [dir="rtl"] .support-contact {
        left: 0;
    }

    .faq-simple-q {
        font-size: 16px;
    }

    /* Testimonials mobile */
    .testi-card-new {
        padding: 24px 20px;
    }

    .testi-text {
        font-size: 14px;
    }

    /* CTA mobile */
    .cta-title {
        font-size: 28px;
    }

    .newsletter-box {
        width: 90%;
        padding: 25px 20px;
        bottom: -50px;
    }

    .ns-text {
        font-size: 18px;
    }

    /* Buttons touch-friendly */
    .btn {
        min-height: 44px;
        padding: 12px 24px;
    }

    /* Booking page mobile */
    .booking-form-area {
        padding: 30px 20px;
    }

    .form-main-heading {
        font-size: 28px;
    }

    .form-title {
        font-size: 16px;
    }

    .booking-image-area {
        height: 400px;
        margin: 0 10px 10px;
    }

    .image-overlay-content {
        padding: 25px 15px;
    }

    .overlay-quote {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .overlay-author strong {
        font-size: 14px;
    }

    .overlay-author span {
        font-size: 12px;
    }
}

/* Static FAQ Styling */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-simple-item {
    background: transparent;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-simple-item:last-child {
    border-bottom: none;
}

.faq-simple-q {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.faq-simple-a {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.clickable-address {
    cursor: pointer;
    transition: color 0.3s;
}

.clickable-address:hover {
    color: var(--primary-color) !important;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    max-width: 200px;
}

.logo-wrapper img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-wrapper-footer {
    display: flex;
    align-items: flex-start;
    max-width: 180px;
    margin-bottom: 25px;
}

.logo-wrapper-footer img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Small Device Overrides */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .img-collage {
        grid-template-columns: 1fr;
    }
    
    .img-large {
        grid-column: auto;
        grid-row: auto;
    }
    
    .img-large img {
        min-height: 220px;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        padding: 16px;
        width: 100%;
        box-shadow: none;
        justify-content: center;
    }
    
    [dir="rtl"] .experience-badge {
        right: 0;
    }

    .exp-years {
        font-size: 40px;
    }

    .exp-text {
        font-size: 11px;
    }
    
    .services-grid, .team-grid, .news-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }

    .hero-section {
        min-height: 450px;
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .booking-image-area {
        height: 350px;
        margin: 0 10px 10px;
        border-radius: 10px;
    }

    .form-main-heading {
        font-size: 24px;
    }

    .overlay-quote {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Header compact */
    .main-header {
        padding: 6px 0;
    }

    .logo-img {
        height: 42px;
    }

    .header-actions .btn {
        padding: 7px 14px;
        font-size: 11px;
    }

    .header-actions .lang-btn {
        font-size: 11px;
        padding: 5px 6px;
    }

    .header-actions .lang-btn::before {
        font-size: 13px;
    }

    .header-actions {
        gap: 6px;
    }

    .mobile-menu-btn {
        font-size: 20px;
    }
}