:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid var(--white);
}

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

.btn-full {
    width: 100%;
}

/* ========================================
   NAVIGATION & MEGA MENU STYLES
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.top-bar {
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.contact-info a {
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.contact-info i {
    font-size: 13px;
    opacity: 0.9;
}

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

.language-selector {
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-selector i {
    margin-left: 6px;
    font-size: 11px;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 13px;
}

.social-links a:hover {
    background: #fff;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.main-header {
    padding: 0;
    background: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h3 i {
    font-size: 28px;
    color: #f59e0b;
}

/* Primary Navigation */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    position: relative;
}

.menu-drawer {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
    border-color: #1e3a8a;
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.15);
}

.nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: #1f2937;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.primary-nav.menu-open .nav-toggle .nav-toggle-bar:nth-child(3) {
    opacity: 0;
}

.primary-nav.menu-open .nav-toggle .nav-toggle-bar:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
}

.primary-nav.menu-open .nav-toggle .nav-toggle-bar:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.menu-link:hover,
.menu-item.current > .menu-link {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.08);
}

.menu-item.has-children > .menu-link::after {
    content: '\25BE';
    font-size: 11px;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.menu-item.has-children:hover > .menu-link::after,
.menu-item.has-children:focus-within > .menu-link::after {
    color: #1e3a8a;
}

.submenu-toggle {
    display: none;
    border: none;
    background: none;
    color: #94a3b8;
    margin-left: auto;
    font-size: 14px;
    cursor: pointer;
}

.submenu-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1200;
}

.menu-item:hover > .submenu-panel,
.menu-item:focus-within > .submenu-panel,
.menu-item.submenu-open > .submenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.submenu a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.submenu a:hover {
    color: #1e3a8a;
}

.submenu-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
}

.submenu-column {
    min-width: 0;
}

.submenu-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.nav-open {
    overflow: hidden;
}

/* Header CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    color: #fff;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin-top: 12px;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '\203A';
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.5);
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list span[aria-current="page"] {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 110px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.15), transparent 45%);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 40%, #fef9f5 100%);
    z-index: 0;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 60%);
    filter: blur(10px);
    z-index: 0;
}

.hero::before {
    bottom: -120px;
    left: -80px;
}

.hero::after {
    top: -140px;
    right: -40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.7));
}

.hero .hero-overlay {
    background: rgba(255, 255, 255, 0.35);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 55px;
    align-items: center;
}

.hero-copy {
    color: var(--text-dark);
}

.hero-copy > * {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-copy > *:nth-child(1) { animation-delay: 0.1s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.35s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.5s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.65s; }

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.hero-animated-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 18px;
    font-size: 16px;
}

.hero-rotator {
    position: relative;
    display: inline-block;
    min-width: 170px;
    height: 28px;
    overflow: hidden;
    color: #0f172a;
}

.hero-rotator span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: heroWord 8s linear infinite;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 25px;
    max-width: 580px;
}

.hero-rich-text {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    margin-bottom: 28px;
}

.hero-rich-text ul {
    margin: 0;
    padding-left: 18px;
    color: #475569;
}

.hero-rich-text li {
    margin-bottom: 8px;
}

.hero-rich-text h1,
.hero-rich-text h2,
.hero-rich-text h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #111827;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.hero .btn-secondary.hero-btn-alt {
    border-color: #1e3a8a;
    color: #1e3a8a;
}

.hero .btn-secondary.hero-btn-alt:hover {
    background: #1e3a8a;
    color: #fff;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-video i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.25);
}

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

.hero-stat {
    min-width: 120px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

.hero-visual {
    position: relative;
    padding: 40px;
}

.hero-main-image {
    width: 100%;
    padding-top: 125%;
    border-radius: 36px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

.hero-accent-image {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 45%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(14, 165, 233, 0.25);
}

.hero-accent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    right: 0;
    top: 15%;
    background: #fff;
    border-radius: 20px;
    padding: 18px 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    min-width: 220px;
}

.hero-rating-card {
    top: auto;
    bottom: 10%;
    right: 12%;
}

.hero-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.hero-languages span {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 600;
}

.rating-value {
    font-size: 36px;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 4px;
}

.hero-anim-float .hero-accent-image {
    animation: floatCard 6s ease-in-out infinite;
}

.hero-anim-float .hero-languages-card {
    animation: floatCard 7s ease-in-out infinite;
}

.hero-anim-float .hero-rating-card {
    animation: floatCard 6.5s ease-in-out reverse infinite;
}

.hero-anim-pulse .hero-main-image {
    animation: heroPulse 6s ease-in-out infinite;
}

.hero-anim-pulse .hero-accent-image,
.hero-anim-pulse .hero-floating-card {
    animation: heroPulseCard 5.5s ease-in-out infinite alternate;
}

.hero-anim-slide .hero-accent-image,
.hero-anim-slide .hero-floating-card {
    animation: heroSlide 7s ease-in-out infinite;
}

.hero-anim-static .hero-main-image,
.hero-anim-static .hero-accent-image,
.hero-anim-static .hero-floating-card {
    animation: none !important;
}

@keyframes heroWord {
    0% { opacity: 0; transform: translateY(20px); }
    5% { opacity: 1; transform: translateY(0); }
    25% { opacity: 1; transform: translateY(0); }
    30% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 0; }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes heroPulse {
    0% { transform: scale(1); box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 35px 80px rgba(15, 23, 42, 0.25); }
    100% { transform: scale(1); box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2); }
}

@keyframes heroPulseCard {
    0% { transform: translateY(0) scale(1); box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15); }
    50% { transform: translateY(-8px) scale(1.02); box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2); }
    100% { transform: translateY(0) scale(1); box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15); }
}

@keyframes heroSlide {
    0% { transform: translate(0, 0); }
    50% { transform: translate(18px, -12px); }
    100% { transform: translate(0, 0); }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Banner */
.page-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80') center/cover no-repeat;
    padding: 100px 0;
    margin-top: 100px;
}

.page-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.7));
}

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

.page-banner h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
}

/* Clients Section */
.clients {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logos img {
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
    max-height: 60px;
    width: auto;
}

.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Clients Grid Layouts */
.clients.grid-2col .client-logos,
.clients.grid-3col .client-logos,
.clients.grid-4col .client-logos,
.clients.grid-5col .client-logos {
    display: grid;
    gap: 30px;
    justify-content: center;
}

.clients.grid-2col .client-logos { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
.clients.grid-3col .client-logos { grid-template-columns: repeat(3, 1fr); max-width: 800px; margin: 0 auto; }
.clients.grid-4col .client-logos { grid-template-columns: repeat(4, 1fr); }
.clients.grid-5col .client-logos { grid-template-columns: repeat(5, 1fr); }

.clients.grid-2col .client-logos img,
.clients.grid-3col .client-logos img,
.clients.grid-4col .client-logos img,
.clients.grid-5col .client-logos img {
    max-height: 80px;
    width: 100%;
    object-fit: contain;
    opacity: 1;
    filter: none;
}

/* Clients Marquee Animation */
.clients.marquee .client-logos {
    animation: marquee 20s linear infinite;
    flex-wrap: nowrap;
    overflow: hidden;
}

.clients.marquee .client-logos:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.clients.marquee .client-logos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--bg-light) 0%, transparent 10%, transparent 90%, var(--bg-light) 100%);
}

/* Translation Form Section */
.translation-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group select,
.form-group input {
    padding: 14px 18px;
    border: 2px solid var(--bg-gray);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

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

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-card {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid var(--bg-gray);
}

.why-choose-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-choose-icon i {
    font-size: 32px;
    color: var(--white);
}

.why-choose-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

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

.cta-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 16px;
}

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

.cta-list li {
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-list i {
    color: var(--secondary-color);
}

.cta-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary {
    background-color: var(--secondary-color);
}

.cta-section .btn-primary:hover {
    background-color: #d97706;
}

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

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

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 15px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    font-size: 15px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

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

/* Blog Section */
.blog-section {
    padding: 100px 0;
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

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

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

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

/* Translators Section */
.translators-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
}

.translators-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.translators-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 16px 20px;
    width: 350px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: 2px solid var(--primary-color);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

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

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

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

.footer-contact ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Button ripple effect */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary .ripple,
.btn-secondary .ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 0 90px;
    }

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

    .hero-visual {
        order: -1;
        padding: 20px;
        max-width: 520px;
        margin: 0 auto 30px;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        margin-top: 8px;
    }

    .breadcrumb-list {
        font-size: 13px;
        gap: 6px;
    }

    .breadcrumb-list li:not(:last-child)::after {
        font-size: 14px;
    }

    .top-bar {
        display: none;
    }

    .header-content {
        padding: 12px 0;
    }

    .logo h3 {
        font-size: 18px;
    }

    .logo h3 i {
        font-size: 22px;
    }

    .primary-nav {
        justify-content: flex-end;
    }

    .primary-nav::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 1300;
        pointer-events: none;
    }

    .primary-nav.menu-open::after {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .menu-drawer {
        position: fixed;
        inset: 0;
        padding: 100px 20px 32px;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1400;
    }

    .primary-nav.menu-open .menu-drawer {
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav .menu {
        position: relative;
        flex-direction: column;
        gap: 0;
        width: min(420px, calc(100% - 24px));
        margin: 0 auto;
        background: linear-gradient(145deg, #ffffff 0%, #eef2ff 55%, #f8fafc 100%);
        border-radius: 24px;
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: 0 35px 60px rgba(15, 23, 42, 0.25);
        padding: 32px 28px 18px;
        transform: translateY(-12px);
        transition: transform 0.3s ease;
    }

    .primary-nav.menu-open .menu {
        transform: translateY(0);
    }

    .menu-item {
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        width: 100%;
    }

    .menu-link {
        width: 100%;
        justify-content: space-between;
        padding: 14px 4px;
        font-size: 16px;
    }

    .menu-item.has-children > .menu-link::after {
        display: none;
    }

    .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        color: #1f2937;
        font-size: 16px;
    }

    .submenu-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-radius: 16px;
        box-shadow: none;
        padding: 10px 12px 6px;
        margin-bottom: 12px;
        display: none;
        background: rgba(248, 250, 252, 0.8);
    }

    .menu-item.submenu-open > .submenu-panel {
        display: block;
        animation: dropdownFade 0.25s ease;
    }

    .submenu-columns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 6px 0;
    }

    .submenu {
        padding-left: 4px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-animated-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-rich-text {
        padding: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a,
    .btn-video {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-visual {
        padding: 0;
    }

    .hero-main-image {
        padding-top: 90%;
    }

    .hero-accent-image,
    .hero-floating-card {
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        top: auto;
        bottom: auto;
        margin-top: 20px;
        animation: none;
    }

    .hero-accent-image {
        margin-top: -40px;
    }

    .about-grid,
    .cta-content {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        display: none;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

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

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

    .footer-contact ul li {
        justify-content: center;
    }

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

    .form-wrapper {
        padding: 30px;
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }

    .hero-copy h1 {
        font-size: 30px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .translators-content h2 {
        font-size: 28px;
    }
}

/* Image Animation Effects */
.anim-fade-in {
    animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.anim-slide-in-left {
    animation: slideInLeft 1s ease-out;
}
@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.anim-slide-in-right {
    animation: slideInRight 1s ease-out;
}
@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.anim-zoom-in {
    animation: zoomIn 1s ease-out;
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.anim-bounce {
    animation: bounce 1s ease-out;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.anim-pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Image Border Styles */
.border-rounded {
    border-radius: 10px !important;
}

.border-circle {
    border-radius: 50% !important;
}

.border-shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.border-rounded-shadow {
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.border-border {
    border: 3px solid !important;
}

/* Image Alignment */
img.align-left {
    float: left;
    margin-right: 20px;
}

img.align-center {
    display: block;
    margin: 0 auto;
}

img.align-right {
    float: right;
    margin-left: 20px;
}
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.border-border {
    border: 3px solid;
}
