/* ============================================================
   TIMDARA SOLVISTA — BRAND CSS
   Primary:    Orange     #E8540A / #FF6B1A
   Secondary:  Dark Blue  #0D1F3C / #132947
   Base:       Black      #0A0A0A / #111111
   Accent:     Gold       #C8860A  (complementary touch)
   Neutral:    Warm White #FAF8F5 / #F4F1EC
   ============================================================ */

:root {
    --orange:        #E8540A;
    --orange-light:  #FF6B1A;
    --orange-glow:   rgba(232, 84, 10, 0.25);
    --orange-soft:   rgba(232, 84, 10, 0.1);

    --blue-deep:     #0D1F3C;
    --blue-mid:      #132947;
    --blue-muted:    #1C3A60;
    --blue-glow:     rgba(13, 31, 60, 0.3);

    --black:         #0A0A0A;
    --black-soft:    #111111;

    --gold:          #C8860A;
    --gold-light:    #E09D1A;
    --gold-soft:     rgba(200, 134, 10, 0.15);

    --warm-white:    #FAF8F5;
    --off-white:     #F4F1EC;
    --surface:       #F0ECE6;

    --text-dark:     #1A1208;
    --text-mid:      #4A3F35;
    --text-muted:    #7A6E65;
    --text-light:    rgba(255,255,255,0.9);
    --text-faint:    rgba(255,255,255,0.6);

    --radius-sm:     5px;
    --radius-md:     10px;
    --radius-lg:     15px;
    --radius-xl:     30px;
    --radius-full:   50%;

    --shadow-sm:     0 5px 15px rgba(10, 10, 10, 0.07);
    --shadow-md:     0 8px 25px rgba(10, 10, 10, 0.12);
    --shadow-lg:     0 15px 40px rgba(10, 10, 10, 0.15);
    --shadow-orange: 0 8px 25px var(--orange-glow);
    --shadow-gold:   0 6px 20px var(--gold-soft);

    --grad-orange:   linear-gradient(135deg, #E8540A 0%, #FF6B1A 100%);
    --grad-blue:     linear-gradient(135deg, #0D1F3C 0%, #1C3A60 100%);
    --grad-mix:      linear-gradient(135deg, #E8540A 0%, #C8860A 50%, #0D1F3C 100%);
    --grad-card:     linear-gradient(135deg, #0D1F3C 0%, #132947 100%);
}

/* ── Reset ─────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', 'Palatino Linotype', serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--warm-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--grad-orange);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.back-to-top:active { transform: translateY(0); }

/* ── Container ──────────────────────────────────────────────── */
.container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: var(--radius-xl);
    letter-spacing: 0.02em;
}

.btn:hover {
    background: var(--orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

/* ── Header Contact Bar ─────────────────────────────────────── */
.header-contact {
    height: 30px;
    background-color: var(--blue-deep);
    display: flex;
    align-items: center;
    color: #fff;
    list-style: none;
    border-bottom: 1px solid rgba(232, 84, 10, 0.3);
}

.header-contact-list {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    grid-column-gap: 20px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    grid-column-gap: 5px;
}

.header-contact-item li { font-size: 12px !important; }

/* ── Phone Dropdown ─────────────────────────────────────────── */
.phone-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 1px 10px;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s;
}

.phone-display:hover { background-color: rgba(255,255,255,0.08); }

.phone-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--warm-white);
    min-width: 280px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--orange);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.phone-dropdown:hover .phone-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phone-option {
    padding: 8px 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.phone-option .countries { height: 20px; width: auto; }

.phone-option:hover {
    background-color: var(--orange-soft);
    color: var(--orange);
}

.phone-option i { color: var(--blue-deep); width: 16px; }

/* ── Navigation ─────────────────────────────────────────────── */
header {
    background: linear-gradient(90deg, #ffffff 0%, #FAF8F5 100%);
    color: var(--text-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(13, 31, 60, 0.08);
    font-size: 13px;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--orange-soft);
}

header.default {
    background: transparent !important;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none !important;
    border-bottom: none;
}

/* Scrolled state — solid sticky header */
header.default.scrolled {
    background: linear-gradient(90deg, #0D1F3C 0%, #132947 100%) !important;
    box-shadow: 0 4px 20px rgba(13, 31, 60, 0.35) !important;
    border-bottom: 2px solid rgba(232, 84, 10, 0.4) !important;
    padding: 10px 0;
}

/* Keep nav text white in scrolled state */
header.default.scrolled .navbar .nav-links a,
header.default.scrolled .logo span {
    text-shadow: none;
    color: rgba(255, 255, 255, 0.9) !important;
}

header.default.scrolled .navbar .nav-links a:hover {
    color: #FF6B1A !important;
}

header.default .navbar,
header.default .logo span,
header.default .navbar .nav-actions .btn {
    color: rgb(235,235,235) !important;
}

/* ── Force nav links WHITE over the dark hero ── */
header.default .navbar .nav-links a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

header.default .navbar .nav-links a:hover {
    color: #FF6B1A !important;
}

header.default .navbar .nav-actions .btn:hover {
    background-color: rgba(232, 84, 10, 0.4) !important;
}

header.default .navbar .nav-actions .btn {
    border-color: rgba(255,255,255,0.6);
}

header.default .navbar .nav-links .active {
    background: rgba(232, 84, 10, 0.45);
    padding: 4px 14px;
    border-radius: 20px;
    color: #fff !important;
    border: 1px solid rgba(232, 84, 10, 0.6);
}

header.default .navbar .nav-links .active:hover {
    background: rgba(232, 84, 10, 0.7);
}

header.default .navbar .nav-links .active::after { background: transparent !important; }

header.default .nav-links a:hover::after { background: var(--orange-light) !important; }

header.default .logo span {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    font-family: 'Poppins', sans-serif !important;
}

header.default .navbar .menu-toggle span { background-color: #fff; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}

.logo span {
    font-size: 30px;
    color: var(--orange);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.logo .image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
    position: relative;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    font-size: .875rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--orange); }

.nav-links .active { color: var(--orange); }

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
}

/* Dropdown Menu */
.nav-links li { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu li { width: 100%; }

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--off-white);
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--orange-soft);
    color: var(--orange);
    padding-left: 20px;
}

.dropdown-menu a:last-child { border-bottom: none; }

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-actions .btn { padding: 5px 30px; }

.mobile-menu .mobile-nav-actions .btn { color: #fff; }

.nav-actions .btn:hover {
    color: #fff;
    background: var(--orange) !important;
}

.nav-actions a:last-child { background: rgba(232, 84, 10, 0.08); }
.nav-actions a:last-child:hover { background: rgba(232, 84, 10, 0.15); }

/* ── Menu Toggle ────────────────────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-sub-list { display: flex; align-items: center; }
.menu-sub-list li { cursor: pointer; }

/* ── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--grad-card);
    color: white;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 30px 20px 20px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
    border-right: 3px solid var(--orange);
}

.mobile-menu.active { left: 0; }

.mobile-menu ul {
    flex-direction: column;
    gap: 15px;
}

.mobile-menu ul li { margin-bottom: 5px; }

.mobile-menu ul li a {
    display: block;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    font-size: 16px;
    color: var(--text-light);
}

.mobile-menu ul li a:hover { background: rgba(232, 84, 10, 0.2); color: var(--orange-light); }
.mobile-menu ul li a.active { background: rgba(232, 84, 10, 0.25); color: var(--orange-light); }

.mobile-menu .mobile-nav-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 84, 10, 0.3);
}

.mobile-menu .mobile-nav-actions a {
    display: block;
    text-align: center;
    padding: 12px;
    background: rgba(232, 84, 10, 0.15);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    border: 1px solid rgba(232, 84, 10, 0.3);
    transition: all 0.3s;
}

.mobile-menu .mobile-nav-actions a:hover { background: var(--orange); color: white; }

/* Mobile Dropdown */
.mobile-dropdown { display: none; padding-left: 15px; margin-top: 10px; }
.mobile-dropdown.active { display: block; }
.mobile-dropdown a { padding: 8px 15px; font-size: 14px; }
.mobile-dropdown-toggle { display: flex; justify-content: space-between; align-items: center; }
.mobile-dropdown-toggle i { transition: transform 0.3s; }
.mobile-dropdown-toggle.active i { transform: rotate(90deg); }

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION — SLIDER + DARK OVERLAY
   ══════════════════════════════════════════════════════════════ */

/* Hero section must be a positioned container so slides & overlay sit inside it */
.hero {
    position: relative;
    overflow: hidden;
}

/* The slider wrapper fills the entire hero */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ── Individual slides ── */
.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

/* Active slide is visible */
.hero-slider .slide.active {
    opacity: 1;
}

/* ── Dark overlay — sits above ALL slides, below content ── */
.hero-slider .slider-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 31, 60, 0.72) 0%,
        rgba(0,  0,  0,  0.52) 50%,
        rgba(13, 31, 60, 0.68) 100%
    );
    z-index: 2;          /* above slides (z-index 1), below content */
    pointer-events: none;
}

/* ── Particles stay below the overlay ── */
.hero-slider #particles {
    position: absolute;
    inset: 0;
    z-index: 2;          /* same layer as overlay — purely decorative */
    pointer-events: none;
}

/* ── Hero content, arrows, and dots sit above the overlay ── */
.hero .hero-content,
.hero .slider-arrows,
.hero .slider-controls {
    position: relative;
    z-index: 10;
}

/* ── Slider arrow buttons ── */
.hero .slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;   /* let clicks pass through except on the arrows themselves */
}

.hero .slider-arrows .arrow {
    pointer-events: all;
    width: 44px;
    height: 44px;
    background: rgba(13, 31, 60, 0.55);
    border: 1px solid rgba(232, 84, 10, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 14px;
}

.hero .slider-arrows .arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

/* ── Dot navigation ── */
.hero .slider-controls {
    position: absolute;
    bottom: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Active dot = pill */
.hero .slider-dots .dot.active {
    width: 32px !important;
    height: 10px !important;
    border-radius: 20px !important;
    background: linear-gradient(90deg, #E8540A, #C8860A) !important;
}

/* Inactive dot = circle */
.hero .slider-dots .dot:not(.active) {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
}

/* ── Features Section ───────────────────────────────────────── */
.features {
    padding: 80px 0;
    background: var(--warm-white);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--blue-deep);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.feature-item p {
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: left;
}

.section-des {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 84, 10, 0.08);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -100%;
    width: 300%;
    height: 300%;
    background: var(--grad-card);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translate(50%, -50%) rotate(45deg);
    opacity: 0;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-orange);
    color: white;
    border-color: transparent;
}

.feature-item:hover::before {
    opacity: 1;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) rotate(45deg);
}

.feature-item i {
    font-size: 50px;
    margin-bottom: 25px;
    color: var(--blue-deep);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover i { color: white !important; transform: scale(1.1); }

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--blue-deep);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover h3 { color: white; }

.feature-item p {
    margin-bottom: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover p { color: var(--text-faint); }

/* ── Product Details ────────────────────────────────────────── */
.product-details {
    padding: 80px 0;
    background: var(--surface);
}

.solution-details {
    padding: 80px 0;
    background: var(--warm-white);
}

/* ── Solutions ──────────────────────────────────────────────── */
.solutions-container { padding: 0; }

.solution-item {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(232, 84, 10, 0.06);
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.solution-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.solution-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-item:hover .solution-image img { transform: scale(1.05); }

.solution-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,31,60,0.35), rgba(28,58,96,0.25));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-item:hover .solution-image::before { opacity: 1; }

.solution-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content h2 {
    font-size: 1.8rem;
    color: var(--blue-deep);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.solution-content h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--grad-orange);
}

.solution-content p { margin-bottom: 15px; color: var(--text-mid); }

/* ── Team Intro ─────────────────────────────────────────────── */
.team-intro { padding: 80px 0; background: var(--warm-white); }

/* Mission Section */
.mission-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--orange);
}

.mission-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.mission-icon {
    flex-shrink: 0;
    width: 80px; height: 80px;
    background: var(--grad-blue);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mission-icon::before {
    content: '';
    position: absolute;
    width: 90px; height: 90px;
    border: 2px solid var(--blue-muted);
    border-radius: var(--radius-full);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

.mission-icon i { font-size: 35px; color: white; z-index: 1; }

.mission-content { flex: 1; }

.mission-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--blue-deep);
    position: relative;
    padding-bottom: 10px;
}

.mission-content h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.mission-content p { color: var(--text-mid); line-height: 1.7; font-size: 1.1rem; text-align: justify; }

/* Team Members */
.team-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.team-member-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(232, 84, 10, 0.08);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-orange);
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: -100%; right: -100%;
    width: 300%; height: 300%;
    background: var(--grad-card);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translate(50%, -50%) rotate(45deg);
    opacity: 0;
}

.team-member-card:hover::before {
    opacity: 1;
    top: 50%; right: 50%;
    transform: translate(50%, -50%) rotate(45deg);
}

.member-photo { width: 100%; height: 250px; overflow: hidden; position: relative; }

.member-photo img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background-color: var(--surface);
}

.team-member-card:hover .member-photo img { transform: scale(1.05); }

.member-info { padding: 25px 20px; position: relative; z-index: 2; }

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--blue-deep);
    transition: color 0.5s ease;
}

.team-member-card:hover .member-info h3 { color: white; }

.member-info p { color: var(--text-muted); font-size: 1rem; transition: color 0.5s ease; }
.team-member-card:hover .member-info p { color: var(--text-faint); }

/* Values Section */
.values-section h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--blue-deep);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--off-white);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(232, 84, 10, 0.08);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -100%; right: -100%;
    width: 300%; height: 300%;
    background: var(--grad-card);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translate(50%, -50%) rotate(45deg);
    opacity: 0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-orange);
    color: white;
    border-color: transparent;
}

.value-card:hover::before {
    opacity: 1;
    top: 50%; right: 50%;
    transform: translate(50%, -50%) rotate(45deg);
}

.value-icon {
    width: 70px; height: 70px;
    background: var(--grad-blue);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.5s ease;
}

.value-card:hover .value-icon { background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3); }

.value-icon i { font-size: 30px; color: white; transition: all 0.5s ease; }
.value-card:hover .value-icon i { color: white; }

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--blue-deep);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover h4 { color: white; }

.value-card p {
    color: var(--text-mid);
    line-height: 1.6;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    text-align: left;
}

.value-card:hover p { color: var(--text-faint); }

/* ── Contact Form ────────────────────────────────────────────── */
.contact-form-section { padding: 80px 0; background: var(--warm-white); }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--orange);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--blue-deep);
    position: relative;
    padding-bottom: 10px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.form-group { margin-bottom: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--blue-deep); }

.required::after { content: '*'; color: var(--orange); margin-left: 4px; }

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: border-color 0.3s;
    background: var(--warm-white);
    color: var(--text-dark);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-soft);
    background: white;
}

textarea { min-height: 100px; resize: vertical; }

.submit-btn {
    background: var(--grad-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    letter-spacing: 0.03em;
}

.submit-btn:hover {
    background: var(--grad-mix);
    box-shadow: var(--shadow-orange);
    transform: translateY(-1px);
}

/* ── Service Network ─────────────────────────────────────────── */
.service-network {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--blue-deep);
}

.network-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--blue-deep);
    position: relative;
    padding-bottom: 10px;
}

.network-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.network-description { margin-bottom: 30px; color: var(--text-mid); line-height: 1.7; }

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: transform 0.3s;
    border-bottom: 3px solid var(--orange);
}

.stat-item:hover { transform: translateY(-5px); }

.stat-icon {
    width: 60px; height: 60px;
    background: var(--grad-blue);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i { font-size: 24px; color: white; }

.stat-number { font-size: 2rem; font-weight: 700; color: var(--orange); margin-bottom: 5px; }
.stat-label { color: var(--text-muted); font-size: 14px; }

/* ── Marketing Section ──────────────────────────────────────── */
.marketing-section {
    margin-top: 40px;
    display: flex;
    grid-column-gap: 10px;
    align-items: center;
}

.marketing-card {
    background: var(--grad-card);
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(13,31,60,0.25);
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-left: 4px solid var(--orange);
}

.marketing-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 200%; height: 200%;
    background: rgba(232, 84, 10, 0.06);
    transform: rotate(45deg);
    z-index: 1;
}

.marketing-card-content { position: relative; z-index: 2; }

.marketing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    display: inline-block;
}

.marketing-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 60px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.marketing-card p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 0; color: var(--text-faint); }

.marketing-icon { position: absolute; top: 20px; right: 20px; font-size: 40px; opacity: 0.15; color: var(--orange-light); }

/* ── Footer ──────────────────────────────────────────────────── */
.evexin-footer-logo {
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid rgba(232, 84, 10, 0.3);
    margin-bottom: 20px;
}

.evexin-footer-logo span,
.evexin-footer-logo p { color: #fff; margin-left: 10px; }

footer {
    background: var(--blue-deep);
    color: white;
}

.container-rectangular {
    width: 100%; height: 0;
    border-top: 170px solid transparent;
    border-right: calc(100vw - 15px) solid var(--blue-mid);
    position: relative;
}

.container-rectangular::before {
    content: '';
    position: absolute;
    top: -170px; left: -10px;
    width: 0; height: 0;
    border-top: 170px solid transparent;
    border-right: 10px solid var(--warm-white);
}

.footer-content { display: flex; flex-direction: column; margin-bottom: 40px; }

.footer-row { display: flex; align-items: flex-start; flex-wrap: wrap; }
.footer-row .footer-column { width: 33.33%; display: flex; align-items: flex-start; flex-wrap: wrap; }
.footer-row .footer-column.left  { width: 50% !important; }
.footer-row .footer-column.right { width: 50% !important; }

.footer-item { width: 33%; }

.footer-item h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--orange-light);
}

.footer-item h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--orange);
}

.footer-item ul li { margin-bottom: 10px; }

.footer-contact-info li { display: flex; align-items: flex-start; margin-bottom: 15px; }
.footer-contact-info li .icon .fas { margin-right: 20px; line-height: 0; font-size: 16px !important; color: var(--blue-muted); }
.footer-contact-info li p { font-size: 13px; }

.footer-contact-item { display: flex; flex-direction: column; }
.footer-contact-item .contact-item-text { display: flex; align-items: center; margin-left: 35px; }
.footer-contact-item .contact-item-title { margin-bottom: 10px; display: flex; align-items: center; }
.footer-contact-item .contact-item-title img { width: 25px; height: auto; margin-right: 10px; }
.footer-contact-item .contact-item-title p { font-size: 18px; padding-right: 10px; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }

.social-links a {
    display: inline-flex;
    width: 36px; height: 36px;
    background: rgba(232, 84, 10, 0.15);
    border-radius: var(--radius-full);
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(232, 84, 10, 0.25);
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.copyright {
    width: 100%;
    text-align: center;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background-color: var(--black-soft);
    border-top: 1px solid rgba(232, 84, 10, 0.2);
    color: var(--text-faint);
}

/* ── Collaboration Process ──────────────────────────────────── */
.collaboration-process { padding: 80px 0; background: var(--surface); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step-index {
    position: absolute;
    top: -2px; left: 0;
    width: 35px; height: 30px;
    background: var(--grad-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0 20px 100px 0;
    font-size: 1rem;
    font-weight: bold;
}

.process-step-index::before {
    content: '';
    width: 40px; height: 34px;
    border: 3px solid var(--orange);
    position: absolute;
    border-radius: 0 20px 60px 0;
}

.process-step {
    padding: 40px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    user-select: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--grad-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-orange);
}

.process-step:hover::before { transform: scaleX(1); }

.step-icon {
    width: 80px; height: 80px;
    background: var(--grad-card);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    border: 2px solid rgba(13, 31, 60, 0.4);
}

.step-icon::before {
    content: '';
    position: absolute;
    width: 90px; height: 90px;
    border: 2px solid var(--blue-muted);
    border-radius: var(--radius-full);
    opacity: 0.35;
    animation: pulse 2s infinite;
    top: 50%; left: 50%;
}

.step-icon i { font-size: 35px; color: white; z-index: 1; }

.process-icon {
    width: 40px;
    background-color: var(--blue-mid);
    padding: 5px;
    border-radius: var(--radius-full);
    object-fit: contain;
}

.process-step h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--blue-deep); font-weight: 600; }
.process-step p { color: var(--text-mid); line-height: 1.6; font-size: 14px; text-align: center; }

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes pulse {
    0%   { transform: scale(0.8); opacity: 0.5; }
    50%  { transform: scale(1);   opacity: 0.2; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

/* ── Clients Carousel ───────────────────────────────────────── */
#clientsCarousel { width: 100%; overflow: hidden; position: relative; }
#clientsTrack { display: flex; transition: transform 0.5s ease-in-out; width: max-content; }

.clients-section {
    padding: 60px 0 110px;
    background-color: var(--off-white);
    overflow: hidden;
}

.clients-container { position: relative; height: 120px; overflow: hidden; }

.clients-track {
    display: flex;
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    align-items: center;
    transition: transform 0.5s ease;
}

.client-logo {
    flex: 0 0 auto;
    width: 180px; height: 80px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.client-logo img {
    max-width: 80%; max-height: 60%;
    filter: grayscale(70%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--blue-deep);
    box-shadow: var(--shadow-md);
}

.client-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* Nav Buttons */
.clients-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    background: rgba(13, 31, 60, 0.6);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.clients-nav-btn i { font-size: 12px; }

.clients-nav-btn:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.1);
}

.clients-nav-btn.prev { left: 10px; }
.clients-nav-btn.next { right: 10px; }
.clients-container:hover .clients-nav-btn { opacity: 1; visibility: visible; }

/* ── Multicolor Icon (kept, tweaked to brand) ───────────────── */
.multicolor-icon {
    background: linear-gradient(135deg,
        #E8540A 0%,
        #C8860A 25%,
        #FF6B1A 50%,
        #0D1F3C 75%,
        #1C3A60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    transition: all 0.3s ease;
    animation: gentleFlow 8s ease-in-out infinite;
}

.multicolor-icon:hover { filter: brightness(1.1); }

@keyframes gentleFlow {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .features-grid         { grid-template-columns: repeat(2, 1fr); }
    .footer-content        { grid-template-columns: repeat(2, 1fr); }
    .process-steps         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-members          { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .values-grid           { grid-template-columns: repeat(2, 1fr); }
    .contact-container     { grid-template-columns: 1fr; gap: 30px; }
    .network-stats         { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-list          { flex-direction: row; gap: 15px; }
    .product-item          { flex-direction: column; text-align: center; gap: 30px; }
    .product-image         { flex: 0 0 auto; width: 100%; max-width: 500px; margin: 0 auto; }
    .product-content h3::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .back-to-top           { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 18px; }
    .header-contact-list   { display: flex; gap: 5px; padding: 5px 10px; }
    .phone-dropdown-content { right: auto; left: 0; }
    .navbar                { flex-direction: row; }
    .nav-links             { display: none; }
    .nav-actions           { display: none; }
    .menu-toggle           { display: flex; }
    .features-grid         { grid-template-columns: 1fr; }
    .product-list          { flex-direction: column; }
    .product-item          { padding: 30px 20px; }
    .product-icon          { margin: 0 auto 20px; }
    .product-content       { min-height: 300px; }
    .product-content h3    { font-size: 1.7rem; }
    .product-content h3::after { left: 50%; transform: translateX(-50%); }
    .solutions-header h1   { font-size: 2rem; }
    .solutions-header p    { font-size: 1rem; }
    .solution-content      { padding: 30px; }
    .solution-content h2   { font-size: 1.5rem; }
    .mission-section       { flex-direction: column; text-align: center; padding: 30px 20px; }
    .mission-content h3::after { left: 50%; transform: translateX(-50%); }
    .team-members          { grid-template-columns: 1fr; gap: 20px; }
    .member-photo          { height: 220px; }
    .values-grid           { grid-template-columns: 1fr; gap: 20px; }
    .value-card            { padding: 25px 20px; }
    .form-row              { grid-template-columns: 1fr; }
    .contact-form,
    .service-network       { padding: 25px 20px; }
    .section-title         { font-size: 2rem; }
    .marketing-section     { flex-wrap: wrap; }
    .marketing-card        { padding: 20px; width: 100%; }
    .marketing-card::before { right: -10%; }
    .marketing-card h3     { font-size: 1.2rem; }
    .marketing-card p      { font-size: 1rem; }
    .marketing-icon        { font-size: 30px; top: 15px; right: 15px; }
    .footer-content        { grid-template-columns: 1fr; }
    .footer-item           { width: 100%; margin-bottom: 30px; }
    .process-steps         { gap: 15px; }
    .process-step          { padding: 30px 20px; }
    .step-icon             { width: 70px; height: 70px; }
    .step-icon i           { font-size: 30px; }
    .product-detail-btn    { justify-content: center; padding: 12px 20px; }
    .product-content       { padding-bottom: 25px; }
    .client-logo           { width: 140px; margin: 0 20px; }
    .clients-nav-btn       { width: 35px; height: 35px; font-size: 14px; }
    .clients-nav-btn.prev  { left: 5px; }
    .clients-nav-btn.next  { right: 5px; }

    /* Logo — smaller on mobile so it doesn't crowd the hero card */
    .logo span        { font-size: 18px; }
    .logo .image      { height: 26px; }
    .logo             { gap: 6px; }

    /* Header — more breathing room on mobile */
    header            { padding: 20px 0; }

    /* Hero slider — hide arrows on mobile, use dots only */
    .slider-arrows    { display: none !important; }
}
