/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Variables */
:root {
    /* Primary — Singapore Orange */
    --clr-primary: #F97316;
    --clr-primary-light: #fb923c;
    --clr-primary-dark: #ea6c0a;
    --clr-primary-glow: rgba(249, 115, 22, 0.28);

    /* Blue accent (promoted) */
    --clr-blue: #1D4ED8;
    --clr-blue-light: #3b6ef0;
    --clr-red: #B42424;
    --clr-green: #25D366;

    /* Light Theme */
    --bg-dark: #ffffff;
    --bg-surface: #f7f8fa;
    --bg-surface-light: #eef0f3;

    --text-main: #1c1c1e;
    --text-muted: #6b7280;
    --text-dark: #0a0a0c;

    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Inter', sans-serif; 
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 400;
}

.btn {
    font-family: var(--font-body);
    font-weight: 700;
}

.text-gradient {
    font-family: var(--font-accent);
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: normal;
}

.text-gradient-red {
    font-family: var(--font-accent);
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: normal;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 10px 30px -10px var(--clr-primary-glow);
}

.btn-primary:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(180, 36, 36, 0.75);
}

.btn-whatsapp {
    background: #ece5dd;
    color: var(--text-main);
    box-shadow: none;
}

.btn-whatsapp:hover {
    background: #e0d8d0;
    transform: translateY(-3px);
    box-shadow: none;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.hero .btn-whatsapp {
    padding: 14px 26px; /* Approximately 15% smaller */
}

/* btn-red is now an alias for btn-primary */
.btn-red {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 10px 30px -10px var(--clr-primary-glow);
}

.btn-red:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(180, 36, 36, 0.75);
}

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-logo img {
    height: 50px; /* Increased from default */
    width: auto;
    display: block;
}

.nav-logo span {
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-main);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

/* Hamburger active state animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}



/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    background: #ffffff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 55%),
        radial-gradient(circle at bottom left, rgba(29, 78, 216, 0.05), transparent 55%);
    pointer-events: none;
}

/* All direct children of hero sit above the bg overlay */
.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-collage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.collage-item {
    position: absolute;
    width: 55%;
    height: 48%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.95;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Top Left - Behind */
.collage-item-1 {
    top: 0;
    left: 2%;
    transform: rotate(-4deg);
    z-index: 1;
}

/* Top Right - Overlapping */
.collage-item-2 {
    top: 8%;
    right: 0;
    transform: rotate(3deg);
    z-index: 2;
}

/* Bottom Left - Overlapping */
.collage-item-3 {
    bottom: 15%;
    left: 0;
    transform: rotate(-3deg);
    z-index: 3;
}

/* Bottom Right - Front */
.collage-item-4 {
    bottom: 8%;
    right: 5%;
    transform: rotate(5deg);
    z-index: 4;
}

.collage-item:hover {
    transform: scale(1.05) translateY(-10px) rotate(0deg);
    z-index: 10;
    border-color: var(--clr-primary);
    opacity: 1;
}

.collage-item:hover img {
    transform: scale(1.1);
}



/* Services Marquee Section */
.services-marquee-section {
    padding: 80px 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.marquee-header {
    text-align: center;
    margin-bottom: 40px;
}

.marquee-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.marquee-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.marquee-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
    cursor: grab;
    scroll-behavior: auto;
}

.marquee-container::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.marquee-container:active {
    cursor: grabbing;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-surface), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-surface), transparent);
}

.marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    padding: 20px 32px;
}

.marquee-card {
    width: 300px;
    min-width: 300px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-card:hover img {
    transform: scale(1.1);
}

.marquee-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.95), transparent);
}

.marquee-card-overlay .marquee-card-title {
    margin: 0;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
}

/* USPs Section — Accordion */
.usps {
    padding: 52px 0;
    background: var(--bg-surface);
}

.usp-accordion {
    max-width: 760px;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ── Each row ── */
.acc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.acc-item:last-child {
    border-bottom: none;
}

/* Open state: left orange bar */
.acc-item.acc-open {
    border-left: 4px solid var(--clr-primary);
}

.acc-item.acc-open .acc-header {
    background: rgba(249, 115, 22, 0.06);
    color: var(--clr-primary);
}

/* ── Header row (always visible) ── */
.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    transition: background 0.25s, color 0.25s;
}

.acc-header:hover {
    background: rgba(249, 115, 22, 0.05);
    color: var(--clr-primary);
}

.acc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--clr-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.acc-title {
    flex: 1;
}

.acc-chevron {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.acc-item.acc-open .acc-chevron {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

/* ── Body (collapsible) ── */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 24px 0 80px;
}

.acc-item.acc-open .acc-body {
    max-height: 200px;
    padding: 0 24px 20px 80px;
}

.acc-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlight-green {
    color: var(--clr-green);
    font-weight: 700;
}



/* Page Header (About & Blog) */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(180, 36, 36, 0.06) 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.page-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 24px;
}

/* Blog/post pages — dark red gradient header */
.page-header-dark {
    background: linear-gradient(135deg, var(--clr-primary) 0%, #B91C1C 100%) !important;
    color: white !important;
    border-bottom: none !important;
}
.page-header-dark h1,
.page-header-dark p,
.page-header-dark span {
    color: white !important;
}

/* About Section */
.about-section {
    padding: 80px 0 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: var(--clr-primary);
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.mission-vision-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border-left: 4px solid var(--clr-primary);
    box-shadow: var(--shadow-sm);
}

.mv-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-muted);
}

.mv-card:last-child {
    border-left-color: var(--clr-green);
}

/* Blogs Section */
.blog-section {
    padding: 80px 0 120px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(180, 36, 36, 0.2);
}

.blog-img {
    height: 240px;
    background-color: var(--bg-surface-light);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 32px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-category {
    background: rgba(180, 36, 36, 0.18);
    color: #f09090;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.read-more:hover {
    gap: 12px;
}

/* Footer */
.footer {
    background: var(--bg-surface);
    padding: 100px 0 40px;
    border-top: 1px solid #e2e8f0;
}

.footer,
.footer p,
.footer a,
.footer li,
.footer h4 {
    color: var(--text-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 24px 0;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(29, 78, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-blue);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--clr-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.footer-links h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a,
.footer-links li {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links i {
    color: var(--clr-primary-light);
    width: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--clr-blue) 0%, #1a3fb5 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(29, 78, 216, 0.35);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

/* 'instantly' readable on red background */
.cta-title .text-gradient {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-large {
    padding: 20px 36px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none;
}



/* ── CTA Button 2: Call — White with red text ── */
.cta-card .btn-primary {
    background: #ffffff;
    color: var(--clr-primary);
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-primary:hover {
    background: #f5f5f5;
    color: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* ── CTA Button 3: Email — Transparent outline ── */
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}


/* ─── Lead Capture Form Section — Card on Red ────────────── */
.lead-form-section {
    padding: 48px 0;
    background: var(--clr-primary);
    background-image:
        radial-gradient(circle at top right, rgba(0, 0, 0, 0.15), transparent 60%),
        radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.10), transparent 60%);
    position: relative;
}

.lead-form-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 40px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

/* Subtle red top accent line on the card */
.lead-form-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-primary);
}

.lead-form-title {
    font-size: 1.45rem;
    color: var(--clr-primary);
    margin-bottom: 18px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Service type row */
.form-service-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 14px;
}

.form-service-row span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.radio-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
}

.radio-inline input[type="radio"] {
    accent-color: var(--clr-primary);
    width: 15px;
    height: 15px;
}

/* Main fields inline row */
.form-inline-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: nowrap;
    margin-bottom: 14px;
}

.form-inline-row input {
    flex: 1;
    padding: 11px 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-main);
    background: #fff;
    outline: none;
    min-width: 0;
    transition: border-color 0.2s;
}

.form-inline-row input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(180, 36, 36, 0.07);
}

.form-inline-row input::placeholder {
    color: #adb5bd;
    font-size: 0.85rem;
}

.form-inline-btn {
    padding: 11px 24px;
    background: var(--clr-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.form-inline-btn:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(180, 36, 36, 0.3);
}

/* Single consent line */
.consent-inline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.consent-inline input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--clr-primary);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.consent-inline label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Success state */
.form-success {
    display: none;
    padding: 24px;
    text-align: center;
}

.form-success i {
    font-size: 2.5rem;
    color: #1a9e4e;
    margin-bottom: 12px;
}

.form-success h4 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile: stack fields vertically */
@media (max-width: 900px) {
    .form-inline-row {
        flex-wrap: wrap;
    }

    .form-inline-row input {
        flex: 1 1 calc(50% - 5px);
    }

    .form-inline-btn {
        width: 100%;
    }

    .lead-form-inner {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .form-inline-row input {
        flex: 1 1 100%;
    }
}



@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(0.95);
    }

    100% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Tablet ──────────────────────────────────────────────── */
@media (max-width: 992px) {

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .usp-card {
        max-width: calc(50% - 16px);
    }

    /* Slightly tighten USP icons on tablet */
    .usp-icon {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
}

/* ─── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* ── Nav ── */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        /* Adaptive Glassmorphism Background */
        background: rgba(10, 10, 12, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }

    .nav-links li a {
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 600;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5); /* Ensure text is always legible */
    }

    .nav-cta {
        display: none; /* Hide the big CTA from header in mobile if it conflicts with space, or keep it but scale */
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* ── Hero ── */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.7rem);
        text-align: center;
        letter-spacing: -0.5px;
        word-wrap: break-word;
    }

    .hero-content p {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 28px;
        line-height: 1.6;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Hide the hero collage on mobile — it overlaps and wastes space */
    .hero-image {
        display: none;
    }

    /* ── Badge pill above hero ── */
    .hero-content>div:first-child {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* ── Marquee Section ── */
    .services-marquee-section {
        padding: 48px 0;
    }

    .marquee-header h2 {
        font-size: 1.5rem;
    }

    /* ── USP Section ── */
    .usps {
        padding: 60px 0;
    }

    .usp-grid {
        gap: 16px;
    }

    .usp-card {
        max-width: 100%;
        padding: 24px;
        flex: 1 1 100%;
    }

    /* Dramatically reduce the oversized icon */
    .usp-icon {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .usp-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .usp-card h3 span {
        font-size: 1.4rem;
    }

    .usp-card p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    /* ── Section titles ── */
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
        margin: 0 auto 36px;
    }

    /* ── CTA Section ── */
    .cta-card {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        margin-top: 28px;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* ── Footer ── */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* ── Page Header (About/Blog) ── */
    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    /* ── About Section ── */
    .about-section {
        padding: 40px 0 60px;
    }

    .about-grid {
        gap: 32px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .mv-card {
        padding: 24px;
    }

    /* ── Blog ── */
    .blog-section {
        padding: 40px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* ── Collage hover border ── */
    .collage-item:hover {
        border-color: var(--clr-blue);
    }
}
/* --- RESTORED CSS FROM HTML --- */
        /* ── Stats Counter Bar ── */
        .stats-bar {
            display: flex;
            gap: 24px;
            margin-top: 40px;
            flex-wrap: nowrap;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.06));
            border: 1px solid rgba(249,115,22,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--clr-primary);
            font-size: 1.2rem;
        }


        .stat-number {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--clr-primary);
            line-height: 1;
            font-family: var(--font-body);
        }

        .stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 3px;
        }

        .stat-divider {
            width: 1px;
            height: 44px;
            background: rgba(0,0,0,0.1);
            align-self: center;
        }

        /* ── Testimonials Section ── */
        .testimonials-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .testimonials-lead {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 56px;
            line-height: 1.7;
        }

        .testimonials-lead strong {
            color: var(--clr-blue);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 0;
        }

        @media (max-width: 900px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 580px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        .testimonial-card {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-left: 4px solid var(--clr-primary);
            border-radius: 16px;
            padding: 28px 28px 24px;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-left-color: var(--clr-blue);
        }

        .testimonial-stars {
            color: #F97316;
            font-size: 0.95rem;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }

        .testimonial-quote {
            font-size: 0.97rem;
            color: var(--text-main);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 2.5rem;
            color: var(--clr-primary);
            line-height: 0;
            vertical-align: -0.6rem;
            margin-right: 4px;
            font-style: normal;
            opacity: 0.5;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--clr-primary), var(--clr-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-main);
        }

        .testimonial-location {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ── How It Works — WhatsApp Style ── */
        .hiw-wa-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        @media (max-width: 768px) {
            .hiw-wa-steps {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        .hiw-wa-step {
            background: #fff;
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.07);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .hiw-wa-step:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(249,115,22,0.2);
        }

        .hiw-wa-step-num {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 32px;
            height: 32px;
            background: var(--clr-primary);
            color: white;
            border-radius: 50%;
            font-size: 0.85rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(249,115,22,0.35);
        }

        .hiw-wa-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .hiw-wa-step:nth-child(1) .hiw-wa-icon {
            background: rgba(37, 211, 102, 0.1);
            color: #25D366;
        }

        .hiw-wa-step:nth-child(2) .hiw-wa-icon {
            background: rgba(29, 78, 216, 0.1);
            color: var(--clr-blue);
        }

        .hiw-wa-step:nth-child(3) .hiw-wa-icon {
            background: rgba(249, 115, 22, 0.1);
            color: var(--clr-primary);
        }

        .hiw-wa-step h3 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            font-family: var(--font-body);
            font-weight: 700;
            color: var(--text-main);
        }

        .hiw-wa-step p {
            color: var(--text-muted);
            font-size: 0.93rem;
            line-height: 1.6;
        }

        .hiw-wa-number-highlight {
            color: var(--clr-primary);
            font-weight: 700;
        }

        .hiw-wa-cta {
            text-align: center;
            margin-top: 48px;
        }

        /* ── Testimonials Marquee (Horizontal Auto-Scroll) ── */
        .testimonials-marquee-container {
            display: flex;
            overflow-x: auto;
            overflow-y: hidden;
            position: relative;
            width: 100%;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            scroll-behavior: auto;
        }

        .testimonials-marquee-container::-webkit-scrollbar {
            display: none;
        }

        .testimonials-marquee-container:active {
            cursor: grabbing;
        }

        .testimonials-marquee-container::before,
        .testimonials-marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .testimonials-marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #ffffff, transparent);
        }

        .testimonials-marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #ffffff, transparent);
        }

        .testimonials-marquee-track {
            display: flex;
            gap: 28px;
            width: max-content;
            padding: 20px 32px;
        }

        .testimonial-card {
            width: 360px;
            min-width: 360px;
            white-space: normal;
        }

@media (max-width: 768px) {
    .testimonial-card, .review-card {
        width: 280px !important;
        min-width: 280px !important;
        padding: 20px !important;
    }

    .hiw-wa-cta .btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 0.95rem !important;
        white-space: normal;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    /* ── Hero Centering ── */
    .hero-badge, .hero-content > div:first-child {
        margin: 0 auto 16px !important;
        width: fit-content;
        order: 1;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        order: 2;
    }
    .hero-content p {
        text-align: center;
        order: 3;
    }
    .stats-bar {
        order: 4;
        margin-bottom: 24px;
    }
    .hero-actions {
        order: 5;
    }
    
    .hero-image {
        display: none !important;
    }

    /* ── Stats Bar Overhaul for Mobile ── */
    .stats-bar {
        flex-direction: row; /* Keep stats in one row on mobile */
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px; /* Tighter gap */
        align-items: flex-start;
        margin-top: 32px;
        width: 100%;
        padding: 0 5px;
    }
    .stat-divider {
        display: none !important; /* Remove vertical pipe dividers */
    }
    .hide-mobile-divider {
        display: none !important;
    }
    .stat-item {
        width: 32%; /* 3 items side by side */
        flex-direction: column; /* Icon above text */
        justify-content: flex-start;
        background: rgba(249, 115, 22, 0.04);
        padding: 10px 4px;
        border-radius: 8px;
        border: 1px solid rgba(249, 115, 22, 0.1);
        text-align: center;
        gap: 6px;
    }
    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin: 0 auto;
    }
    .stat-text.text-left {
        text-align: center; /* Center the text inside the column */
        width: 100%;
    }
    .stat-number {
        font-size: 1.2rem; /* Much smaller font to fit mobile screens */
    }
    .stat-label {
        font-size: 0.65rem; /* Super tiny label */
        white-space: normal;
        line-height: 1.2;
    }
}

.hero-centered {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
