:root {
				--red: #cc1f1f;
				--blue: #1a3a8f;
				--orange: #f47b20;
				--light: #f5f7fa;
				--dark: #111827;
				--mid: #374151;
				--border: #d1d5db;
				--white: #ffffff;
			}

			*,
			*::before,
			*::after {
				box-sizing: border-box;
				margin: 0;
				padding: 0;
			}

			html {
				scroll-behavior: smooth;
			}

			body {
				font-family: "Source Sans 3", sans-serif;
				background: var(--white);
				color: var(--dark);
				overflow-x: hidden;
			}

			/* ─── NAVBAR ─── */
			nav {
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				z-index: 900;
				background: var(--blue);
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 0 24px;
				height: 64px;
				box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
			}
			.nav-brand {
				display: flex;
				align-items: center;
				gap: 10px;
				text-decoration: none;
			}
			.nav-logo {
				width: 42px;
				height: 42px;
				border-radius: 50%;
				background: var(--white);
				display: flex;
				align-items: center;
				justify-content: center;
				font-family: "Oswald", sans-serif;
				font-weight: 700;
				font-size: 15px;
				color: var(--blue);
				letter-spacing: -1px;
			}
			.nav-title {
				font-family: "Samarkan", sans-serif;
				font-weight: normal;
				color: var(--red);
				font-size: 24px;
				line-height: 1.2;
				letter-spacing: 1px;
				text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
			}
			.nav-title span {
				display: inline-block;
				font-size: 9px;
				font-family: "Oswald", sans-serif;
				font-weight: 600;
				letter-spacing: 0.5px;
				text-transform: uppercase;
				background: var(--blue);
				color: var(--white);
				padding: 2px 8px;
				border-radius: 12px;
				margin-top: 4px;
				border: 1px solid rgba(255,255,255,0.3);
			}
			.nav-links {
				display: flex;
				gap: 28px;
				list-style: none;
			}
			.nav-links a {
				color: rgba(255, 255, 255, 0.88);
				text-decoration: none;
				font-size: 14px;
				font-weight: 600;
				letter-spacing: 0.5px;
				transition: color 0.2s;
			}
			.nav-links a:hover {
				color: var(--orange);
			}
			.nav-cta {
				background: var(--orange);
				color: var(--white) !important;
				padding: 8px 18px;
				border-radius: 4px;
			}
			.nav-cta:hover {
				background: #d96b10;
				color: var(--white) !important;
			}

			/* hamburger */
			.hamburger {
				display: none;
				background: none;
				border: none;
				cursor: pointer;
				flex-direction: column;
				gap: 5px;
				padding: 4px;
			}
			.hamburger span {
				display: block;
				width: 25px;
				height: 2px;
				background: var(--white);
				border-radius: 2px;
				transition: all 0.3s;
			}

			.mobile-menu {
				display: none;
				flex-direction: column;
				background: var(--blue);
				position: fixed;
				top: 64px;
				left: 0;
				right: 0;
				z-index: 899;
				padding: 16px 24px 20px;
				gap: 4px;
				border-top: 1px solid rgba(255, 255, 255, 0.15);
			}
			.mobile-menu a {
				color: rgba(255, 255, 255, 0.9);
				text-decoration: none;
				font-size: 15px;
				font-weight: 600;
				padding: 10px 0;
				border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			}
			.mobile-menu a:last-child {
				border-bottom: none;
			}
			.mobile-menu.open {
				display: flex;
			}

			/* ─── HERO ─── */
			.hero {
				min-height: 100vh;
				background-color: var(--blue);
				background-image: linear-gradient(
					135deg,
					rgba(34, 64, 114, 0.85) 0%,
					rgba(62, 108, 179, 0.9) 50%,
					rgba(20, 39, 71, 0.95) 100%
				), url('assets/images/hero-bg.jpg');
				background-size: cover;
				background-position: center;
				background-repeat: no-repeat;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				text-align: center;
				padding: 100px 24px 60px;
				position: relative;
				overflow: hidden;
			}
			.hero-badge {
				display: inline-block;
				background: var(--orange);
				color: var(--white);
				font-size: 12px;
				font-weight: 600;
				letter-spacing: 2px;
				text-transform: uppercase;
				padding: 6px 18px;
				border-radius: 2px;
				margin-bottom: 24px;
				position: relative;
			}
			.hero-logo-circle {
				width: 100px;
				height: 100px;
				border-radius: 50%;
				background: var(--white);
				display: flex;
				align-items: center;
				justify-content: center;
				margin: 0 auto 28px;
				box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
				font-family: "Oswald", sans-serif;
				font-weight: 700;
				font-size: 32px;
				color: var(--blue);
				position: relative;
			}
			.hero-logo-circle::after {
				content: "";
				position: absolute;
				inset: -4px;
				border-radius: 50%;
				border: 3px solid var(--orange);
				animation: spin-ring 6s linear infinite;
				border-top-color: transparent;
				border-left-color: transparent;
			}
			@keyframes spin-ring {
				to {
					transform: rotate(360deg);
				}
			}

			.hero h1 {
				font-family: "Oswald",sans-serif;
				font-weight: normal;
				font-size: clamp(32px, 7vw, 64px);
				color: var(--red);
				line-height: 1.1;
				position: relative;
				margin-bottom: 10px;
				text-shadow: 2px 2px 4px rgba(255,255,255,0.7);
			}
			.hero h1 em {
				color: var(--red);
				font-style: normal;
			}
			.hero-sub {
				font-family: "Oswald", sans-serif;
				font-size: clamp(11px, 2vw, 16px);
				color: var(--white);
				background: var(--blue);
				padding: 6px 16px;
				border-radius: 20px;
				letter-spacing: 1px;
				text-transform: uppercase;
				font-weight: 600;
				margin-bottom: 32px;
				position: relative;
				border: 1px solid rgba(255,255,255,0.4);
			}
			.hero-tagline {
				font-size: clamp(15px, 2.5vw, 20px);
				color: rgba(255, 255, 255, 0.9);
				max-width: 600px;
				line-height: 1.6;
				margin-bottom: 44px;
				position: relative;
			}
			.hero-actions {
				display: flex;
				gap: 16px;
				flex-wrap: wrap;
				justify-content: center;
				position: relative;
			}
			.btn-primary {
				background: var(--orange);
				color: var(--white);
				padding: 14px 32px;
				border-radius: 4px;
				text-decoration: none;
				font-family: "Oswald", sans-serif;
				font-size: 16px;
				font-weight: 600;
				letter-spacing: 1px;
				border: 2px solid var(--orange);
				transition: all 0.25s;
				display: inline-flex;
				align-items: center;
				gap: 8px;
			}
			.btn-primary:hover {
				background: transparent;
				color: var(--orange);
			}
			.btn-outline {
				background: transparent;
				color: var(--white);
				padding: 14px 32px;
				border-radius: 4px;
				text-decoration: none;
				font-family: "Oswald", sans-serif;
				font-size: 16px;
				font-weight: 600;
				letter-spacing: 1px;
				border: 2px solid rgba(255, 255, 255, 0.5);
				transition: all 0.25s;
				display: inline-flex;
				align-items: center;
				gap: 8px;
			}
			.btn-outline:hover {
				border-color: var(--white);
				background: rgba(255, 255, 255, 0.08);
			}

			.hero-stats {
				display: flex;
				gap: 40px;
				margin-top: 64px;
				position: relative;
				flex-wrap: wrap;
				justify-content: center;
			}
			.stat {
				text-align: center;
			}
			.stat-num {
				font-family: "Oswald", sans-serif;
				font-size: 36px;
				font-weight: 700;
				color: var(--orange);
				display: block;
			}
			.stat-label {
				font-size: 13px;
				color: rgba(255, 255, 255, 0.65);
				text-transform: uppercase;
				letter-spacing: 1px;
			}

			.scroll-hint {
				position: absolute;
				bottom: 28px;
				left: 50%;
				transform: translateX(-50%);
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 6px;
				color: rgba(255, 255, 255, 0.5);
				font-size: 12px;
				letter-spacing: 1.5px;
				text-transform: uppercase;
				animation: bounce 2s ease-in-out infinite;
			}
			.scroll-hint svg {
				width: 20px;
				height: 20px;
			}
			@keyframes bounce {
				0%,
				100% {
					transform: translateX(-50%) translateY(0);
				}
				50% {
					transform: translateX(-50%) translateY(6px);
				}
			}

			/* ─── STRIP ─── */
			.strip {
				background: var(--orange);
				color: var(--white);
				text-align: center;
				padding: 14px 24px;
				font-family: "Oswald", sans-serif;
				font-size: 16px;
				letter-spacing: 1px;
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 16px;
				flex-wrap: wrap;
			}
			.strip a {
				color: var(--white);
				font-weight: 700;
				text-decoration: none;
			}

			/* ─── SECTION WRAPPER ─── */
			section {
				padding: 72px 24px;
			}
			.container {
				max-width: 1100px;
				margin: 0 auto;
			}
			.section-header {
				text-align: center;
				margin-bottom: 48px;
			}
			.section-label {
				display: inline-block;
				background: var(--orange);
				color: var(--white);
				font-size: 11px;
				font-weight: 700;
				letter-spacing: 2px;
				text-transform: uppercase;
				padding: 5px 14px;
				border-radius: 2px;
				margin-bottom: 14px;
			}
			.section-title {
				font-family: "Oswald", sans-serif;
				font-size: clamp(26px, 5vw, 40px);
				font-weight: 700;
				color: var(--blue);
				line-height: 1.15;
			}
			.section-title span {
				color: var(--red);
			}
			.section-desc {
				color: var(--mid);
				font-size: 16px;
				max-width: 600px;
				margin: 12px auto 0;
				line-height: 1.7;
			}
			.divider {
				width: 60px;
				height: 4px;
				background: var(--orange);
				margin: 16px auto 0;
				border-radius: 2px;
			}

			/* ─── WHY US ─── */
			.why-us {
				background: var(--light);
			}
			.why-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
				gap: 28px;
			}
			.why-card {
				background: var(--white);
				border-radius: 6px;
				padding: 30px 24px;
				border-left: 4px solid var(--orange);
				box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
				transition:
					transform 0.25s,
					box-shadow 0.25s;
			}
			.why-card:hover {
				transform: translateY(-4px);
				box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
			}
			.why-icon {
				font-size: 36px;
				margin-bottom: 14px;
			}
			.why-card h3 {
				font-family: "Oswald", sans-serif;
				font-size: 18px;
				color: var(--blue);
				margin-bottom: 8px;
			}
			.why-card p {
				font-size: 14px;
				color: var(--mid);
				line-height: 1.6;
			}

			/* ─── EQUIPMENT ─── */
			.equipment {
				background: var(--white);
			}
			.eq-grid {
				display: grid;
				grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
				gap: 24px;
			}
			.eq-card {
				border: 2px solid var(--border);
				border-radius: 8px;
				overflow: hidden;
				cursor: pointer;
				transition:
					border-color 0.25s,
					box-shadow 0.25s,
					transform 0.25s;
				background: var(--white);
			}
			.eq-card:hover {
				border-color: var(--orange);
				box-shadow: 0 6px 24px rgba(244, 123, 32, 0.2);
				transform: translateY(-4px);
			}
			.eq-img {
				height: 180px;
				background: var(--light);
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 64px;
				position: relative;
				overflow: hidden;
			}
			.eq-img::after {
				content: "View Details →";
				position: absolute;
				inset: 0;
				background: rgba(26, 58, 143, 0.88);
				color: var(--white);
				font-family: "Oswald", sans-serif;
				font-size: 16px;
				letter-spacing: 1px;
				display: flex;
				align-items: center;
				justify-content: center;
				opacity: 0;
				transition: opacity 0.25s;
			}
			.eq-card:hover .eq-img::after {
				opacity: 1;
			}
			.eq-body {
				padding: 18px 16px;
			}
			.eq-tag {
				display: inline-block;
				background: var(--blue);
				color: var(--white);
				font-size: 10px;
				font-weight: 700;
				letter-spacing: 1.5px;
				text-transform: uppercase;
				padding: 3px 10px;
				border-radius: 2px;
				margin-bottom: 8px;
			}
			.eq-name {
				font-family: "Oswald", sans-serif;
				font-size: 18px;
				color: var(--dark);
				margin-bottom: 6px;
			}
			.eq-short {
				font-size: 13px;
				color: var(--mid);
				line-height: 1.5;
			}
			.eq-footer {
				display: flex;
				gap: 8px;
				padding: 12px 16px;
				border-top: 1px solid var(--border);
			}
			.eq-pill {
				font-size: 11px;
				font-weight: 600;
				padding: 4px 10px;
				border-radius: 12px;
				letter-spacing: 0.5px;
			}
			.pill-sale {
				background: #fef3c7;
				color: #92400e;
			}
			.pill-rent {
				background: #dbeafe;
				color: #1e40af;
			}
			.pill-svc {
				background: #d1fae5;
				color: #065f46;
			}

			/* ─── MODAL ─── */
			.modal-overlay {
				position: fixed;
				inset: 0;
				z-index: 1000;
				background: rgba(0, 0, 0, 0.65);
				backdrop-filter: blur(4px);
				display: none;
				align-items: center;
				justify-content: center;
				padding: 20px;
			}
			.modal-overlay.open {
				display: flex;
			}
			.modal {
				background: var(--white);
				border-radius: 10px;
				max-width: 860px;
				width: 100%;
				max-height: 90vh;
				overflow-y: auto;
				box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
				animation: modalIn 0.3s ease;
			}
			@keyframes modalIn {
				from {
					opacity: 0;
					transform: scale(0.93) translateY(20px);
				}
				to {
					opacity: 1;
					transform: scale(1) translateY(0);
				}
			}
			.modal-header {
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 20px 24px;
				border-bottom: 2px solid var(--border);
				background: var(--blue);
				border-radius: 10px 10px 0 0;
			}
			.modal-header h2 {
				font-family: "Oswald", sans-serif;
				font-size: 22px;
				color: var(--white);
			}
			.modal-close {
				background: rgba(255, 255, 255, 0.15);
				border: none;
				color: var(--white);
				width: 36px;
				height: 36px;
				border-radius: 50%;
				font-size: 20px;
				cursor: pointer;
				display: flex;
				align-items: center;
				justify-content: center;
				transition: background 0.2s;
			}
			.modal-close:hover {
				background: rgba(255, 255, 255, 0.3);
			}
			.modal-body {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 0;
			}
			.modal-img-side {
				background: var(--light);
				padding: 0;
				position: relative;
				overflow: hidden;
				border-bottom-left-radius: 10px;
			}
			.modal-img-side p {
				display: none;
			}
			.modal-info-side {
				padding: 32px 28px;
			}
			.modal-info-side h3 {
				font-family: "Oswald", sans-serif;
				font-size: 20px;
				color: var(--blue);
				margin-bottom: 14px;
			}
			.modal-desc {
				font-size: 15px;
				color: var(--mid);
				line-height: 1.7;
				margin-bottom: 20px;
			}
			.modal-specs {
				margin-bottom: 20px;
			}
			.modal-specs h4 {
				font-family: "Oswald", sans-serif;
				font-size: 14px;
				letter-spacing: 1px;
				text-transform: uppercase;
				color: var(--dark);
				margin-bottom: 10px;
			}
			.spec-row {
				display: flex;
				gap: 8px;
				padding: 7px 0;
				border-bottom: 1px solid var(--border);
				font-size: 14px;
			}
			.spec-row:last-child {
				border-bottom: none;
			}
			.spec-key {
				color: var(--mid);
				min-width: 120px;
				font-weight: 600;
			}
			.spec-val {
				color: var(--dark);
			}
			.modal-pills {
				display: flex;
				gap: 8px;
				flex-wrap: wrap;
				margin-bottom: 24px;
			}
			.modal-enquire {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 10px;
				background: #25d366;
				color: var(--white);
				padding: 14px 24px;
				border-radius: 6px;
				text-decoration: none;
				font-family: "Oswald", sans-serif;
				font-size: 17px;
				font-weight: 600;
				letter-spacing: 0.5px;
				border: none;
				cursor: pointer;
				width: 100%;
				transition: background 0.2s;
			}
			.modal-enquire:hover {
				background: #1ebe5d;
			}
			.modal-enquire svg {
				width: 22px;
				height: 22px;
			}

			/* ─── ABOUT ─── */
			.about {
				background: var(--white);
			}
			.about-grid {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 48px;
				align-items: center;
			}
			.about-visual {
				background: var(--blue);
				border-radius: 8px;
				padding: 48px 36px;
				text-align: center;
				color: var(--white);
			}
			.about-big {
				font-family: "Oswald", sans-serif;
				font-size: 72px;
				font-weight: 700;
				color: var(--orange);
				line-height: 1;
			}
			.about-visual p {
				font-size: 15px;
				opacity: 0.8;
				margin-top: 8px;
			}
			.about-list {
				list-style: none;
				margin-top: 24px;
				display: flex;
				flex-direction: column;
				gap: 12px;
			}
			.about-list li {
				display: flex;
				gap: 12px;
				align-items: flex-start;
				background: rgba(255, 255, 255, 0.08);
				padding: 12px 16px;
				border-radius: 6px;
				font-size: 14px;
				line-height: 1.5;
			}
			.about-list li span:first-child {
				font-size: 18px;
				flex-shrink: 0;
			}
			.about-text h2 {
				font-family: "Oswald", sans-serif;
				font-size: 32px;
				color: var(--blue);
				margin-bottom: 16px;
			}
			.about-text p {
				font-size: 15px;
				color: var(--mid);
				line-height: 1.75;
				margin-bottom: 16px;
			}
			.about-addr {
				background: var(--white);
				border-left: 4px solid var(--orange);
				padding: 16px 20px;
				border-radius: 0 6px 6px 0;
				font-size: 14px;
				color: var(--mid);
				line-height: 1.7;
			}
			.about-addr strong {
				color: var(--dark);
				display: block;
				margin-bottom: 4px;
				font-family: "Oswald", sans-serif;
				font-size: 16px;
			}

			/* ─── REVIEWS ─── */
			.reviews {
				background: var(--blue);
				overflow: hidden;
			}
			.reviews .section-title {
				color: var(--white);
			}
			.reviews .section-desc {
				color: rgba(255, 255, 255, 0.7);
			}
			.reviews .section-label {
				background: var(--orange);
			}
			.reviews-track-wrap {
				overflow: hidden;
				position: relative;
			}
			.reviews-track-wrap::before,
			.reviews-track-wrap::after {
				content: "";
				position: absolute;
				top: 0;
				bottom: 0;
				width: 80px;
				z-index: 2;
				pointer-events: none;
			}
			.reviews-track-wrap::before {
				left: 0;
				background: linear-gradient(to right, var(--blue), transparent);
			}
			.reviews-track-wrap::after {
				right: 0;
				background: linear-gradient(to left, var(--blue), transparent);
			}
			.reviews-track {
				display: flex;
				gap: 24px;
				animation: scrollTrack 32s linear infinite;
				width: max-content;
			}
			.reviews-track:hover {
				animation-play-state: paused;
			}
			@keyframes scrollTrack {
				from {
					transform: translateX(0);
				}
				to {
					transform: translateX(-50%);
				}
			}
			.review-card {
				background: rgba(255, 255, 255, 0.1);
				backdrop-filter: blur(8px);
				border: 1px solid rgba(255, 255, 255, 0.15);
				border-radius: 8px;
				padding: 28px 24px;
				width: 300px;
				flex-shrink: 0;
			}
			.review-stars {
				color: #fcd34d;
				font-size: 18px;
				margin-bottom: 10px;
			}
			.review-text {
				font-size: 14px;
				color: rgba(255, 255, 255, 0.85);
				line-height: 1.65;
				margin-bottom: 16px;
				font-style: italic;
			}
			.review-author {
				display: flex;
				align-items: center;
				gap: 12px;
			}
			.review-avatar {
				width: 42px;
				height: 42px;
				border-radius: 50%;
				background: var(--orange);
				display: flex;
				align-items: center;
				justify-content: center;
				font-family: "Oswald", sans-serif;
				font-weight: 700;
				font-size: 16px;
				color: var(--white);
			}
			.review-name {
				font-weight: 600;
				color: var(--white);
				font-size: 14px;
			}
			.review-role {
				font-size: 12px;
				color: rgba(255, 255, 255, 0.55);
			}

			/* ─── CONTACT ─── */
			.contact {
				background: var(--light);
			}
			.contact-grid {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 48px;
			}
			.contact-info h3 {
				font-family: "Oswald", sans-serif;
				font-size: 26px;
				color: var(--blue);
				margin-bottom: 20px;
			}
			.contact-item {
				display: flex;
				gap: 16px;
				margin-bottom: 22px;
			}
			.contact-icon {
				width: 48px;
				height: 48px;
				border-radius: 6px;
				background: var(--blue);
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 20px;
				flex-shrink: 0;
			}
			.contact-item-text strong {
				display: block;
				font-size: 13px;
				text-transform: uppercase;
				letter-spacing: 1px;
				color: var(--mid);
				margin-bottom: 4px;
			}
			.contact-item-text a,
			.contact-item-text p {
				color: var(--dark);
				font-size: 15px;
				text-decoration: none;
			}
			.contact-item-text a:hover {
				color: var(--orange);
			}
			.wa-btn {
				display: inline-flex;
				align-items: center;
				gap: 10px;
				background: #25d366;
				color: var(--white);
				padding: 14px 24px;
				border-radius: 6px;
				text-decoration: none;
				font-family: "Oswald", sans-serif;
				font-size: 16px;
				font-weight: 600;
				margin-top: 8px;
				transition: background 0.2s;
			}
			.wa-btn:hover {
				background: #1ebe5d;
			}
			.contact-form {
				display: flex;
				flex-direction: column;
				gap: 16px;
			}
			.form-row {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 16px;
			}
			.form-group {
				display: flex;
				flex-direction: column;
				gap: 6px;
			}
			.form-group label {
				font-size: 13px;
				font-weight: 600;
				color: var(--mid);
				text-transform: uppercase;
				letter-spacing: 0.5px;
			}
			.form-group input,
			.form-group select,
			.form-group textarea {
				border: 2px solid var(--border);
				border-radius: 4px;
				padding: 11px 14px;
				font-size: 15px;
				font-family: "Source Sans 3", sans-serif;
				color: var(--dark);
				outline: none;
				transition: border-color 0.2s;
				background: var(--white);
			}
			.form-group input:focus,
			.form-group select:focus,
			.form-group textarea:focus {
				border-color: var(--blue);
			}
			.form-group textarea {
				resize: vertical;
				min-height: 120px;
			}
			.form-submit {
				background: var(--blue);
				color: var(--white);
				border: none;
				border-radius: 4px;
				padding: 14px 28px;
				font-family: "Oswald", sans-serif;
				font-size: 17px;
				font-weight: 600;
				letter-spacing: 1px;
				cursor: pointer;
				transition: background 0.2s;
			}
			.form-submit:hover {
				background: #122d72;
			}
			.form-note {
				font-size: 13px;
				color: var(--mid);
				margin-top: -8px;
			}
			#form-success {
				display: none;
				background: #d1fae5;
				color: #065f46;
				border: 1px solid #6ee7b7;
				border-radius: 6px;
				padding: 14px 18px;
				font-size: 15px;
				margin-top: 8px;
			}

			/* ─── FOOTER ─── */
			footer {
				background: var(--dark);
				color: rgba(255, 255, 255, 0.6);
				padding: 40px 24px 24px;
			}
			.footer-inner {
				max-width: 1100px;
				margin: 0 auto;
			}
			.footer-top {
				display: flex;
				justify-content: space-between;
				align-items: flex-start;
				flex-wrap: wrap;
				gap: 24px;
				margin-bottom: 32px;
			}
			.footer-brand {
				max-width: 280px;
			}
			.footer-logo-row {
				display: flex;
				align-items: center;
				gap: 12px;
				margin-bottom: 12px;
			}
			.footer-logo-icon {
				width: 44px;
				height: 44px;
				border-radius: 50%;
				background: var(--blue);
				display: flex;
				align-items: center;
				justify-content: center;
				font-family: "Oswald", sans-serif;
				font-weight: 700;
				color: var(--white);
				font-size: 14px;
			}
			.footer-brand-name {
				font-family: "Oswald", sans-serif;
				font-weight: normal;
				font-size: 20px;
				color: var(--red);
				letter-spacing: 1px;
			}
			.footer-brand p {
				font-size: 14px;
				line-height: 1.65;
			}
			.footer-links h4 {
				font-family: "Oswald", sans-serif;
				font-size: 14px;
				letter-spacing: 1px;
				text-transform: uppercase;
				color: var(--white);
				margin-bottom: 14px;
			}
			.footer-links ul {
				list-style: none;
				display: flex;
				flex-direction: column;
				gap: 8px;
			}
			.footer-links a {
				color: rgba(255, 255, 255, 0.6);
				text-decoration: none;
				font-size: 14px;
				transition: color 0.2s;
			}
			.footer-links a:hover {
				color: var(--orange);
			}
			.footer-bottom {
				border-top: 1px solid rgba(255, 255, 255, 0.1);
				padding-top: 20px;
				display: flex;
				justify-content: space-between;
				align-items: center;
				flex-wrap: wrap;
				gap: 12px;
				font-size: 13px;
			}
			.footer-bottom a {
				color: var(--orange);
				text-decoration: none;
			}

			/* ─── FLOATING WA ─── */
			.float-wa {
				position: fixed;
				bottom: 24px;
				right: 24px;
				z-index: 800;
				width: 58px;
				height: 58px;
				border-radius: 50%;
				background: #25d366;
				display: flex;
				align-items: center;
				justify-content: center;
				box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
				text-decoration: none;
				animation: pulse-wa 2.5s ease-in-out infinite;
			}
			.float-wa svg {
				width: 30px;
				height: 30px;
				fill: var(--white);
			}
			@keyframes pulse-wa {
				0%,
				100% {
					box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
				}
				50% {
					box-shadow:
						0 4px 32px rgba(37, 211, 102, 0.8),
						0 0 0 8px rgba(37, 211, 102, 0.15);
				}
			}

			/* ─── RESPONSIVE ─── */
			@media (max-width: 768px) {
				.nav-links {
					display: none;
				}
				.hamburger {
					display: flex;
				}
				.modal-body {
					grid-template-columns: 1fr;
				}
				.modal-img-side {
					padding: 0;
					min-height: 250px;
					border-bottom-left-radius: 0;
				}
				.about-grid {
					grid-template-columns: 1fr;
				}
				.contact-grid {
					grid-template-columns: 1fr;
				}
				.form-row {
					grid-template-columns: 1fr;
				}
				.hero-stats {
					gap: 24px;
				}
				.footer-top {
					flex-direction: column;
				}
			}
			@media (max-width: 480px) {
				.eq-grid {
					grid-template-columns: 1fr;
				}
				.hero-actions {
					flex-direction: column;
					align-items: center;
				}
				.btn-primary,
				.btn-outline {
					width: 100%;
					justify-content: center;
				}
			}

/* Image replacement styles */
.nav-logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.hero-logo-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 28px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); position: relative; background: var(--white); z-index: 10; }
.why-icon-img { width: 48px; height: 48px; margin-bottom: 14px; object-fit: contain; }
.eq-img-tag { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.eq-card:hover .eq-img-tag { transform: scale(1.05); }
#modalImage { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.review-avatar-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.about-icon { width: 24px; height: 24px; flex-shrink: 0; object-fit: contain; }
.contact-icon-img { width: 24px; height: 24px; object-fit: contain; }
.footer-logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--white); }