/* TopXTrans Global Logistics theme - main stylesheet */

:root {
	--color-navy: #0b2545;
	--color-navy-light: #13315c;
	--color-orange: #ff6b35;
	--color-orange-dark: #e85a2a;
	--color-gray-bg: #f4f6f9;
	--color-text: #1f2933;
	--color-text-light: #5b6b7b;
	--radius: 10px;
	--container-width: 1180px;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
	color: var(--color-text);
	line-height: 1.7;
	background: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.3; margin: 0 0 16px; color: var(--color-navy); }
p { margin: 0 0 16px; color: var(--color-text-light); }

.btn {
	display: inline-block;
	padding: 13px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.2s ease;
	border: 2px solid transparent;
}
.btn-primary { background: var(--color-orange); color: #fff; }
.btn-primary:hover { background: var(--color-orange-dark); }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Header */
.site-header { background: var(--color-navy); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.site-logo-text { color: #fff; font-size: 22px; font-weight: 700; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.nav-menu { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: #cfd8e3; font-size: 15px; font-weight: 500; }
.nav-menu a:hover { color: #fff; }
.nav-cta { white-space: nowrap; }
.mobile-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-nav-toggle span { width: 24px; height: 2px; background: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%); color: #fff; padding: 90px 0; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-block; color: var(--color-orange); font-weight: 700; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.hero-text h1 { color: #fff; font-size: 38px; }
.hero-text p { color: #cfd8e3; font-size: 16px; max-width: 580px; }
.hero-actions { display: flex; gap: 16px; margin: 28px 0 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 28px; color: var(--color-orange); }
.hero-stats span { font-size: 13px; color: #a9b8c9; }
.hero-visual { height: 320px; border-radius: var(--radius); background: linear-gradient(160deg, rgba(255,107,53,0.35), rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.15); }

/* Sections */
.section-title { text-align: center; font-size: 30px; }
.section-subtitle { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.steps-section, .services-section, .why-us-section, .content-section { padding: 80px 0; }
.alt-bg { background: var(--color-gray-bg); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-item { text-align: center; }
.step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--color-orange); color: #fff; font-size: 20px; font-weight: 700;
	margin-bottom: 16px;
}

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid #e7ebf0; border-radius: var(--radius); padding: 32px 24px; transition: all 0.2s ease; }
.service-card:hover { box-shadow: 0 12px 30px rgba(11,37,69,0.12); transform: translateY(-4px); border-color: var(--color-orange); }
.service-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; }
.service-card p { font-size: 14px; margin: 0; }

.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-us-item h3 { font-size: 17px; }
.why-us-item p { font-size: 14px; }

.cta-banner { background: var(--color-orange); padding: 60px 0; }
.cta-banner-inner { text-align: center; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner .btn-primary { background: var(--color-navy); }
.cta-banner .btn-primary:hover { background: var(--color-navy-light); }

.page-hero, .page-hero-simple { background: var(--color-navy); color: #fff; padding: 64px 0; }
.page-hero h1, .page-hero-simple h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: #cfd8e3; max-width: 640px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-item { background: #fff; border: 1px solid #e7ebf0; border-radius: var(--radius); padding: 24px; }
.feature-item h3 { font-size: 17px; }
.feature-item p { font-size: 14px; margin: 0; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid #e7ebf0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-orange); font-weight: 700; }
.check-list.two-columns { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 32px; }

.process-list { padding-left: 20px; }
.process-list li { margin-bottom: 14px; color: var(--color-text-light); }

.contact-form { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: 14px; font-weight: 600; color: var(--color-navy); margin-top: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
	padding: 12px 14px; border: 1px solid #dde3ea; border-radius: 8px; font-size: 15px; font-family: inherit;
}
.contact-form button { margin-top: 16px; align-self: flex-start; }
.form-notice { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.form-notice--success { background: #e6f6ec; color: #1c7a3d; }
.form-notice--error { background: #fdecea; color: #c0392b; }
.contact-list { list-style: none; padding: 0; margin: 0 0 20px; }
.contact-list li { padding: 8px 0; border-bottom: 1px solid #e7ebf0; color: var(--color-text-light); }

.site-footer { background: var(--color-navy); color: #cfd8e3; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-col h3, .footer-col h4 { color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #cfd8e3; font-size: 14px; }
.footer-col a:hover { color: var(--color-orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-menu { display: flex; gap: 18px; list-style: none; padding: 0; margin: 0; }

@media (max-width: 900px) {
	.hero-inner, .two-col, .services-grid, .why-us-grid, .feature-grid, .footer-grid, .check-list.two-columns, .steps-grid {
		grid-template-columns: 1fr;
	}
	.hero-visual { display: none; }
	.primary-nav {
		display: none; position: absolute; top: 100%; left: 0; right: 0;
		background: var(--color-navy); flex-direction: column; padding: 20px 24px; gap: 16px;
	}
	.primary-nav.is-open { display: flex; }
	.nav-menu { flex-direction: column; gap: 12px; }
	.mobile-nav-toggle { display: flex; }
	.hero-text h1 { font-size: 28px; }
	.footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}