/* ============================================
   UC Freight Global - Professional Redesign
   Design System & Global Styles
   ============================================ */

:root {
    --primary: #0f2137;
    --primary-light: #1a3a5c;
    --accent: #c9a96e;
    --accent-light: #e8d5a8;
    --accent-dark: #a88b4a;
    --text: #2d3748;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f2137;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15, 33, 55, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 33, 55, 0.08);
    --shadow-lg: 0 10px 40px rgba(15, 33, 55, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 33, 55, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin: 0 0 0.5em;
}

a { color: var(--accent-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.text-accent { color: var(--accent); }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.preloader-icon { width: 80px; height: 80px; margin-bottom: 10px; }

.preloader-svg { width: 100%; height: 100%; }

.preloader-svg .route-path {
    animation: drawPath 2s ease-in-out infinite;
}

.preloader-svg .dot-1 { animation: dotPulse 2s ease-in-out infinite 0s; }
.preloader-svg .dot-2 { animation: dotPulse 2s ease-in-out infinite 0.3s; }
.preloader-svg .dot-3 { animation: dotPulse 2s ease-in-out infinite 0.6s; }

@keyframes drawPath {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

.preloader-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: barFill 2s ease-in-out infinite;
}

@keyframes barFill {
    0% { width: 0%; margin-left: 0; }
    50% { width: 70%; margin-left: 0; }
    100% { width: 0%; margin-left: 100%; }
}

.preloader-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-accent { color: var(--accent-dark); }

.main-nav { display: flex; align-items: center; }

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
}

.nav-list li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-list li.active a,
.nav-list li a:hover { color: var(--primary); }

.nav-list li.active a::after,
.nav-list li a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline-custom.btn-lg { padding: 14px 34px; font-size: 0.95rem; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 33, 55, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.active { transform: translateX(0); }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-close {
    background: var(--bg-alt);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text);
    transition: var(--transition);
}

.mobile-close:hover { background: var(--primary); color: #fff; }

.mobile-nav-list {
    list-style: none;
    padding: 20px 24px;
    margin: 0;
    flex: 1;
}

.mobile-nav-list li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.active a {
    background: var(--bg-alt);
    color: var(--primary);
}

.mobile-nav-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
}

.mobile-contact { margin-top: 16px; }
.mobile-contact p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.min-vh-hero { min-height: 100vh; }

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 33, 55, 0.92) 0%, rgba(15, 33, 55, 0.6) 60%, rgba(15, 33, 55, 0.3) 100%);
}

.hero-content { padding: 120px 0 80px; }

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item { text-align: left; }

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; overflow: hidden; }

.section-header { margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-alt), #eef2f7);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover { gap: 12px; color: var(--primary); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--bg-alt); }

.about-image-wrap { position: relative; }

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary);
    color: #ffffff;
    padding: 24px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { font-size: 2.2rem; margin-bottom: 20px; }
.about-content > p { color: var(--text-light); margin-bottom: 30px; }

.about-features { margin-bottom: 30px; }

.about-feature-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.about-feature-item:last-child { border-bottom: none; }

.feature-icon-sm {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.about-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 80px 0; background: var(--bg); overflow: hidden; }

.cta-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.track-form { position: relative; z-index: 1; }

.track-input-wrap {
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.track-input-wrap:focus-within {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
}

.track-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.track-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }

.track-input-wrap button {
    background: var(--accent);
    border: none;
    padding: 16px 30px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.track-input-wrap button:hover { background: var(--accent-light); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.trust-section { background: var(--bg-alt); }

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-stars i { margin-right: 2px; }

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-top { padding-bottom: 50px; }

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-logo .logo-mark {
    background: rgba(201, 169, 110, 0.2);
    color: var(--accent);
}

.footer-logo .logo-text { color: #ffffff; }
.footer-logo .logo-accent { color: var(--accent); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 6px; }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .nav-list { gap: 28px; }
    .hero-content h1 { font-size: 3.2rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 991px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-stats { gap: 30px; }
    .cta-card { padding: 40px; }
    .about-img-main { height: 400px; }
    .about-experience-badge { right: 10px; bottom: -10px; }
    .section { padding: 80px 0; }
}

@media (max-width: 768px) {
    .header-inner { height: 70px; }
    .hero-content { padding: 100px 0 60px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .stat-number { font-size: 1.5rem; }
    .section-title { font-size: 1.8rem; }
    .cta-card { padding: 30px; }
    .cta-card h2 { font-size: 1.5rem; }
    .track-input-wrap { flex-direction: column; border-radius: var(--radius-md); }
    .track-input-wrap input { padding: 14px 20px; }
    .track-input-wrap button { justify-content: center; padding: 14px; }
    .about-img-main { height: 300px; }
    .about-experience-badge { position: relative; right: auto; bottom: auto; margin-top: 20px; display: inline-block; }
    .btn-primary-custom.btn-lg { padding: 14px 28px; font-size: 0.9rem; }
    .section { padding: 60px 0; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-outline-custom,
    .hero-actions .btn-primary-custom { width: 100%; justify-content: center; }
    .logo-text { font-size: 1.1rem; }
    .service-card { padding: 28px; }
    .section-title { font-size: 1.6rem; }
}

/* ============================================
   PAGE WRAPPER TRANSITION
   ============================================ */
.page-wrapper {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.page-wrapper.visible { opacity: 1; }

/* ============================================
   INNER PAGE BANNER
   ============================================ */
.page-banner {
    position: relative;
    padding: 160px 0 80px;
    background: var(--primary);
    overflow: hidden;
    width: 100%;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
}

.breadcrumb-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
}

.breadcrumb-nav a {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

.breadcrumb-nav span {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-card .icon {
    width: 56px;
    height: 56px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    color: var(--accent-dark);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrap {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================
   TRACKING PAGE
   ============================================ */
.track-page-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.track-page-form .track-input-wrap {
    background: var(--bg-alt);
    border: 2px solid var(--border);
}

.track-page-form .track-input-wrap:focus-within {
    border-color: var(--accent);
}

.track-page-form .track-input-wrap input {
    color: var(--text);
    font-size: 1rem;
}

.track-page-form .track-input-wrap input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   SERVICES PAGE DETAIL
   ============================================ */
.services-detail-section .service-card {
    text-align: center;
}

.services-detail-section .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    font-size: 1.6rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-card .icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary);
}

.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ============================================
   WHATSAPP CHAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0;
    transition: var(--transition);
}

.whatsapp-float .wa-tooltip {
    background: #ffffff;
    color: var(--text);
    padding: 10px 16px;
    border-radius: 10px 0 0 10px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float .wa-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.whatsapp-float .wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.whatsapp-float .wa-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 576px) {
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float .wa-btn { width: 52px; height: 52px; font-size: 1.4rem; }
    .whatsapp-float .wa-tooltip { display: none; }
}
