/* ============================================
   ABBAT doo - Transport & Logistics
   Modern Website Stylesheet
   ============================================ */

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #BB000E;
    --primary-dark: #9a000b;
    --primary-light: #ff6b6b;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --dark-3: #0f3460;
    --gray-100: #f8f9fa;
    --gray-200: #f0f2f5;
    --gray-300: #e8e8e8;
    --gray-500: #888;
    --gray-600: #777;
    --gray-700: #555;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.08);
    --shadow-red: 0 15px 40px rgba(187, 0, 14, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--gray-100);
    line-height: 1.6;
}

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

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

ul, ol {
    list-style: none;
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.section-label {
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-80px) scale(1.5); opacity: 0.8; }
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes spin-logo {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes beacon-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 60px;
}

.navbar.dark-page {
    background: transparent;
}

.navbar.dark-page.scrolled {
    background: rgba(255, 255, 255, 0.97);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 42px;
    height: 42px;
    animation: spin-logo 3s linear infinite;
}

.nav-logo img {
    width: 100%;
    height: 100%;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-weight: 700;
    font-size: 20px;
    color: white;
    transition: color 0.4s;
    line-height: 1.1;
}

.navbar.scrolled .nav-brand-name {
    color: var(--dark);
}

.nav-brand-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.4s;
}

.navbar.scrolled .nav-brand-sub {
    color: var(--gray-500);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Language Selector */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar.scrolled .lang-btn {
    background: var(--gray-200);
    border-color: var(--gray-300);
    color: var(--dark);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .lang-btn:hover {
    background: var(--gray-300);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: none;
    min-width: 120px;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    padding: 10px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-option:hover {
    background: var(--gray-200);
}

.lang-option.active {
    color: var(--primary);
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    display: block;
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: white;
    font-size: 22px;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-lang {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mobile-lang button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang button.active,
.mobile-lang button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(187, 0, 14, 0.4);
    border-radius: 50%;
    animation: float 8s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(5) { left: 90%; top: 40%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; animation-duration: 6s; }

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(187, 0, 14, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(187, 0, 14, 0.15);
    border: 1px solid rgba(187, 0, 14, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 15px;
    border: 2px solid var(--gray-300);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat h3 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat h3 span {
    color: var(--primary);
}

.hero-stat p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ========== SERVICES CARDS ========== */
.services-section {
    padding: 120px 0;
}

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

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: var(--transition-slow);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(187, 0, 14, 0.08), rgba(187, 0, 14, 0.03));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}


.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 14px;
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    padding: 80px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item h3 span {
    color: var(--primary);
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== ADVANTAGES ========== */
.advantages-section {
    padding: 120px 0;
}

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

.adv-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.adv-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.adv-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(187, 0, 14, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.adv-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.adv-item p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

.adv-visual {
    position: relative;
}

.adv-image-box {
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    border-radius: var(--radius-2xl);
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.adv-image-box::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(187, 0, 14, 0.2);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    filter: blur(60px);
}

.adv-image-box .big-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    z-index: 1;
}

.adv-image-box .big-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    z-index: 1;
}

.adv-float-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
}

.adv-float-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.adv-float-card h4 {
    font-size: 14px;
    font-weight: 600;
}

.adv-float-card p {
    font-size: 12px;
    color: #999;
}

/* ========== PAGE HERO (for inner pages) ========== */
.page-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 140px 40px 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 120px 0;
    background: var(--gray-200);
}

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

.contact-info-side > p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-sm);
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========== FORMS ========== */
.form-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.form-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group label .optional {
    color: #bbb;
    font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    outline: none;
    background: #fafafa;
    color: var(--dark);
    box-sizing: border-box;
    max-width: 100%;
}

/* Fix for date inputs on mobile */
.form-group input[type="date"],
.form-group input[type="datetime-local"],
.form-group input[type="time"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(187, 0, 14, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(187, 0, 14, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form section divider */
.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.form-section-title:first-child {
    margin-top: 0;
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--dark);
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0s 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    pointer-events: none;
}

.toast.success {
    background: #10b981;
}

.toast.error {
    background: var(--primary);
}

.toast.show {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========== MAP ========== */
.map-section {
    height: 500px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%);
}

/* ========== ABOUT US SECTIONS ========== */
.about-intro {
    padding: 120px 0 80px;
}

.about-intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-text p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-intro-text .highlight {
    color: var(--primary);
    font-weight: 700;
}

.vision-mission {
    padding: 0 0 120px;
}

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

.vm-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 48px;
    border: 1px solid #eee;
    transition: var(--transition-slow);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vm-card .vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(187, 0, 14, 0.08), rgba(187, 0, 14, 0.03));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.vm-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vm-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========== SERVICES PAGE - DETAILED ========== */
.services-detail {
    padding: 120px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--gray-300);
}

.service-detail-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content .service-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

.service-detail-visual {
    border-radius: var(--radius-2xl);
    height: 320px;
    overflow: hidden;
    position: relative;
}

.service-detail-visual .detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== HIRING PAGE ========== */
.hiring-steps {
    padding: 120px 0;
}

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

.step-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition-slow);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.step-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

.hiring-form-section {
    padding: 0 0 120px;
}

/* ========== SUCCESS PAGE ========== */
.success-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 60px 80px;
    text-align: center;
    max-width: 500px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: white;
}

.success-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-card p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0;
}

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

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

.footer-logo {
    width: 36px;
    height: 36px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-name {
    font-weight: 600;
    font-size: 18px;
}

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

.footer-social {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.footer-social:hover img {
    opacity: 1;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ========== CHECKBOX GROUP (hiring categories) ========== */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fafafa;
    border: 2px solid var(--gray-300);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.checkbox-group label:hover {
    border-color: var(--primary);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary);
}

.checkbox-group input[type="checkbox"]:checked + span {
    color: var(--primary);
    font-weight: 600;
}

/* ========== TESTIMONIALS CAROUSEL ========== */
.testimonials-section {
    padding: 120px 0;
    background: var(--gray-100);
    overflow: hidden;
}

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

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    position: relative;
    pointer-events: auto;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translateX(-100%) scale(0.95);
}

.testimonial-stars {
    font-size: 20px;
    color: #fbbf24;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 32px;
    font-weight: 400;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-company {
    font-size: 14px;
    color: var(--gray-500);
}

/* Carousel Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--primary);
}

.dot:hover {
    background: var(--primary);
    opacity: 0.7;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .hero h1 { font-size: 48px; }
    .hero-content { padding: 0 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-card { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-card:nth-child(even) { direction: ltr; }
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .section-title { font-size: 36px; }
    .page-hero h1 { font-size: 40px; }
    .navbar { padding: 16px 40px; }
    .navbar.scrolled { padding: 12px 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .navbar { padding: 16px 24px; }
    .navbar.scrolled { padding: 12px 24px; }
    .nav-center { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 0 24px; padding-top: 100px; }
    .hero-badge { display: none; }
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
    .hero p { font-size: 16px; }
    .hero-stats { flex-direction: column; gap: 24px; margin-top: 50px; }
    .hero-stat h3 { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .services-section { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 30px; }
    .section-desc { font-size: 15px; }
    .stats-bar { padding: 60px 0; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-item h3 { font-size: 36px; }
    .advantages-section { padding: 80px 0; }
    .testimonials-section { padding: 80px 0; }
    .testimonials-carousel { padding: 0 50px; }
    .testimonial-card { padding: 32px 24px; }
    .testimonial-text { font-size: 16px; }
    .contact-section { padding: 80px 0; }
    .form-card { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }
    .form-group input,
    .form-group textarea,
    .form-group select { padding: 12px 14px; font-size: 16px; }
    .form-group input[type="date"],
    .form-group input[type="datetime-local"],
    .form-group input[type="time"] { padding: 12px 10px; }
    .vm-grid { grid-template-columns: 1fr; }
    .vm-card { padding: 32px 24px; }
    .page-hero { min-height: 30vh; }
    .page-hero h1 { font-size: 32px; }
    .footer-content { flex-direction: column; gap: 24px; text-align: center; }
    .success-card { padding: 40px 32px; margin: 0 24px; }
    .adv-image-box { height: 300px; }
    .adv-float-card { bottom: -15px; left: 10px; }
    .about-intro { padding: 80px 0 60px; }
    .vision-mission { padding: 0 0 80px; }
    .services-detail { padding: 80px 0; }
    .hiring-steps { padding: 80px 0; }
    .hiring-form-section { padding: 0 0 80px; }
    .service-detail-visual { height: 220px; }
    .service-detail-content .service-number { font-size: 48px; }
    .service-detail-content h3 { font-size: 24px; }
    .lang-selector { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 28px; }
    .section-title { font-size: 26px; }
    .stat-item h3 { font-size: 28px; }
    .stat-item p { font-size: 12px; letter-spacing: 1px; }
    .testimonials-carousel { padding: 0 40px; }
    .testimonial-card { padding: 24px 20px; }
    .testimonial-text { font-size: 15px; }
    .carousel-btn { width: 40px; height: 40px; font-size: 28px; }
}
