/* =========================================
   LABOURSCART – GLOBAL STYLES
   Color Palette from Brand Guidelines
   Primary Green: #7BC043
   Dark Green: #4E7C2F
   Light Green: #CFE8A9
   White: #FFFFFF
   Dark Grey: #2F2F2F
   Light Grey: #F2F2F2
   ========================================= */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7BC043;
    --primary-dark: #4E7C2F;
    --primary-light: #CFE8A9;
    --primary-lighter: #e8f5d6;
    --white: #FFFFFF;
    --dark: #2F2F2F;
    --grey: #F2F2F2;
    --grey-border: #E5E5E5;
    --grey-text: #6B7280;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 4px 20px rgba(123, 192, 67, 0.15);
    --shadow-green-lg: 0 8px 40px rgba(123, 192, 67, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--primary-dark);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--primary-dark);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--dark);
}

h4 {
    font-size: 1.1rem;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    position: relative;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-md {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* --- Section Badges --- */
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-lighter);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-badge-white {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ========================================= 
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    height: 44px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background: var(--primary-lighter);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================= 
   HERO
   ========================================= */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--white) 0%, var(--primary-lighter) 40%, var(--white) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-dark);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 40%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--primary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--grey-text);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-illustration {
    width: 280px;
    height: 280px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green-lg);
    border: 4px solid var(--primary-light);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 40px rgba(123, 192, 67, 0.2);
    }

    50% {
        box-shadow: 0 8px 60px rgba(123, 192, 67, 0.35);
    }
}

.hero-illustration-img {
    width: 160px;
    height: auto;
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid var(--grey);
    animation: card-float 6s ease-in-out infinite;
    z-index: 2;
}

.hero-card-icon {
    font-size: 1.5rem;
}

.hero-card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: 5%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes card-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ========================================= 
   TRUST BAR
   ========================================= */
.trust-bar {
    padding: 32px 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey);
    position: relative;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.trust-text span {
    font-size: 0.82rem;
    color: var(--grey-text);
}

/* ========================================= 
   SECTIONS COMMON
   ========================================= */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--grey-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ========================================= 
   SERVICES GRID
   ========================================= */
.services-section {
    background: var(--grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--grey-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
    border-color: var(--primary-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--grey-text);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-card-highlight {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%);
    border-color: var(--primary-light);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

/* ========================================= 
   HOW IT WORKS
   ========================================= */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    max-width: 240px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
    border-color: var(--primary-light);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card:hover .step-number {
    color: var(--primary);
}

.step-icon {
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.step-card p {
    color: var(--grey-text);
    font-size: 0.88rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

/* ========================================= 
   MAID HIRING SECTION
   ========================================= */
.maid-section {
    background: linear-gradient(135deg, #7BC043 0%, #4E7C2F 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.maid-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.maid-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.maid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.maid-title {
    color: var(--white);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.maid-title span {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 6px;
}

.maid-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.maid-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.maid-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.maid-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.maid-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px 36px;
    text-align: center;
    width: 220px;
    transition: var(--transition);
}

.maid-stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.maid-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.maid-stat-label {
    font-size: 0.88rem;
    opacity: 0.85;
}

.maid-stat-1 {
    align-self: flex-start;
}

.maid-stat-2 {
    align-self: flex-end;
}

.maid-stat-3 {
    align-self: flex-start;
}

/* ========================================= 
   INDUSTRIES
   ========================================= */
.industries-section {
    background: var(--grey);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--grey-border);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
    border-color: var(--primary-light);
}

.industry-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.industry-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

/* ========================================= 
   WHY SECTION
   ========================================= */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
    border-color: var(--primary-light);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-card:hover .why-icon svg {
    stroke: var(--white);
}

.why-card h3 {
    margin-bottom: 8px;
}

.why-card p {
    color: var(--grey-text);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========================================= 
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7BC043 0%, #4E7C2F 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-inner h2 span {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 6px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================= 
   FOOTER
   ========================================= */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    height: 48px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

/* ========================================= 
   ANIMATIONS
   ========================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================= 
   PAGE BANNER (shared for inner pages)
   ========================================= */
.page-banner {
    padding: 140px 0 60px;
    background: linear-gradient(165deg, var(--white) 0%, var(--primary-lighter) 50%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(123, 192, 67, 0.08);
    border-radius: 50%;
}

.page-banner h1 {
    margin-bottom: 16px;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--grey-text);
    font-size: 0.92rem;
}

.page-banner .breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.page-banner .breadcrumb a:hover {
    color: var(--primary-dark);
}

.page-banner p {
    color: var(--grey-text);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================= 
   SERVICES PAGE
   ========================================= */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-green-lg);
    border-color: var(--primary-light);
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background: var(--primary);
    transform: scale(1.05);
}

.service-detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-detail-card p {
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-card .btn {
    width: 100%;
    justify-content: center;
}

/* ========================================= 
   CITIES / MAP PAGE
   ========================================= */
.map-section {
    padding: 60px 0;
}

.india-map-container {
    position: relative;
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
    text-align: center;
}

.india-map-dark {
    background: linear-gradient(145deg, #0a1a08 0%, #132a0f 40%, #0d200a 100%);
    border: 1px solid rgba(123, 192, 67, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px 40px 30px;
    margin-bottom: 48px;
    text-align: center;
    box-shadow: 0 0 60px rgba(123, 192, 67, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.india-map-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 192, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.india-map-dark::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(123, 192, 67, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.india-map-dark h2 {
    color: #B8E986;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.india-map-dark>p {
    color: rgba(184, 233, 134, 0.5);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.india-map-dark svg {
    max-width: 580px;
    margin: 0 auto;
    display: block;
}

/* State paths hover effects */
.state-path {
    transition: all 0.3s ease;
    cursor: pointer;
}

.state-path:hover {
    fill: rgba(123, 192, 67, 0.15);
    stroke: #B8E986;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(123, 192, 67, 0.3));
}

/* Map city markers interaction */
.map-city {
    cursor: pointer;
    transition: transform 0.25s ease;
}

.map-city:hover {
    transform: scale(1.3);
}

.map-city:hover text {
    font-weight: 700 !important;
    fill: #fff !important;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.city-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-weight: 500;
}

.city-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.city-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.city-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
}

/* ========================================= 
   ABOUT PAGE
   ========================================= */
.about-content {
    padding: 60px 0 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    color: var(--grey-text);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-display {
    width: 260px;
    height: 260px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green-lg);
    border: 4px solid var(--primary-light);
}

.about-logo-display img {
    width: 160px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.mv-card {
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--primary-light);
}

.mv-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.mv-card p {
    color: var(--dark);
    line-height: 1.7;
}

/* ========================================= 
   WORKER PAGE
   ========================================= */
.worker-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.worker-benefit-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.worker-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
    border-color: var(--primary-light);
}

.worker-benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.worker-benefit-card h3 {
    margin-bottom: 8px;
}

.worker-benefit-card p {
    color: var(--grey-text);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========================================= 
   CONTACT PAGE
   ========================================= */
.contact-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 192, 67, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-green);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card h4 {
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--grey-text);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-map {
    margin-top: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--grey-border);
    height: 250px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================= 
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .maid-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        z-index: 9998;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            visibility 0.3s ease;
        z-index: 9999;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        font-size: 1.3rem;
        padding: 14px 32px;
        border-radius: var(--radius-md);
        color: var(--dark);
        font-weight: 500;
        transition: all 0.25s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-lighter);
        color: var(--primary-dark);
        transform: scale(1.02);
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 10000;
    }

    .hamburger.active span {
        background: var(--dark);
    }

    .header-actions .btn {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .india-map-dark {
        padding: 30px 20px 20px;
    }

    .india-map-dark h2 {
        font-size: 1.2rem;
    }

    .india-map-dark>p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .india-map-dark {
        padding: 20px 12px 16px;
    }

    .india-map-dark h2 {
        font-size: 1rem;
    }

    .india-map-dark>p {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0;
    animation: whatsappBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 72px;
    background: #fff;
    color: #2F2F2F;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
    border-right: none;
}

.whatsapp-float-btn:hover+.whatsapp-float-tooltip,
.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes whatsappBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(40px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn {
        width: 54px;
        height: 54px;
    }

    .whatsapp-float-btn svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float-tooltip {
        display: none;
    }
}