/* Design Tokens */
:root {
    --primary: #FFB800; /* Gold */
    --primary-dark: #FF8A00; /* Orange-Gold */
    --accent: #FFD700;
    --dark: #1A1A1A;
    --dark-grey: #333333;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --success: #28A745;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.highlight {
    color: var(--primary-dark);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    background: var(--light-grey);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-grey);
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hide Google Translate UI */
.skiptranslate, 
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-value span:nth-child(2),
.goog-te-menu-value img,
.goog-te-gadget .goog-te-combo {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget img {
    display: none !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about {
    padding: 100px 0;
}

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

.about-image {
    position: relative;
}

.img-main {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.exp-text {
    font-weight: 600;
    line-height: 1.2;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content p {
    margin-bottom: 20px;
}

.check-list {
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary-dark);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-badge.gold {
    background: var(--primary-dark);
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-list i {
    width: 24px;
    color: var(--primary-dark);
}

/* Process Section */
.process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}

.step h4 {
    margin-bottom: 15px;
}

/* Countries Section */
.countries {
    padding: 100px 0;
    background-color: var(--dark);
    color: var(--white);
}

.countries .section-title {
    color: var(--white);
}

.countries .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

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

.country-category h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-grid.single {
    grid-template-columns: 1fr;
}

.country-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.country-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.country-card img {
    height: 40px;
    margin: 0 auto 15px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.country-card span {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.country-card.education {
    padding: 50px 30px;
    border: 2px solid var(--primary);
}

.country-card small {
    display: block;
    margin-top: 5px;
    color: var(--primary);
    font-weight: 500;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
}

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

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 8px;
}

.why-image {
    background: url('assets/hero-bg.png') center/cover;
    border-radius: 30px;
    padding: 60px;
    position: relative;
}

.why-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
}

.cta-box {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.cta-box h3 {
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--dark-grey);
}

.author-info h5 {
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: rgba(255, 184, 0, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary-dark);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 200px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

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

.contact-info .section-title {
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

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

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-item h5 {
    color: var(--white);
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
}

.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    color: var(--dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control,
.file-input-custom {
    width: 100%;
    padding: 14px 18px;
    background: #F9F9F9;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.file-input-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-style: dashed;
    border-width: 2px;
}

.file-input-wrapper {
    position: relative;
    width: 100%;
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

    /* Styles moved to shared block above */
}

.file-input-wrapper:hover .file-input-custom {
    border-color: var(--primary);
    background: rgba(255, 184, 0, 0.05);
}

.file-input-custom i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.file-input-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus,
.file-input-wrapper:hover .file-input-custom {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.1);
}

.form-success-message {
    text-align: center;
}

.form-success-message i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success-message h3 {
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

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

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

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

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

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

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

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Floating Language Switcher (Bottom Left) */
.lang-switcher-floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.3);
}

.lang-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.4);
}

.lang-dropdown {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 0;
    width: 180px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.lang-dropdown-inner {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar for Dropdown */
.lang-dropdown-inner::-webkit-scrollbar {
    width: 4px;
}

.lang-dropdown-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 184, 0, 0.3);
    border-radius: 10px;
}

.lang-dropdown-inner::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.lang-switcher-floating:hover .lang-dropdown,
.lang-switcher-floating.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--dark-grey);
}

.lang-dropdown a:hover {
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-dark);
}

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

/* Sticky WhatsApp (Bottom Right) */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
}

.whatsapp-sticky:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 100px 40px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu ul li {
    margin-bottom: 25px;
}

.mobile-menu ul li a {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Animations Reveal */
[data-reveal] {
    opacity: 0;
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal="fade-up"] { transform: translateY(40px); }
[data-reveal="fade-right"] { transform: translateX(-40px); }
[data-reveal="fade-left"] { transform: translateX(40px); }
[data-reveal="zoom-in"] { transform: scale(0.9); }

.revealed {
    opacity: 1;
    transform: translate(0) scale(1) !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-links, .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-grid, .services-grid, .why-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-experience {
        right: 0;
        bottom: 0;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Mobile Language Nav */
.mobile-lang-nav {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding-right: 5px;
    transition: all 0.4s ease-out;
    opacity: 0;
}

@media (max-width: 480px) {
    .mobile-lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mobile-lang-nav.active .mobile-lang-grid {
    max-height: 350px;
    opacity: 1;
    margin-top: 20px;
}

.mobile-lang-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    cursor: pointer;
}

.mobile-lang-header i {
    font-size: 1.4rem;
    transition: var(--transition);
}

.mobile-lang-nav.active .mobile-lang-header i {
    transform: rotate(360deg);
}

.mobile-lang-header span {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.mobile-lang-grid a {
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    text-align: center;
    transition: var(--transition);
}

.mobile-lang-grid a:hover, 
.mobile-lang-grid a.active {
    background: var(--primary);
    color: var(--white);
}

/* Custom Scrollbar for Mobile Lang Grid */
.mobile-lang-grid::-webkit-scrollbar {
    width: 4px;
}

.mobile-lang-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
    background: var(--primary);
    color: var(--white);
}

/* Media Queries Adjustment */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
    
    .header-ctas .btn-outline {
        display: none;
    }
    
    .lang-switcher,
    .lang-switcher-floating,
    .lang-switcher-container {
        display: none !important;
    }
    
    .header-ctas {
        gap: 10px;
    }
}

