
		:root {
			--orange: #FF5C1A;
			--orange-light: #FF8A5C;
			--dark: #0F0E0C;
			--dark2: #1A1916;
			--cream: #F5F0E8;
			--cream2: #EDE7D9;
			--gray: #8A8680;
			--white: #FFFFFF;
		}

		*,
		*::before,
		*::after {
			box-sizing: border-box;
			margin: 0;
			padding: 0;
		}

		html {
			scroll-behavior: smooth;
		}

		body {
			font-family: 'DM Sans', sans-serif;
			background: var(--cream);
			color: var(--dark);
			overflow-x: hidden;
		}

		/* ===== NAV ===== */
		nav {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			z-index: 100;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 1.2rem 4rem;
			background: #FCFCFC;
			backdrop-filter: blur(5px);
			border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		}

		.logo img {
  height: 80px;   /* Adjust as needed */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }
}

		.nav-links {
			display: flex;
			gap: 2.5rem;
			list-style: none;
		}

		.nav-links a {
			color: #000;
			text-decoration: none;
			font-size: 1rem;
			font-weight: 400;
			letter-spacing: 0.5px;
			transition: color 0.2s;
		}

		.nav-links a:hover {
			color: var(--orange);
		}

		.nav-cta {
			background: var(--orange);
			color: white;
			border: none;
			padding: 0.65rem 1.6rem;
			font-family: 'DM Sans', sans-serif;
			font-weight: 600;
			font-size: 0.9rem;
			cursor: pointer;
			letter-spacing: 0.5px;
			transition: background 0.2s, transform 0.15s;
			clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
		}

		.nav-cta:hover {
			background: var(--orange-light);
			transform: translateY(-1px);
		}

		/* ===== HERO ===== */
		.hero {
			min-height: 100vh;
			background: var(--dark);
			display: grid;
			grid-template-columns: 1fr 1fr;
			position: relative;
			overflow: hidden;
		}

		.hero-bg-text {
			position: absolute;
			bottom: -2rem;
			left: -1rem;
			font-family: 'Bebas Neue', sans-serif;
			font-size: 22vw;
			color: rgba(255, 255, 255, 0.025);
			line-height: 1;
			pointer-events: none;
			white-space: nowrap;
		}

		.hero-left {
			display: flex;
			flex-direction: column;
			justify-content: center;
			padding: 10rem 4rem 6rem 4rem;
			position: relative;
			z-index: 2;
		}

		.hero-tag {
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			background: rgba(255, 92, 26, 0.15);
			border: 1px solid rgba(255, 92, 26, 0.3);
			color: var(--orange);
			padding: 0.4rem 1rem;
			font-size: 0.8rem;
			font-weight: 600;
			letter-spacing: 2px;
			text-transform: uppercase;
			margin-bottom: 2rem;
			width: fit-content;
			animation: fadeUp 0.7s ease both;
		}

		.hero-tag::before {
			content: '●';
			font-size: 0.5rem;
			animation: pulse 1.5s infinite;
		}

		@keyframes pulse {

			0%,
			100% {
				opacity: 1
			}

			50% {
				opacity: 0.3
			}
		}

		.hero h1 {
			font-family: 'Bebas Neue', sans-serif;
			font-size: clamp(4rem, 7vw, 8rem);
			line-height: 0.95;
			color: var(--white);
			animation: fadeUp 0.7s 0.1s ease both;
		}

		.hero h1 em {
			font-style: normal;
			color: var(--orange);
			display: block;
		}

		.hero-sub {
			margin-top: 1.8rem;
			color: rgba(255, 255, 255, 0.5);
			font-size: 1.05rem;
			line-height: 1.7;
			max-width: 420px;
			animation: fadeUp 0.7s 0.2s ease both;
		}

		.hero-actions {
			display: flex;
			gap: 1rem;
			margin-top: 2.5rem;
			animation: fadeUp 0.7s 0.3s ease both;
		}

		.btn-primary {
			background: var(--orange);
			color: white;
			border: none;
			padding: 1rem 2.2rem;
			font-family: 'DM Sans', sans-serif;
			font-weight: 600;
			font-size: 1rem;
			cursor: pointer;
			clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
			transition: all 0.2s;
		}

		.btn-primary:hover {
			background: var(--orange-light);
			transform: translateY(-2px);
		}

		.btn-secondary {
			background: transparent;
			color: rgba(255, 255, 255, 0.7);
			border: 1px solid rgba(255, 255, 255, 0.2);
			padding: 1rem 2.2rem;
			font-family: 'DM Sans', sans-serif;
			font-weight: 400;
			font-size: 1rem;
			cursor: pointer;
			transition: all 0.2s;
		}

		.btn-secondary:hover {
			border-color: var(--orange);
			color: var(--orange);
		}

		.hero-stats {
			display: flex;
			gap: 2.5rem;
			margin-top: 3rem;
			padding-top: 2rem;
			border-top: 1px solid rgba(255, 255, 255, 0.08);
			animation: fadeUp 0.7s 0.4s ease both;
		}

		.stat-num {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 2.4rem;
			color: var(--white);
			line-height: 1;
		}

		.stat-num span {
			color: var(--orange);
		}

		.stat-label {
			font-size: 0.8rem;
			color: var(--gray);
			margin-top: 0.3rem;
			letter-spacing: 0.5px;
		}

		.hero-right {
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			overflow: hidden;
		}

		.hero-visual {
			width: 100%;
			height: 100%;
			background: linear-gradient(135deg, #1a1410 0%, #2d1a08 50%, #1a0f05 100%);
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.truck-illustration {
			position: relative;
			animation: float 4s ease-in-out infinite;
		}

		@keyframes float {

			0%,
			100% {
				transform: translateY(0)
			}

			50% {
				transform: translateY(-16px)
			}
		}

		.truck-svg {
			width: 480px;
			height: auto;
		}

		.hero-right-overlay {
			position: absolute;
			inset: 0;
			background: linear-gradient(90deg, var(--dark) 0%, transparent 30%);
			pointer-events: none;
		}

		/* Diagonal accent */
		.diagonal-accent {
			position: absolute;
			bottom: 0;
			right: 0;
			width: 60%;
			height: 6px;
			background: var(--orange);
			clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%);
		}

		@keyframes fadeUp {
			from {
				opacity: 0;
				transform: translateY(30px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		/* ===== QUOTE STRIP ===== */
		.quote-strip {
			background: var(--orange);
			padding: 0;
			overflow: hidden;
			white-space: nowrap;
		}

		.ticker {
			display: inline-block;
			animation: ticker 20s linear infinite;
			padding: 1rem 0;
		}

		.ticker span {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 1.2rem;
			letter-spacing: 3px;
			color: white;
			margin: 0 2rem;
		}

		.ticker span.dot {
			color: rgba(255, 255, 255, 0.4);
			font-size: 0.6rem;
			vertical-align: middle;
		}

		@keyframes ticker {
			from {
				transform: translateX(0)
			}

			to {
				transform: translateX(-50%)
			}
		}

		/* ===== QUOTE FORM ===== */
		.quote-section {
			background: var(--cream2);
			padding: 6rem 4rem;
			display: flex;
			gap: 6rem;
			align-items: flex-start;
		}

		.quote-text {
			flex: 1;
		}

		.section-label {
			font-size: 0.75rem;
			font-weight: 600;
			letter-spacing: 3px;
			text-transform: uppercase;
			color: var(--orange);
			margin-bottom: 1rem;
		}

		.section-title {
			font-family: 'Bebas Neue', sans-serif;
			font-size: clamp(2.5rem, 4vw, 4.5rem);
			line-height: 1;
			color: var(--dark);
		}

		.section-title em {
			font-style: normal;
			color: var(--orange);
		}

		.section-body {
			margin-top: 1.2rem;
			color: var(--gray);
			font-size: 1rem;
			line-height: 1.8;
			max-width: 420px;
		}

		.quote-form {
			flex: 1.2;
		}

		.form-card {
			background: var(--dark);
			padding: 2.5rem;
			position: relative;
		}

		.form-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 4px;
			background: var(--orange);
		}

		.form-title {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 1.8rem;
			color: white;
			margin-bottom: 1.5rem;
			letter-spacing: 1px;
		}

		.form-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 1rem;
			margin-bottom: 1rem;
		}

		.form-group {
			display: flex;
			flex-direction: column;
			gap: 0.4rem;
		}

		.form-group.full {
			grid-column: 1/-1;
		}

		.form-group label {
			font-size: 0.75rem;
			font-weight: 600;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(255, 255, 255, 0.4);
		}

		.form-group input,
		.form-group select,
		.form-group textarea {
			background: rgba(255, 255, 255, 0.06);
			border: 1px solid rgba(255, 255, 255, 0.1);
			color: white;
			padding: 0.8rem 1rem;
			font-family: 'DM Sans', sans-serif;
			font-size: 0.95rem;
			outline: none;
			transition: border-color 0.2s;
		}

		.form-group input:focus,
		.form-group select:focus,
		.form-group textarea:focus {
			border-color: var(--orange);
		}

		.form-group select option {
			background: var(--dark2);
		}

		.form-group textarea {
			resize: vertical;
			min-height: 80px;
		}

		.form-submit {
			width: 100%;
			background: var(--orange);
			color: white;
			border: none;
			padding: 1rem;
			font-family: 'Bebas Neue', sans-serif;
			font-size: 1.3rem;
			letter-spacing: 2px;
			cursor: pointer;
			margin-top: 0.5rem;
			transition: all 0.2s;
			clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
		}

		.form-submit:hover {
			background: var(--orange-light);
		}

		

		/* ===== SERVICES ===== */
		.services {
			padding: 6rem 4rem;
			background: var(--cream);
		}

		.services-header {
			display: flex;
			justify-content: space-between;
			align-items: flex-end;
			margin-bottom: 3.5rem;
		}

		.services-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 1.5px;
			background: rgba(15, 14, 12, 0.08);
		}

		.service-card {
			background: var(--cream);
			padding: 2.5rem;
			position: relative;
			overflow: hidden;
			transition: all 0.3s;
			cursor: pointer;
		}

		.service-card:hover {
			background: var(--dark);
		}

		.service-card:hover .service-name,
		.service-card:hover .service-desc {
			color: white;
		}

		.service-card:hover .service-icon-wrap {
			background: var(--orange);
		}

		.service-num {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 4rem;
			color: rgba(15, 14, 12, 0.06);
			line-height: 1;
			position: absolute;
			top: 1rem;
			right: 1.5rem;
			transition: color 0.3s;
		}

		.service-card:hover .service-num {
			color: rgba(255, 255, 255, 0.05);
		}

		.service-icon-wrap {
			width: 52px;
			height: 52px;
			background: rgba(255, 92, 26, 0.1);
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 1.5rem;
			transition: background 0.3s;
		}

		.service-icon {
			font-size: 1.5rem;
		}

		.service-name {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 1.6rem;
			letter-spacing: 1px;
			margin-bottom: 0.8rem;
			transition: color 0.3s;
		}

		.service-desc {
			color: var(--gray);
			font-size: 0.9rem;
			line-height: 1.7;
			transition: color 0.3s;
		}

		.service-arrow {
			position: absolute;
			bottom: 2rem;
			right: 2rem;
			width: 32px;
			height: 32px;
			background: var(--orange);
			color: white;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.1rem;
			opacity: 0;
			transform: translateX(-8px);
			transition: all 0.3s;
		}

		.service-card:hover .service-arrow {
			opacity: 1;
			transform: translateX(0);
		}

		/* ===== WHY US ===== */
		.why-us {
			background: var(--dark);
			padding: 6rem 4rem;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 6rem;
			align-items: center;
		}

		.why-left .section-title {
			color: white;
		}

		.why-left .section-body {
			color: rgba(255, 255, 255, 0.5);
		}

		.feature-list {
			margin-top: 2.5rem;
			display: flex;
			flex-direction: column;
			gap: 1.2rem;
		}

		.feature-item {
			display: flex;
			gap: 1.2rem;
			align-items: flex-start;
			padding: 1.2rem;
			border: 1px solid rgba(255, 255, 255, 0.06);
			transition: border-color 0.2s;
		}

		.feature-item:hover {
			border-color: var(--orange);
		}

		.feature-check {
			width: 28px;
			height: 28px;
			min-width: 28px;
			background: var(--orange);
			color: white;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 0.8rem;
		}

		.feature-content .f-title {
			color: white;
			font-weight: 600;
			margin-bottom: 0.2rem;
		}

		.feature-content .f-desc {
			color: rgba(255, 255, 255, 0.45);
			font-size: 0.875rem;
			line-height: 1.6;
		}

		.why-right {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 1.5px;
			background: rgba(255, 255, 255, 0.04);
		}

		.metric-box {
			background: var(--dark2);
			padding: 2.5rem 2rem;
			text-align: center;
		}

		.metric-box.highlight {
			background: var(--orange);
		}

		.metric-big {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 3.5rem;
			color: white;
			line-height: 1;
		}

		.metric-label {
			color: rgba(255, 255, 255, 0.6);
			font-size: 0.85rem;
			margin-top: 0.5rem;
		}

		.metric-box.highlight .metric-label {
			color: rgba(255, 255, 255, 0.8);
		}

		/* ===== PROCESS ===== */
		.process {
			background: var(--cream2);
			padding: 6rem 4rem;
		}

		.process-header {
			text-align: center;
			margin-bottom: 4rem;
		}

		.process-steps {
			display: grid;
			grid-template-columns: repeat(5, 1fr);
			position: relative;
		}

		.process-steps::before {
			content: '';
			position: absolute;
			top: 2.5rem;
			left: 10%;
			right: 10%;
			height: 2px;
			background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
			z-index: 0;
		}

		.step {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			padding: 0 1rem;
			position: relative;
			z-index: 1;
		}

		.step-num {
			width: 50px;
			height: 50px;
			background: var(--dark);
			color: white;
			font-family: 'Bebas Neue', sans-serif;
			font-size: 1.4rem;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 1.2rem;
			border: 3px solid var(--cream2);
			transition: all 0.2s;
		}

		.step:hover .step-num {
			background: var(--orange);
		}

		.step-icon {
			font-size: 1.5rem;
			margin-bottom: 0.8rem;
		}

		.step-name {
			font-weight: 600;
			font-size: 0.95rem;
			margin-bottom: 0.4rem;
		}

		.step-desc {
			color: var(--gray);
			font-size: 0.82rem;
			line-height: 1.6;
		}

		/* ===== TESTIMONIALS ===== */
		.testimonials {
			background: var(--cream);
			padding: 6rem 4rem;
		}

		.testimonials-header {
			margin-bottom: 3rem;
		}

		.testi-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 1.5px;
			background: rgba(15, 14, 12, 0.08);
		}

		.testi-card {
			background: var(--cream);
			padding: 2.5rem;
			transition: background 0.3s;
		}

		.testi-card:hover {
			background: var(--dark);
		}

		.testi-card:hover .testi-text,
		.testi-card:hover .testi-name {
			color: white;
		}

		.testi-card:hover .testi-role {
			color: rgba(255, 255, 255, 0.5);
		}

		.testi-stars {
			color: var(--orange);
			font-size: 0.9rem;
			letter-spacing: 2px;
			margin-bottom: 1rem;
		}

		.testi-text {
			font-size: 0.95rem;
			line-height: 1.8;
			color: var(--dark);
			font-style: italic;
			margin-bottom: 1.5rem;
			transition: color 0.3s;
		}

		.testi-author {
			display: flex;
			align-items: center;
			gap: 0.8rem;
		}

		.testi-avatar {
			width: 40px;
			height: 40px;
			background: var(--orange);
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			font-weight: 700;
			font-size: 0.9rem;
		}

		.testi-name {
			font-weight: 600;
			transition: color 0.3s;
		}

		.testi-role {
			font-size: 0.8rem;
			color: var(--gray);
			transition: color 0.3s;
		}

		/* ===== FOOTER ===== */
		footer {
			background: var(--dark);
			padding: 5rem 4rem 2rem;
		}

		.footer-top {
			display: grid;
			grid-template-columns: 1.5fr 1fr 1fr 1fr;
			gap: 3rem;
			margin-bottom: 4rem;
			padding-bottom: 4rem;
			border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		}

		.footer-brand .logo {
			font-size: 2.2rem;
			display: block;
			margin-bottom: 1rem;
		}

		.footer-desc {
			color: rgba(255, 255, 255, 0.4);
			font-size: 0.9rem;
			line-height: 1.8;
			margin-bottom: 1.5rem;
		}

		.footer-contact-item {
			display: flex;
			align-items: center;
			gap: 0.6rem;
			color: rgba(255, 255, 255, 0.6);
			font-size: 0.875rem;
			margin-bottom: 0.6rem;
		}

		.footer-contact-item span:first-child {
			color: var(--orange);
		}

		.footer-col-title {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 1.2rem;
			color: white;
			letter-spacing: 2px;
			margin-bottom: 1.5rem;
		}

		.footer-links {
			list-style: none;
			display: flex;
			flex-direction: column;
			gap: 0.7rem;
		}

		.footer-links a {
			color: rgba(255, 255, 255, 0.4);
			text-decoration: none;
			font-size: 0.9rem;
			transition: color 0.2s;
		}

		.footer-links a:hover {
			color: var(--orange);
		}

		.footer-bottom {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.footer-copy {
			color: rgba(255, 255, 255, 0.3);
			font-size: 0.85rem;
		}

		.footer-socials {
			display: flex;
			gap: 0.8rem;
		}

		.social-btn {
			width: 40px;
			height: 40px;
			border: 1px solid rgb(252, 252, 252);
			border-radius: 26px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: rgb(255, 255, 255);
			cursor: pointer;
			transition: all 0.2s;
			font-size: 1rem;
		}

		.social-btn:hover {
			border-color: var(--orange);
			color: var(--orange);
		}
			
		/* ===== FLOAT CTA ===== */
		.float-cta {
			position: fixed;
			bottom: 6rem;
			right: 2rem;
			background: var(--orange);
			color: white;
			border: none;
			padding: 1rem 1.5rem;
			font-family: 'DM Sans', sans-serif;
			font-weight: 600;
			font-size: 0.9rem;
			cursor: pointer;
			z-index: 99;
			box-shadow: 0 8px 30px rgba(255, 92, 26, 0.4);
			clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
			animation: popIn 0.5s 1s ease both;
			transition: all 0.2s;
		}

		.float-cta:hover {
			background: var(--orange-light);
			transform: translateY(-2px);
			box-shadow: 0 12px 40px rgba(255, 92, 26, 0.5);
		}

		@keyframes popIn {
			from {
				opacity: 0;
				transform: translateY(20px)
			}

			to {
				opacity: 1;
				transform: translateY(0)
			}
		}

		/* ===== RESPONSIVE ===== */
		@media (max-width: 900px) {
			nav {
				padding: 1rem 1.5rem;
			}

			.nav-links {
				display: none;
			}

			.hero {
				grid-template-columns: 1fr;
			}

			.hero-right {
				display: none;
			}

			.hero-left {
				padding: 8rem 1.5rem 4rem;
			}

			.quote-section {
				flex-direction: column;
				padding: 4rem 1.5rem;
				gap: 2rem;
			}

			.services {
				padding: 4rem 1.5rem;
			}

			.services-header {
				flex-direction: column;
				align-items: flex-start;
				gap: 1rem;
			}

			.services-grid {
				grid-template-columns: 1fr;
			}

			.why-us {
				grid-template-columns: 1fr;
				padding: 4rem 1.5rem;
				gap: 3rem;
			}

			.process {
				padding: 4rem 1.5rem;
			}

			.process-steps {
				grid-template-columns: 1fr 1fr;
				gap: 2rem;
			}

			.process-steps::before {
				display: none;
			}

			.testi-grid {
				grid-template-columns: 1fr;
			}

			.footer-top {
				grid-template-columns: 1fr;
				gap: 2rem;
			}

			.testimonials {
				padding: 4rem 1.5rem;
			}

			footer {
				padding: 4rem 1.5rem 2rem;
			}
		}
	