/*
 * theme-revamp.css
 * Nova Lift Cargo — Full Site Revamp
 * Drop into root alongside style.css; loaded last so it wins.
 * ---------------------------------------------------------------
 * Fonts:  Barlow Condensed (headings) | DM Sans (body)
 * Palette:
 *   --navy  : #00044b  (primary authority)
 *   --navy2 : #00063d  (darker shade)
 *   --gold  : #C9A84C  (trust accent)
 *   --gold2 : #e6c56a  (lighter gold hover)
 *   --white : #ffffff
 *   --off   : #f4f6fb  (section bg)
 *   --slate : #64748b  (body text secondary)
 *   --dark  : #0d1117  (footer)
 * ---------------------------------------------------------------
 */

/* ================================================================
   0. CSS VARIABLES & BASE RESET
   ================================================================ */
:root {
	--navy  : #00044b;
	--navy2 : #00063d;
	--gold  : #C9A84C;
	--gold2 : #e6c56a;
	--white : #ffffff;
	--off   : #f4f6fb;
	--slate : #64748b;
	--dark  : #0c0f2e;
	--red   : #ea1e00;

	--font-head : 'Barlow Condensed', sans-serif;
	--font-body : 'DM Sans', sans-serif;

	--radius : 6px;
	--shadow : 0 4px 24px rgba(0,4,75,0.10);
	--shadow-lg : 0 12px 48px rgba(0,4,75,0.18);
	--transition: all 0.28s ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	font-size: 16px;
	color: #1a1e3c;
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

/* Section titles — global override */
.ft-section-title .sub-title {
	font-family: var(--font-head);
	font-size: 13px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold);
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
}

.ft-section-title h2 {
	font-family: var(--font-head);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: var(--navy);
	line-height: 1.1;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
}

.ft-section-title p,
.pera-content p {
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--slate);
	line-height: 1.75;
}

/* ================================================================
   1. PRELOADER
   ================================================================ */
#nlc-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

#nlc-preloader.nlc-preloader--done {
	opacity: 0;
	visibility: hidden;
}

.nlc-preloader-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.nlc-preloader-inner img {
	width: 120px;
	height: 120px;
	object-fit: contain;
}

.nlc-preloader-text {
	font-family: var(--font-head);
	font-size: 13px;
	letter-spacing: 4px;
	color: rgba(255,255,255,0.5);
	margin: 0;
}

.nlc-preloader-bar {
	width: 200px;
	height: 2px;
	background: rgba(255,255,255,0.12);
	border-radius: 2px;
	overflow: hidden;
}

.nlc-preloader-bar span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--gold), var(--gold2));
	animation: nlcLoad 2.2s ease forwards;
}

@keyframes nlcLoad {
	0%   { width: 0%; }
	60%  { width: 75%; }
	100% { width: 100%; }
}

/* ================================================================
   2. TOP BAR
   ================================================================ */
.nlc-topbar {
	background: var(--navy2);
	padding: 9px 0;
	border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nlc-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.nlc-topbar-left,
.nlc-topbar-right {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nlc-topbar-left span,
.nlc-topbar-right span {
	font-family: var(--font-body);
	font-size: 12.5px;
	color: rgba(255,255,255,0.7);
	display: flex;
	align-items: center;
	gap: 6px;
}

.nlc-topbar-left i,
.nlc-topbar-right i {
	color: var(--gold);
	font-size: 12px;
}

.nlc-trust-badge {
	color: rgba(255,255,255,0.7) !important;
	font-size: 12px !important;
	font-weight: 500;
}

/* ================================================================
   3. MAIN HEADER
   ================================================================ */

/* hide the original header entirely */
#ft-header.ft-header-section:not(.nlc-header) {
	display: none !important;
}

.nlc-header {
	position: sticky;
	top: 0;
	z-index: 9990;
	background: var(--white);
	border-bottom: 1px solid rgba(0,4,75,0.08);
	transition: box-shadow 0.3s ease;
}

.nlc-header--scrolled {
	box-shadow: 0 2px 20px rgba(0,4,75,0.12);
}

.nlc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	gap: 20px;
}

/* Logo */
.nlc-logo img {
	height: 58px;
	width: auto;
	display: block;
	transition: opacity 0.2s;
}
.nlc-logo img:hover { opacity: 0.85; }

/* Nav */
.nlc-nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.nlc-nav-link {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--navy) !important;
	text-decoration: none !important;
	padding: 8px 14px;
	border-radius: var(--radius);
	position: relative;
	transition: var(--transition);
	letter-spacing: 0.2px;
}

.nlc-nav-link::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 14px;
	right: 14px;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform 0.25s ease;
	transform-origin: left;
}

.nlc-nav-link:hover,
.nlc-nav-link--active {
	color: var(--navy) !important;
	background: rgba(0,4,75,0.05);
}

.nlc-nav-link:hover::after,
.nlc-nav-link--active::after {
	transform: scaleX(1);
}

/* Header CTA cluster */
.nlc-header-cta {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nlc-phone-cta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
}

.nlc-phone-cta i {
	font-size: 22px;
	color: var(--gold);
}

.nlc-phone-cta div {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.nlc-phone-cta span {
	font-size: 11px;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nlc-phone-cta strong {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
}

/* Track button */
.nlc-track-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--navy);
	color: var(--white) !important;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none !important;
	padding: 12px 24px;
	border-radius: var(--radius);
	transition: var(--transition);
	border: 2px solid var(--navy);
	white-space: nowrap;
}

.nlc-track-btn i { font-size: 14px; }

.nlc-track-btn:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy) !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.nlc-track-btn--full {
	width: 100%;
	justify-content: center;
	margin-top: 16px;
}

/* Hamburger */
.nlc-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
	margin-right: -8px;
}

.nlc-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: var(--transition);
}

.nlc-hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nlc-hamburger--active span:nth-child(2) { opacity: 0; }
.nlc-hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nlc-mobile-menu {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100vh;
	background: var(--white);
	z-index: 99995;
	padding: 24px;
	overflow-y: auto;
	transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
	box-shadow: -4px 0 30px rgba(0,4,75,0.15);
}

.nlc-mobile-menu--open { right: 0; }

.nlc-mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0,4,75,0.1);
}

.nlc-mobile-close {
	background: none;
	border: none;
	font-size: 22px;
	color: var(--navy);
	cursor: pointer;
	padding: 4px;
}

.nlc-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlc-mobile-menu ul li a {
	display: block;
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	text-decoration: none;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0,4,75,0.07);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: color 0.2s;
}

.nlc-mobile-menu ul li a:hover { color: var(--gold); }

.nlc-mobile-contact {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,4,75,0.08);
}

.nlc-mobile-contact p {
	font-size: 14px;
	color: var(--slate);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nlc-mobile-contact i { color: var(--gold); }

/* Overlay */
.nlc-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,4,75,0.5);
	z-index: 99990;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	backdrop-filter: blur(2px);
}

.nlc-overlay--visible {
	opacity: 1;
	visibility: visible;
}

/* ================================================================
   4. BOOKING / TRACKING FORM
   ================================================================ */
#ft-booking-form,
.ft-booking-form-section {
	background: var(--navy);
	padding: 0;
	margin-top: -2px;
}

.ft-booking-form-content {
	background: var(--gold);
	border-radius: 0;
	padding: 0;
}

/* Restyle the form bar itself */
.ft-booking-form-section .booking-form-input-wrapper {
	background: var(--navy);
	padding: 24px 32px;
	gap: 0;
	align-items: stretch;
	border-top: 4px solid var(--gold);
}

.ft-booking-form-section .booking-form-input {
	flex: 1;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.18);
	border-right: none;
	border-radius: var(--radius) 0 0 var(--radius);
	padding: 0 20px 0 52px;
	height: 58px;
	margin: 0;
}

.ft-booking-form-section .booking-form-icon {
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	color: var(--gold);
	font-size: 20px;
}

.ft-booking-form-section .booking-form-input input {
	background: transparent;
	border: none;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 15px;
	height: 100%;
	width: 100%;
	padding: 0;
}

.ft-booking-form-section .booking-form-input input::placeholder { color: rgba(255,255,255,0.45); }

.ft-booking-form-section .ft-sb-button {
	background: var(--gold);
	color: var(--navy);
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border: 2px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 0 36px;
	height: 58px;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}

.ft-booking-form-section .ft-sb-button:hover {
	background: var(--gold2);
	border-color: var(--gold2);
	transform: translateY(-1px);
}

/* ================================================================
   5. ABOUT SECTION
   ================================================================ */
.ft-about-section {
	padding: 100px 0;
	background: var(--white);
}

.ft-about-exp-area {
	background: var(--navy);
	border: 3px solid var(--gold);
	border-radius: var(--radius);
	padding: 24px 20px;
	width: 200px;
	bottom: -20px;
	left: 20px;
}

.ft-about-exp-img img { opacity: 0.1; }

.ft-about-exp-text h3 {
	font-family: var(--font-head);
	font-size: 36px;
	font-weight: 800;
	color: var(--white);
	margin: 0;
	line-height: 1;
}

.ft-about-exp-text h3 b { color: var(--gold); }

.ft-about-exp-text p {
	font-size: 12px;
	color: rgba(255,255,255,0.65);
	margin-top: 6px;
}

.ft-about-feature-icon {
	width: 56px;
	height: 56px;
	background: rgba(0,4,75,0.07);
	border-radius: 50%;
	flex-shrink: 0;
	margin-right: 16px;
	transition: var(--transition);
}

.ft-about-feature-icon i {
	font-size: 24px;
	color: var(--navy);
}

.ft-about-feature-list-item:hover .ft-about-feature-icon {
	background: var(--navy);
}
.ft-about-feature-list-item:hover .ft-about-feature-icon i {
	color: var(--gold);
}

.ft-about-feature-text h3 {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 4px;
}

.ft-about-feature-list-item {
	margin-bottom: 24px;
	padding: 16px;
	border-radius: var(--radius);
	transition: var(--transition);
}
.ft-about-feature-list-item:hover {
	background: var(--off);
}

/* ================================================================
   6. BUTTONS (site-wide .ft-btn)
   ================================================================ */
.ft-btn a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	background: var(--navy) !important;
	color: var(--white) !important;
	border: 2px solid var(--navy) !important;
	border-radius: var(--radius) !important;
	padding: 13px 30px !important;
	transition: var(--transition) !important;
	min-height: 50px;
}

.ft-btn a:hover {
	background: var(--gold) !important;
	border-color: var(--gold) !important;
	color: var(--navy) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(201,168,76,0.35) !important;
}

/* ================================================================
   7. SERVICES SECTION
   ================================================================ */
.ft-service-section {
	padding: 100px 0;
	background: var(--off);
}

.ft-service-text-area .ft-section-title h2 {
	color: var(--navy);
}

.ft-service-slider-item {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--shadow);
	transition: var(--transition);
	margin: 8px;
}

.ft-service-slider-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.ft-service-inner-text {
	padding: 24px 24px 20px;
}

.ft-service-inner-text h3 a {
	font-family: var(--font-head) !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	color: var(--navy) !important;
	text-decoration: none !important;
	transition: color 0.2s;
}
.ft-service-inner-text h3 a:hover { color: var(--gold) !important; }

.ft-service-serial {
	font-family: var(--font-head);
	font-size: 60px;
	font-weight: 800;
	color: rgba(0,4,75,0.06);
	bottom: 12px;
	right: 16px;
	line-height: 1;
}

.service-more {
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gold) !important;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 12px;
	transition: gap 0.2s;
}
.service-more:hover { gap: 8px; }

/* ================================================================
   8. COUNTER SECTION
   ================================================================ */
.ft-counterup-section {
	background: var(--navy);
	padding: 70px 0;
	position: relative;
}

.ft-counterup-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ft-counterup-innerbox {
	padding: 24px 0;
	position: relative;
	z-index: 1;
}

.ft-counterup-innerbox::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(201,168,76,0.25);
}

.col-lg-3:last-child .ft-counterup-innerbox::after { display: none; }

.ft-counterup-icon {
	width: 64px;
	height: 64px;
	background: rgba(201,168,76,0.12);
	border: 1px solid rgba(201,168,76,0.3);
	border-radius: 50%;
	margin-right: 18px;
	flex-shrink: 0;
}

.ft-counterup-icon i {
	font-size: 26px;
	color: var(--gold);
}

.ft-counterup-text h3 {
	font-family: var(--font-head);
	font-size: 42px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 4px;
	line-height: 1;
}

.ft-counterup-text h3 b { color: var(--gold); }

.ft-counterup-text p {
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0;
}

/* ================================================================
   9. WHY CHOOSE SECTION
   ================================================================ */
.ft-why-choose-section {
	padding: 100px 0;
	background-size: cover;
	background-position: center;
	position: relative;
}

.ft-why-choose-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.96) 40%);
}

.ft-why-choose-text-area {
	position: relative;
	z-index: 2;
}

.ft-why-choose-feature-item {
	margin-bottom: 24px;
	padding: 20px;
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.ft-why-choose-feature-item:hover {
	transform: translateX(6px);
	box-shadow: var(--shadow-lg);
}

.ft-why-choose-feature-icon {
	width: 52px;
	height: 52px;
	background: var(--navy);
	border-radius: 50%;
	margin-right: 16px;
	flex-shrink: 0;
	transition: var(--transition);
}

.ft-why-choose-feature-icon i {
	font-size: 22px;
	color: var(--gold);
}

.ft-why-choose-feature-item:hover .ft-why-choose-feature-icon {
	background: var(--gold);
}
.ft-why-choose-feature-item:hover .ft-why-choose-feature-icon i {
	color: var(--navy);
}

.ft-why-choose-feature-text h3 {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 4px;
}

.ft-why-choose-feature-text p {
	font-size: 14px;
	color: var(--slate);
	margin: 0;
}

/* ================================================================
   10. PROJECT / PORTFOLIO SECTION
   ================================================================ */
.ft-project-section { padding: 100px 0; background: var(--off); }

.ft-project-itembox {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.ft-project-itembox:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.ft-project-text {
	padding: 24px;
	background: var(--white);
}

.ft-project-text h3 a {
	font-family: var(--font-head) !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	color: var(--navy) !important;
	text-decoration: none !important;
}

.ft-project-text p {
	font-size: 14px;
	color: var(--slate);
	margin-bottom: 16px;
}

/* ================================================================
   11. BACK TO TOP BUTTON
   ================================================================ */
.scrollup {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--navy) !important;
	color: var(--white) !important;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0,4,75,0.3);
	transition: var(--transition) !important;
	font-size: 14px !important;
}

.scrollup:hover {
	background: var(--gold) !important;
	color: var(--navy) !important;
	transform: translateY(-3px);
}

/* ================================================================
   12. FOOTER
   ================================================================ */

/* Hide the old footer placeholder if it somehow still renders */
.ft-footer-copywrite-1 { display: none; }

.nlc-footer {
	background: var(--dark);
	color: rgba(255,255,255,0.75);
}

.nlc-footer-main {
	padding: 80px 0 60px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.nlc-footer-brand img { display: block; }

.nlc-footer-brand p {
	font-size: 14px;
	line-height: 1.75;
	color: rgba(255,255,255,0.55);
	margin-bottom: 24px;
}

.nlc-footer-socials {
	display: flex;
	gap: 10px;
}

.nlc-footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 50%;
	color: rgba(255,255,255,0.6) !important;
	font-size: 14px;
	text-decoration: none !important;
	transition: var(--transition);
}

.nlc-footer-socials a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy) !important;
	transform: translateY(-3px);
}

/* Footer headings */
.nlc-footer-title {
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gold);
	display: inline-block;
}

/* Footer links */
.nlc-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlc-footer-links li { margin-bottom: 10px; }

.nlc-footer-links a {
	font-size: 14px;
	color: rgba(255,255,255,0.55) !important;
	text-decoration: none !important;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 8px;
}

.nlc-footer-links a i {
	font-size: 10px;
	color: var(--gold);
	transition: transform 0.2s;
}

.nlc-footer-links a:hover {
	color: var(--gold) !important;
	padding-left: 4px;
}

/* Contact list */
.nlc-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlc-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}

.nlc-footer-contact i {
	color: var(--gold);
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* Trust pills */
.nlc-footer-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.nlc-trust-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(201,168,76,0.1);
	border: 1px solid rgba(201,168,76,0.3);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.5px;
}

/* Footer bottom */
.nlc-footer-bottom {
	padding: 20px 0;
	background: rgba(0,0,0,0.2);
}

.nlc-footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: rgba(255,255,255,0.4);
}

.nlc-footer-tagline {
	font-family: var(--font-head);
	letter-spacing: 3px;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--gold) !important;
	opacity: 0.6;
}

/* ================================================================
   13. REVOLUTION SLIDER HERO OVERRIDES
   ================================================================ */
#ft-header + * rs-module-wrap,
rs-module-wrap {
	margin-top: 0 !important;
}

/* Slider button hover overrides */
.rev-btn:hover {
	background-color: var(--gold) !important;
	border-color: var(--gold) !important;
	color: var(--navy) !important;
}

/* ================================================================
   14. RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
	.nlc-phone-cta { display: none; }
	.nlc-topbar-right { display: none; }
}

@media (max-width: 991px) {
	.nlc-nav { display: none; }
	.nlc-hamburger { display: flex; }
	.nlc-track-btn:not(.nlc-track-btn--full) { display: none; }

	.ft-booking-form-section .booking-form-input-wrapper {
		padding: 20px 16px;
		flex-direction: column;
	}

	.ft-booking-form-section .booking-form-input {
		border-right: 1px solid rgba(255,255,255,0.18);
		border-radius: var(--radius);
		width: 100%;
		height: 52px;
	}

	.ft-booking-form-section .ft-sb-button {
		border-radius: var(--radius);
		height: 52px;
		width: 100%;
	}

	.ft-about-section,
	.ft-service-section,
	.ft-why-choose-section,
	.ft-project-section { padding: 70px 0; }

	.ft-why-choose-section::before {
		background: rgba(255,255,255,0.95);
	}
}

@media (max-width: 767px) {
	.nlc-topbar { display: none; }

	.nlc-header-inner { padding: 12px 0; }

	.nlc-logo img { height: 46px; }

	.ft-counterup-innerbox::after { display: none; }

	.nlc-footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.ft-about-section,
	.ft-service-section,
	.ft-why-choose-section,
	.ft-project-section,
	.ft-counterup-section { padding: 56px 0; }
}

@media (max-width: 480px) {
	.ft-section-title h2 { font-size: 28px; }
	.nlc-footer-main { padding: 56px 0 40px; }
}