:root {
    /* --primary-color: #1e5577; */
    --primary-color: #0175a0;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --text-color: #333;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* Arabic Language Support */
.arabic {
    font-family: 'Noto Sans Arabic', sans-serif;
    direction: rtl;
    text-align: right;
}

.arabic .section-title:after {
    left: auto;
    right: 0;
}

.arabic .section-title.center:after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.arabic .navbar-nav {
    padding-right: 0;
}

.arabic .me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

.arabic .me-3 {
    margin-right: 0 !important;
    margin-left: 1rem !important;
}

.arabic .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.arabic .text-lg-end,
.arabic .text-md-end {
    text-align: left !important;
}

.arabic .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.arabic .whatsapp-float {
    right: auto;
    left: 30px;
}

[dir="rtl"] .navbar {
    font-family: 'Noto Sans Arabic', 'Segoe UI', sans-serif;
}

[dir="rtl"] .navbar-brand {
    margin-right: 0;
    margin-left: 1rem;
}

[dir="rtl"] .navbar-nav.ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .me-1 {
    margin-right: 0 !important;
    margin-left: 0.25rem !important;
}

[dir="rtl"] .me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 25px;
}

[dir="rtl"] .navbar-brand img {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .fi {
    margin-right: 0;
    margin-left: 8px;
}

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

[dir="rtl"] .lang-dropdown-item-nav:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .lang-nav-item {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .about .content ul li i {
    margin-right: 0;
    margin-left: 20px;
}

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

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.navbar-brand img {
    transition: var(--transition);
    border-radius: 8px;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
    padding: 8px 16px !important;
    border-radius: 6px;
    text-decoration: none;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(26, 82, 118, 0.05);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 80%;
}

/* Language Switcher */
.lang-nav-item {
    margin-left: 10px;
}

.lang-dropdown-nav {
    display: flex !important;
    align-items: center;
    padding: 8px 16px !important;
    border: 1px solid rgba(26, 82, 118, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-decoration: none;
}

.lang-dropdown-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.lang-dropdown-menu-nav {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.lang-dropdown-item-nav {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-color);
}

.lang-dropdown-item-nav:hover {
    background-color: rgba(26, 82, 118, 0.1);
    transform: translateX(5px);
}

.lang-dropdown-item-nav.active {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(rgba(37, 38, 39, 0.637), rgba(25, 31, 34, 0.459)), url('../images/slide/image_2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    height: 500px;
}

.services-hero {
    background: linear-gradient(rgba(37, 38, 39, 0.637), rgba(25, 31, 34, 0.459)), url('../images/slide/image_11.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 80px;
    position: relative;
    height: 500px;
}

.about-hero {
    background: linear-gradient(rgba(37, 38, 39, 0.637), rgba(25, 31, 34, 0.459)), url('../images/image_7.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 80px;
    position: relative;
    height: 500px;
}

.contact-hero {
    background: linear-gradient(rgba(37, 38, 39, 0.637), rgba(25, 31, 34, 0.459)), url('../images/slide/image_10.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 80px;
    position: relative;
    height: 500px;
}

.service-hero {
    background: linear-gradient(rgba(17, 17, 17, 0.781), rgba(24, 30, 32, 0.774));
    color: white;
    padding: 150px 0 80px;
    position: relative;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background-color: rgba(26, 82, 118, 0.1);
}

.service-icon-radius {
    border-radius: 50%;
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Detail Section */
.service-detail {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

[dir="rtl"] .service-features li {
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative;
}

[dir="rtl"] .service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--secondary-color);
}

.process-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.process-steps li {
    margin-bottom: 2rem;
    padding-left: 70px;
    position: relative;
}

.process-steps li:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Section */
.about-img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .about-card {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}

.about .content .about-card i {
    flex-shrink: 0;
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
}

.about .content .about-card h5 {
    font-size: 18px;
    font-weight: 700;
}

.about .content .about-card p {
    font-size: 15px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/* Home page about specific styles */
.about .content {
    padding: 0 15px;
}

.about .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about .content p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-color);
}

.about .about-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about .about-card li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.about .about-card li i {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
}

.about .about-card div {
    flex: 1;
}

.about .content .about-card h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.about .about-card p {
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    /* background-color: var(--primary-color); */
    /* bg image fix */
    background: linear-gradient(5deg, rgba(0, 0, 0, 0.31) 0%, rgba(58, 34, 34, 0.99) 100%), url('../images/slide/image_5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--light-color);
}

/* Contact Section */
.contact-info {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.hours-table {
    width: 100%;
}

.hours-table tr td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.highlight-day {
    font-weight: bold;
    color: var(--accent-color);
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 82, 118, 0.15);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer h5 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

[dir="rtl"] .footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #154360;
    border-color: #154360;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Map */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(26, 82, 118, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 82, 118, 0.15);
}

/* WhatsApp Sticky Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin: 0;
}

/* WhatsApp pulse animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Flag Styles */
.flag {
    display: inline-block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag-us-svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23bd3d44' d='M0 0h60v30H0z'/%3E%3Cpath fill='%23fff' d='M0 0h60v18H0z'/%3E%3Cpath fill='%23192f5d' d='M0 0h24v18H0z'/%3E%3C/svg%3E");
}

.flag-fr-svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23002654' d='M0 0h20v30H0z'/%3E%3Cpath fill='%23fff' d='M20 0h20v30H20z'/%3E%3Cpath fill='%23ce1126' d='M40 0h20v30H40z'/%3E%3C/svg%3E");
}

.flag-ma-svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23c1272d' d='M0 0h60v30H0z'/%3E%3Cpath fill='%23006233' d='M0 0h60v30H0z'/%3E%3Cpath fill='none' stroke='%23c1272d' stroke-width='4' d='M0 2h60M0 28h60'/%3E%3Cpath fill='%23c1272d' d='M25 15l-7-4.5v9z'/%3E%3C/svg%3E");
}

/* Shipping Icon Animation */
.shipping-icon {
    transition: all 0.3s ease;
}

.card-service-icon:hover .shipping-icon {
    transform: translateY(-5px);
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(-5px) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

/* Video Play Button Animation */
.pulsating-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.pulsating-play-btn:hover {
    background: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 82, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(26, 82, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 82, 118, 0);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Language Loading Overlay */
.language-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.language-loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.language-loading-overlay p {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Form Validation */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.is-invalid~.invalid-feedback {
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        margin-top: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .lang-nav-item {
        margin-left: 0;
        margin-top: 10px;
    }

    .lang-dropdown-nav {
        justify-content: center;
    }

    .about .content {
        margin-top: 30px;
        text-align: center;
    }

    .about .content .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about .about-card i {
        margin: 0 auto 15px auto !important;
    }

    [dir="rtl"] .about .content {
        text-align: center;
    }
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section,
    .services-hero,
    .about-hero,
    .contact-hero,
    .service-hero {
        padding: 150px 0 100px;
    }

    .section {
        padding: 60px 0;
    }

    .service-detail {
        padding: 2rem;
    }

    .process-steps li {
        padding-left: 60px;
    }

    .process-steps li:before {
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 50px;
        right: 20px;
        font-size: 25px;
    }

    .about .content h3 {
        font-size: 28px;
    }

    .about .content .about-card {
        padding: 15px;
    }

    .pulsating-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 15px;
        font-size: 22px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .back-to-top,
    .whatsapp-float {
        display: none !important;
    }
}
