/* ===========================
   RADHYA TECH SOLUTIONS - CSS
   =========================== */

/* CSS Variables */
:root {
    --brand-blue: #0099ff;
    --brand-blue-hover: #007acc;
    --brand-purple: #8e44ad;
    --brand-green: #2ecc71;
    --brand-navy: #1e3a8a;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg-default: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-highlight: #eff6ff;
    --border-color: #e2e8f0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
    background-color: var(--bg-default);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Country flag badges */
.country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.country-flag.sweden {
    background: linear-gradient(to bottom, #006AA7 0%, #006AA7 40%, #FECC00 40%, #FECC00 60%, #006AA7 60%, #006AA7 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.country-flag.india {
    background: linear-gradient(to bottom, #FF9933 0%, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%, #138808 100%);
    color: #000080;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.section {
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

/* Introduction with Image Layout */
.intro-with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .intro-with-image {
        grid-template-columns: 1fr 1fr;
    }
}

.intro-image {
    order: 2;
}

@media (min-width: 768px) {
    .intro-image {
        order: 1;
    }
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-content {
    order: 1;
    text-align: left;
}

@media (min-width: 768px) {
    .intro-content {
        order: 2;
    }
}

.intro-content .section-title {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.intro-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    color: var(--brand-navy);
    margin: 1rem 0 1.5rem 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 42rem;
    margin: 0 auto;
}

/* Background Colors */
.bg-white {
    background-color: var(--bg-default);
}

.bg-light {
    background-color: var(--bg-subtle);
}

.bg-gradient-hero {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 50%, #f8fafc 100%);
}

.bg-navy {
    background-color: var(--brand-navy);
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: scale(1.02);
}

.btn-secondary {
    background-color: white;
    color: var(--brand-navy);
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.btn-secondary:hover {
    background-color: var(--bg-subtle);
    transform: scale(1.02);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.glass-nav-light {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

@media (max-width: 767px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.98);
    }
}

.navbar .container {
    padding-top: 0;
    padding-bottom: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .nav-wrapper {
        height: 2rem;
        padding: 0;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }

    body.page-home .logo-text {
        font-size: 1.9rem;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-icon {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
}

.logo-circle {
    position: absolute;
    border-radius: 50%;
}

.logo-circle-1 {
    inset: 0;
    background-color: var(--brand-blue);
    opacity: 0.8;
}

.logo-circle-2 {
    inset: 4px;
    background-color: var(--brand-purple);
    opacity: 0.6;
    transform: translateX(2px);
}

.logo-circle-3 {
    inset: 8px;
    background-color: var(--brand-green);
    opacity: 0.7;
    transform: translateY(-2px);
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-navy);
    letter-spacing: -0.05em;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--brand-navy);
    text-transform: sentencecase;
    font-weight: 600;
}

.logo-text.light .logo-sub {
    color: white;
}

.logo-accent {
    color: var(--brand-blue);
}

.logo-text.light {
    color: white;
}

body.page-home .logo-text {
    font-size: 1.5rem;
}

/* Desktop Navigation */
.nav-links-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-blue);
}

.nav-cta-desktop {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .nav-cta-desktop {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.nav-links-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    background: white;
}

.nav-links-mobile.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--brand-blue);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: calc(100vh - 5rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--brand-navy);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-title .accent {
    color: var(--brand-blue);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.image-cover {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-stat {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===========================
   FEATURES GRID
   =========================== */

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(0, 153, 255, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: rgba(0, 153, 255, 0.2);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   PROCESS STEPS
   =========================== */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
}

.process-step {
    background-color: var(--bg-subtle);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    flex: 1;
}

.process-step:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    opacity: 1;
    background: linear-gradient(135deg, #0099ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Individual colors for each step */
.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #0099ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #8e44ad, #c471ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:nth-child(7) .step-number {
    background: linear-gradient(135deg, #2ecc71, #5dde8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: 1.125rem;
    color: var(--brand-navy);
    margin: 0.5rem 0 0.75rem 0;
}

.step-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    padding: 0 0.5rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .process-arrow {
        display: flex;
    }
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 42rem;
    margin: 0 auto 2rem auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--brand-navy);
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item svg {
    color: var(--brand-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--brand-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .hero-stat {
        position: static;
        margin-top: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .footer-content {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-contact {
        gap: 1rem;
    }

    .contact-item {
        align-items: flex-start;
    }

    .footer-bottom {
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Who We Are Section Mobile */
    .who-we-are-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .who-we-are-image {
        grid-column: 1 !important;
        order: 2;
    }

    .who-we-are-text {
        grid-column: 1 !important;
        order: 1;
    }

    .who-we-are-text p {
        font-size: 1rem !important;
    }

    /* Leadership Section Mobile */
    .leadership-card {
        padding: 1.5rem !important;
    }

    .leadership-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    .leadership-photo {
        margin-bottom: 1.5rem;
    }

    .leadership-text h3 {
        font-size: 1.5rem !important;
    }

    .leadership-text p {
        font-size: 1rem !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.language-switcher.mobile {
    justify-content: center;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--brand-blue);
    background: transparent;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.lang-btn:hover {
    background: var(--brand-blue);
    color: white;
}

.lang-btn.active {
    background: var(--brand-blue);
    color: white;
}

.nav-links-mobile .lang-btn {
    color: var(--text-primary);
    border-color: var(--brand-blue);
}

.nav-links-mobile .lang-btn:hover {
    background: var(--brand-blue);
    color: white;
}

.nav-links-mobile .lang-btn.active {
    background: var(--brand-blue);
    color: white;
}

@media (max-width: 768px) {
    .language-switcher:not(.mobile) {
        display: none;
    }
}

@media (min-width: 769px) {
    .language-switcher.mobile {
        display: none;
    }
}

/* Smooth Language Transition Effects */
[data-i18n] {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

[data-i18n].translating {
    opacity: 0;
    transform: translateY(-5px);
}

/* Language switcher button transitions */
.lang-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.lang-btn:active {
    transform: scale(0.95);
}

.lang-btn.active {
    transform: scale(1.05);
}

/* Smooth page transitions */
body {
    transition: opacity 0.2s ease-in-out;
}

/* Fade animation for content updates */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.4s ease-out;
}

/* Globe Button for Language Switcher */
.globe-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--brand-blue);
    background: transparent;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.globe-btn svg {
    color: var(--brand-blue);
}

.globe-btn:hover {
    background: var(--brand-blue);
    color: white;
}

.globe-btn:hover svg {
    color: white;
}

.globe-btn .current-lang {
    font-weight: 600;
}
