:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E55A2B;
    --light-orange: #FFB088;
    --orange-gradient: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    --dark-grey: #1A1A2E;
    --darker-grey: #0F0F1E;
    --white: #FFFFFF;
    --text-light: #E0E0E0;
    --accent-green: #25D366;
    --font-primary: 'Poppins', sans-serif;
    --section-padding: 100px 0;
    --container-padding: 0 5%;
    --border-radius: 15px;
    --border-radius-lg: 25px;
    --transition-fast: all 0.3s ease;
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-grey);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo .logo-text {
    font-size: 3rem;
    font-weight: 800;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Three.js Container */
#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Language Switcher (Old) */
/*
.language-switcher {
    position: fixed;
    top: 115px;
    right: 30px;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    gap: 5px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 107, 53, 0.2);
}
*/

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.lang-btn.active {
    background: var(--orange-gradient);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.lang-btn:hover {
    color: var(--primary-orange);
}
.lang-btn.active:hover {
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.navbar.scrolled {
    padding: 15px 5%;
    box-shadow: var(--shadow-medium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    max-height: 60px;
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 10px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-fast);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-gradient);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.home-btn {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ===== NEW: Language Switcher in Nav ===== */
.nav-item-lang {
    position: relative;
}

.lang-icon-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem; /* 24px */
    cursor: pointer;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lang-icon-btn:hover {
    color: var(--primary-orange);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 46, 0.95); /* Match navbar */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: var(--shadow-medium);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 100px; /* Set a min-width */

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure .lang-btn works well in the dropdown */
.language-dropdown .lang-btn {
    width: 100%;
    text-align: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--dark-orange);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 600;
}

/* About Section */
.about-section {
    background: rgba(26, 26, 46, 0.8);
    padding-top: 150px;
}

.about-title-full {
    width: 100%;
    text-align: center;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    margin-bottom: 40px;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(15, 15, 30, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--primary-orange);
    background: rgba(15, 15, 30, 0.8);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--orange-gradient);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-orange);
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition-fast);
}

.floating-card:hover {
    transform: scale(1.15) translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card span {
    font-size: 12px;
    text-align: center;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-1 {
    top: 0%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 5%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    top: 30%;
    left: 19%;
    animation-delay: 2s;
}

.card-4 {
    top: 35%;
    right: -5%;
    animation-delay: 3s;
}

.card-6 {
    top: 39%;
    right: 19%;
    animation-delay: 5s;
}

.card-5 {
    top: 65%;
    right: 70%;
    animation-delay: 5s;
}

.card-7 {
    bottom: 11%;
    left: 43%;
    animation-delay: 1.5s;
}

.card-8 {
    bottom: 10%;
    right: -3%;
    animation-delay: 2.5s;
}

.card-9 {
    top: 15%;
    left: 41%;
    animation-delay: 3.5s;
}

/* Services Section - Creative Style */
.services-section {
    background: var(--dark-grey);
}

.services-creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card-creative {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    padding: 50px 35px;
    border-radius: 30px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transition: all 0.8s ease;
    opacity: 0;
}

.service-card-creative:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}

.service-card-creative:hover {
    transform: translateY(-15px) rotate(2deg);
    border-color: var(--primary-orange);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
}

.service-icon-creative {
    width: 90px;
    height: 90px;
    background: var(--orange-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card-creative:hover .service-icon-creative {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.service-title-creative {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-description-creative {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.service-features-creative {
    list-style: none;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.service-features-creative li {
    color: var(--text-light);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
}

.service-features-creative li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 18px;
}

/* RTL Support for Arabic */
[dir="rtl"] .service-features-creative li::before {
    content: '←';
}

.service-features-creative li {
    padding-right: 0;
}

[dir="rtl"] .service-features-creative li {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .service-features-creative li::before {
    left: auto;
    right: 0;
}

/* Clients Section */
.clients-section {
    background: rgba(26, 26, 46, 0.8);
}

.client-logos {
    text-align: center;
    margin-bottom: 80px;
}

.logos-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--white);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    margin-bottom: 80px;
}

.logo-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 30, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition-fast);
}

.logo-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.logo-placeholder {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials - Creative Style */
.testimonials-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card-creative {
    background: linear-gradient(145deg, rgba(15, 15, 30, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    padding: 45px;
    border-radius: 25px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-creative:hover::before {
    opacity: 1;
}

.testimonial-card-creative:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.quote-icon-creative {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    opacity: 0.3;
}

.testimonial-text-creative {
    font-style: italic;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.testimonial-author-creative {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.author-avatar-creative {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-orange);
}

.author-avatar-creative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-creative {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.author-title-creative {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.rating-creative {
    display: flex;
    gap: 3px;
}

.rating-creative i {
    color: var(--primary-orange);
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    background: var(--dark-grey);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition-fast);
}

.contact-item:hover {
    border-color: var(--primary-orange);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: rgba(26, 26, 46, 0.8);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

/* ===== Form Feedback Message ===== */
#form-feedback {
    max-width: fit-content;
    padding: 20px 20px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translateY(10px);
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
    pointer-events: none;
}

#form-feedback.show {
    opacity: 1;
    pointer-events: auto;
}

#form-feedback.success {
    background: #25D366; /* WhatsApp Green */
    color: var(--white);
    border: 1px solid var(--white);
}

#form-feedback.error {
    background: #E55A2B; /* Dark Orange */
    color: var(--white);
    border: 1px solid var(--white);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 15, 30, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 18px 30px;
    background: var(--orange-gradient);
    border: none;
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* Footer */
.footer {
    background: var(--darker-grey);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 20px 0 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--orange-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 20px; /* Adjust gap for mobile menu */
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile language switcher */
    .nav-item-lang {
        width: 100%;
        text-align: center;
    }

    .lang-icon-btn {
        font-size: 1.8rem; /* Make it a bit bigger */
        padding: 15px;
        margin: 0 auto; /* Center the button */
    }
    
    .language-dropdown {
        position: relative; /* Not absolute on mobile */
        top: auto;
        right: auto;
        width: 80%; /* Don't take full width */
        margin: 10px auto 0; /* Center it */
        background: rgba(15, 15, 30, 0.8); /* Darker background */
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-creative-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-creative {
        grid-template-columns: 1fr;
    }
    #form-feedback {
        max-width: 80%;
      }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 120px;
    }

    .about-visual {
        height: 300px;
    }

    .floating-card {
        width: 100px;
        height: 100px;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card span {
        font-size: 11px;
    }

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

    .contact-form {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .floating-card {
        width: 80px;
        height: 80px;
    }

    .floating-card i {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .floating-card span {
        font-size: 9px;
    }
}
