/* ========== GLOBAL RESET & LAYOUT ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #ffffff;
    line-height: 1.5;
}

/* Main layout wrapper used across the site */
.container {
    max-width: 1200px;      /* controls max width on large screens */
    margin: 0 auto;         /* center the content */
    padding: 0 24px;        /* left/right gutter so content doesn't touch edges */
}

/* Medium screens – slightly tighter but still padded */
@media (max-width: 1000px) {
    .container {
        padding: 0 20px;
    }
}

/* Small screens – full width but with a small margin from edges */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }
}


/* ========== HOME: HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 480px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}

.hero-bg-1 {
    background-image: url('/assets/img/hero1.png');
}

.hero-bg-2 {
    background-image: url('/assets/img/hero2.png');
}

.hero-bg-3 {
    background-image: url('/assets/img/hero3.png');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(230,57,70,0.5), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 720px;
}

.hero-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 22px;
    max-width: 560px;
}

.hero-actions button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: #e63946;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-outline {
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: #fff;
    color: #222;
}


/* Hero dots */
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-dots button.active {
    background: #fff;
    transform: scale(1.2);
}

/* ========== SECTIONS & UTILITIES ========== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ========== SERVICES TILES ========== */
.services-tiles {
    background: #fafafa;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tile-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, translate 0.25s ease;
    position: relative;
    overflow: hidden;
}

.tile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.tile-card:hover::before {
    opacity: 1;
}

.tile-icon {
    font-size: 28px;
    margin-bottom: 16px;
    color: #e63946;
}

.tile-card h3 {
    margin-bottom: 10px;
}

.tile-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.tile-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e63946;
}

/* ========== LANGUAGE COVERAGE ========== */
.language-coverage {
    background: radial-gradient(circle at top left, #f1f5ff, #ffffff);
    padding: 80px 0;
}

.language-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}

.language-copy h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.language-copy p {
    margin-bottom: 18px;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-list i {
    color: #2ca66f;
    margin-top: 2px;
}

.language-stats {
    display: grid;
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e63946;
}

.stat-label {
    font-size: 0.9rem;
}

/* ========== WHY SPARKFUSION (ALT LAYOUTS) ========== */
.two-column {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.alt-layout:last-of-type {
    margin-bottom: 0;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-text h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.column-text p {
    margin-bottom: 18px;
}

.image-card {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
}

/* Fun shapes */
.image-card-rounded {
    border-radius: 32px;
    background-image: url('/assets/img/why1.webp');
}

.image-card-angled {
    border-radius: 24px 60px 24px 60px;
    transform: rotate(-1.5deg);
    background-image: url('/assets/img/why2.png');
}

/* Pill tags */
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    background: #f1f1f1;
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, #e63946, #ff7a59);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-inner p {
    margin-bottom: 20px;
}

.cta-btn {
    padding: 11px 24px;
    border-radius: 999px;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* ========== RESPONSIVE (HOME) ========== */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .language-inner {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 70vh;
    }
}

@media (max-width: 600px) {
    .hero-content {
        text-align: left;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* HEADER */
.site-header {
    background: #f0f0f0;           /* grey background */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 52px;
    display: block;
}

/* NAVIGATION */
.main-nav > ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}


.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.main-nav a:hover {
    color: #e63946;
    border-color: #e63946;
}

/* Contact button in nav */
.nav-contact-btn {
    background: #e63946;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 999px;
    border-bottom: none;
}

/* DROPDOWN */
.has-dropdown {
    position: relative;
}

/* The "Services" link with the arrow */
.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.has-dropdown > a i {
    font-size: 0.7rem;
}

/* Dropdown menu – hidden by default */
.dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    list-style: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Show dropdown on hover/focus */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Vertical list items */
.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f3f3f3;
    font-size: 0.93rem;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: #f7f7f7;
    color: #e63946;
}

/* MOBILE NAV */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #222;
}

.mobile-nav {
    display: none;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
}

.mobile-nav ul {
    list-style: none;
    padding: 12px 20px 18px;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #222;
    font-size: 0.95rem;
}

/* MOBILE NAV DROPDOWN UNDER "SERVICES" */
.mobile-has-dropdown {
    border-top: 1px solid #ddd;
    padding-top: 6px;
    margin-top: 4px;
}

.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    font-size: 0.75rem;
}

.mobile-dropdown {
    list-style: none;
    padding-left: 12px;
    margin-top: 4px;
    display: none; /* hidden by default */
}

.mobile-dropdown li a {
    padding: 8px 0;
    font-size: 0.9rem;
}


/* FOOTER */
.site-footer {
    background: #111;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.93rem;
}

.footer-col a:hover {
    color: #e63946;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.tagline {
    margin-top: 10px;
    font-style: italic;
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.94rem;
}

.contact-info i {
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 0.85rem;
}

/* RESPONSIVE HEADER/FOOTER */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }
}


/* ========== ABOUT PAGE ========== */

.about-hero {
    background: #f5f7fb;
}

/* two-column layout */
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.about-hero-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6c7a99;
    font-weight: 600;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 4px;
}

.about-intro {
    font-size: 0.98rem;
    max-width: 620px;
    color: #444;
}

/* --- TABS: make radios hidden, labels look like large buttons --- */

.about-tabs {
    margin-top: 10px;
}

/* horizontal row of pill buttons */
.about-tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

/* hide native radio circles */
.about-tab-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* pill-style button */
.about-tab-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid #d2d9e8;
    background: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    color: #333;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* active tab looks like your sample: filled button */
.about-tab-label.active {
    background: #005f8f;
    color: #ffffff;
    border-color: #005f8f;
    box-shadow: 0 8px 18px rgba(0, 95, 143, 0.35);
}

/* tab content box */
.about-tabs-content {
    margin-top: 6px;
}

.about-tab-panel {
    display: none;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    font-size: 0.95rem;
    color: #333;
}

.about-tab-panel p + p {
    margin-top: 10px;
}

.about-tab-panel.active {
    display: block;
}

.check-list.compact li {
    margin-bottom: 4px;
}

/* --- RIGHT CARD --- */

.about-hero-card {
    background: #020826;
    color: #ffffff;
    border-radius: 26px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.about-hero-card h3 {
    font-size: 1.4rem;
}

.about-card-subtitle {
    font-size: 0.9rem;
    color: #ffc857;
}

.about-card-text {
    font-size: 0.92rem;
}

.about-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
}

.about-card-label {
    display: block;
    font-weight: 600;
    color: #f5f5f5;
}

.about-card-value {
    display: block;
    color: #d3e0ff;
}

.about-card-btn {
    margin-top: auto;
    align-self: flex-start;
    border-radius: 999px;
    padding-inline: 22px;
}

/* --- BEYOND SECTION CARDS --- */

.about-beyond {
    background: #ffffff;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.about-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.about-card-box h3 {
    margin-bottom: 8px;
}

.bullet-list {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 0.9rem;
}

.bullet-list li {
    margin-bottom: 6px;
}

/* --- ABOUT PHOTOS (ALT LAYOUT) --- */

.about-photo-team {
    border-radius: 32px;
    background-image: url('/assets/img/work.avif');
}

.about-photo-quality {
    border-radius: 24px 60px 24px 60px;
    transform: rotate(-1.5deg);
    background-image: url('/assets/img/about.png');
}

/* --- RESPONSIVE: ABOUT PAGE --- */
@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== TRANSLATION SERVICES PAGE ========== */

/* Hero */
.translation-hero {
    background: #f8fafc;
}

.translation-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.translation-hero-left h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.translation-hero-intro {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 16px;
    max-width: 640px;
}

.translation-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Right hero card */
.translation-hero-card {
    background: #020826;
    color: #ffffff;
    border-radius: 26px;
    padding: 24px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.translation-hero-card h3 {
    font-size: 1.3rem;
}

.translation-card-subtitle {
    font-size: 0.9rem;
    color: #ffc857;
}

.translation-hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
}

.translation-card-label {
    display: block;
    font-weight: 600;
}

.translation-card-value {
    display: block;
    color: #d3e0ff;
}

.translation-card-stat-row {
    display: flex;
    gap: 16px;
    margin-top: 6px;
}

.translation-stat {
    flex: 1;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.translation-stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.translation-stat-label {
    font-size: 0.8rem;
}

/* Overview cards */
.translation-services-overview {
    background: #ffffff;
}

.translation-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.translation-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.translation-card-box h3 {
    margin-bottom: 8px;
}

/* Alternate images for translation page */
.translation-photo-1 {
    border-radius: 32px;
    background-image: url('/assets/img/translate.webp');
}

.translation-photo-2 {
    border-radius: 24px 60px 24px 60px;
    transform: rotate(-1.5deg);
    background-image: url('/assets/img/translate1.webp');
}

/* Languages & file types section */
.translation-languages {
    background: #f8fafc;
}

.translation-languages-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.translation-languages-copy h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.translation-languages-aside {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 20px 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    font-size: 0.95rem;
}

.translation-language-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.translation-language-columns ul {
    list-style: none;
    padding-left: 0;
}

.translation-language-columns li {
    margin-bottom: 4px;
}

.translation-note {
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Responsive: Translation page */
@media (max-width: 900px) {
    .translation-hero-grid {
        grid-template-columns: 1fr;
    }

    .translation-hero-card {
        max-width: 440px;
        margin: 0 auto;
    }

    .translation-cards-grid {
        grid-template-columns: 1fr;
    }

    .translation-languages-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== INTERPRETATION SERVICES PAGE ========== */

/* Hero */
.interpretation-hero {
    background: #f8fafc;
}

.interpretation-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.interpretation-hero-left h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.interpretation-hero-intro {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 16px;
    max-width: 640px;
}

.interpretation-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Right: chat bubble visual */
.interpretation-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.chat-bubble-image {
    width: 100%;
    max-width: 360px;
    height: 260px;
    background-image: url('/assets/img/chat.png');
    background-size: cover;
    background-position: center;
    border-radius: 26px;
    position: relative;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

/* Bubble tail */
.chat-bubble-image::after {
    content: "";
    position: absolute;
    right: 32px;
    bottom: -18px;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border-radius: 6px;
    transform: rotate(45deg);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

/* Caption below bubble */
.interpretation-hero-caption {
    max-width: 360px;
    font-size: 0.9rem;
    color: #555;
    text-align: right;
}

/* Overview cards */
.interpretation-overview {
    background: #ffffff;
}

.interpretation-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.interpretation-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.interpretation-card-box h3 {
    margin-bottom: 8px;
}

/* How we work alt photos */
.interpretation-photo-1 {
    border-radius: 32px;
    background-image: url('/assets/img/interpret.webp'); /* set your image */
    background-size: cover;
    background-position: center;
}

.interpretation-photo-2 {
    border-radius: 24px 60px 24px 60px;
    transform: rotate(-1.5deg);
    background-image: url('/assets/img/interpret1.jpg'); /* set your image */
    background-size: cover;
    background-position: center;
}

/* Languages & technical setup */
.interpretation-languages {
    background: #f8fafc;
}

.interpretation-languages-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.interpretation-languages-copy h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.interpretation-languages-aside {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 20px 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    font-size: 0.95rem;
}

.interpretation-language-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.interpretation-language-columns ul {
    list-style: none;
    padding-left: 0;
}

.interpretation-language-columns li {
    margin-bottom: 4px;
}

.interpretation-note {
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Responsive: Interpretation page */
@media (max-width: 900px) {
    .interpretation-hero-grid {
        grid-template-columns: 1fr;
    }

    .interpretation-hero-visual {
        align-items: flex-start;
        margin-top: 20px;
    }

    .interpretation-hero-caption {
        text-align: left;
    }

    .interpretation-cards-grid {
        grid-template-columns: 1fr;
    }

    .interpretation-languages-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== DATA SERVICES PAGE ========== */

/* Hero */
.data-hero {
    background: radial-gradient(circle at top left, #eef4ff, #f8fafc);
}

.data-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.data-hero-left h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.data-hero-intro {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 16px;
    max-width: 640px;
}

.data-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.data-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Right hero card (light style, not dark) */
.data-hero-card {
    background: #ffffff;
    color: #1f2933;
    border-radius: 24px;
    padding: 22px 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e9f5;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.data-hero-card h3 {
    font-size: 1.25rem;
}

.data-card-subtitle {
    font-size: 0.9rem;
    color: #4b6cff;
}

.data-hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
}

.data-card-label {
    display: block;
    font-weight: 600;
}

.data-card-value {
    display: block;
    color: #4b5563;
}

.data-card-stat-row {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.data-stat {
    flex: 1;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f3f5ff;
    text-align: center;
}

.data-stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2a7a;
}

.data-stat-label {
    font-size: 0.75rem;
}

/* Overview cards – 2-column grid */
.data-services-overview {
    background: #ffffff;
}

.data-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.data-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

/* Alt images for data page */
.data-photo-1 {
    border-radius: 32px;
    background-image: url('/assets/img/data.webp');
    background-size: cover;
    background-position: center;
}

.data-photo-2 {
    border-radius: 24px 60px 24px 60px;
    transform: rotate(-1.5deg);
    background-image: url('/assets/img/data1.png');
    background-size: cover;
    background-position: center;
}

/* Data types & use cases section */
.data-types {
    background: #f8fafc;
}

.data-types-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.data-types-copy h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.data-types-aside {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 20px 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    font-size: 0.95rem;
}

.data-types-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.data-types-columns ul {
    list-style: none;
    padding-left: 0;
}

.data-types-columns li {
    margin-bottom: 4px;
}

.data-note {
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Responsive: Data page */
@media (max-width: 900px) {
    .data-hero-grid {
        grid-template-columns: 1fr;
    }

    .data-hero-card {
        max-width: 440px;
        margin: 0 auto;
    }

    .data-cards-grid {
        grid-template-columns: 1fr;
    }

    .data-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CAREERS PAGE ========== */

.careers-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.careers-hero-inner h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.careers-hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    font-size: 0.95rem;
}

.careers-list {
    background: #ffffff;
}

.no-jobs-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 26px 24px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.job-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.job-meta {
    font-size: 0.9rem;
    color: #555;
}

.job-deadline-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
}

.job-deadline-date {
    display: block;
    font-weight: 600;
    margin-top: 2px;
}

.job-snippet {
    margin: 10px 0 14px;
    font-size: 0.96rem;
}

.job-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.job-toggle {
    background: none;
    border: none;
    padding: 0;
    color: #e63946;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.job-apply-btn {
    padding: 8px 18px;
}

.job-full-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid #e2e8f0;
    margin-top: 12px;
    padding-top: 0;
}

.job-full-description.open {
    padding-top: 14px;
    max-height: 1200px; /* enough to show full text */
}

.job-full-description h4 {
    margin-top: 10px;
    margin-bottom: 6px;
}

.job-footer-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 900px) {
    .careers-hero-inner {
        grid-template-columns: 1fr;
    }

    .job-card-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* APPLICATION FORM LAYOUT */
.application-form {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 26px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 16px;
}

/* KEY: force the label and input to stack vertically */
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="url"],
.application-form select,
.application-form textarea,
.application-form input[type="file"] {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
}

/* Second native & transcription proof hidden by default */
.second-native-wrapper,
.transcription-proof-wrapper {
    display: none;
}

@media (max-width: 900px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

.contact-container h1 {
    margin-bottom: 8px;
}

.contact-intro {
    max-width: 640px;
    margin-bottom: 18px;
}

/* Inline alert */
.form-alert {
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-alert-success {
    background: #ecfdf3;
    border: 1px solid #4ade80;
    color: #166534;
}

.form-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

.form-alert-hide {
    opacity: 0;
    transform: translateY(-4px);
}

/* Two-column layout: left quick contact, right form */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
    gap: 32px;
    align-items: flex-start;
}

.contact-sidebar {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 18px;
    padding: 22px 22px 26px;
}

.contact-sidebar a {
    color: #f97373;
    text-decoration: none;
}

.contact-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 26px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

/* Grid helpers */
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="date"],
.contact-form input[type="time"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea,
.contact-form input[type="file"] {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
}

/* Conditional blocks hidden by default */
.contact-block-booking,
.contact-block-project {
    display: none;
    margin-bottom: 10px;
}

/* Error highlighting (reuse from careers) */
.field-error label {
    color: #b91c1c;
}

.field-error input,
.field-error select,
.field-error textarea {
    border-color: #e11d48 !important;
    background: #fff1f2;
}

.form-actions {
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}


.privacy-container h1 {
    margin-bottom: 10px;
}

.privacy-hero .lead {
    max-width: 800px;
    margin-bottom: 12px;
}

.privacy-nav {
    margin: 24px 0;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f5f5f5;
}

.privacy-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 0;
    padding: 0;
}

.privacy-nav a {
    font-size: 0.92rem;
    text-decoration: none;
    color: #1f2933;
}

.privacy-nav a:hover {
    color: #e63946;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-section h2 {
    margin-bottom: 8px;
}

.privacy-section h3 {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.privacy-section ul {
    padding-left: 18px;
    margin-bottom: 8px;
}

.privacy-section p {
    margin-bottom: 8px;
}

.privacy-section .address {
    margin-top: 4px;
    margin-bottom: 8px;
}

.last-updated {
    font-style: italic;
    color: #6b7280;
}

@media (max-width: 768px) {
    .privacy-nav {
        padding: 10px 12px;
    }

    .privacy-nav ul {
        gap: 6px 12px;
    }
}
