:root {
    --primary-color: #27ae60;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    /* color: var(--secondary-color); */
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #219653;
}

.btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Ultra-Premium Navbar */
@keyframes navReveal {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    animation: navReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.navbar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
    filter: contrast(1.15) saturate(1.1);
}

.navbar-wrapper.scrolled .logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links li a {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-only {
    display: none;
}

.nav-actions .btn {
    border-radius: 4px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.4s ease;
    z-index: -1;
}

.nav-actions .btn:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.2);
    color: var(--white);
}

.nav-actions .btn:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 10px;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: var(--primary-color);
}

/* Hero Section Redesign */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 40px;
    background: url('../images/hero_crane_car.webp') center/cover no-repeat fixed;
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 55%, rgba(15, 23, 42, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.5);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: none;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.highlight-text {
    background: linear-gradient(135deg, #6ee7b7 0%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.hero-content p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-glass {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: none;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1.1rem;
    box-shadow: none;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.stat-desc {
    font-size: 0.85rem;
    color: #f1f5f9;
    text-shadow: none;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-down a:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Features & Process */
.why-choose-us {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.03) 0%, transparent 60%);
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.pro-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.pro-feature-card {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.pro-feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.pro-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pro-feature-card:hover .pro-icon {
    background: var(--primary-color);
    color: #ffffff;
}

.pro-feature-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.pro-feature-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Sticky Process Section */
.process-section {
    background: #ffffff;
    position: relative;
}

.sticky-process-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}

.sticky-left {
    position: sticky;
    top: 120px;
}

.sticky-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.sticky-card .section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.sticky-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, #cbd5e1 30%, transparent 100%);
}

.process-step {
    position: relative;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -52px;
    top: 0;
    width: 46px;
    height: 46px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    z-index: 2;
}

.step-content {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f8fafc;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 211, 102, 0.2);
}

.step-content h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.35rem;
    font-weight: 700;
}

.step-content p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    position: relative;
    background: url('../images/benefits_bg_v4.webp') center/cover no-repeat fixed;
    color: var(--white);
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.70);
    z-index: 1;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.benefit-card h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Sustainability Section */
.sustainability-section {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-section .section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.sustain-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sustain-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.s-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.s-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.s-feature-item:hover .s-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.s-text h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.s-text p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Visual Stack */
.sustain-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sustain-card-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
}

.s-card {
    position: absolute;
    width: 280px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-card {
    background: rgba(39, 174, 96, 0.95);
    color: white;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.secondary-card {
    background: rgba(44, 62, 80, 0.95);
    color: white;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

.sustain-card-stack:hover .primary-card {
    transform: translateY(-15px) rotate(2deg);
}

.sustain-card-stack:hover .secondary-card {
    transform: translateY(15px) rotate(-2deg);
}

.s-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.s-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.s-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

.s-circle-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px dashed rgba(39, 174, 96, 0.3);
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 991px) {
    .sustain-card-stack {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .s-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 320px;
    }

    .s-circle-decoration {
        display: none;
    }
}

/* Documents Section Redesign */
.documents-section {
    background: #0f172a;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.documents-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.doc-wrapper {
    position: relative;
    z-index: 2;
}

.doc-header {
    text-align: center;
    margin-bottom: 60px;
}

.doc-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.doc-header h2 span {
    color: var(--primary-color);
}

.doc-header p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.modern-doc-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.doc-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.doc-shield {
    background: linear-gradient(145deg, rgba(39, 174, 96, 0.1), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.doc-shield::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.2) 0%, transparent 60%);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.doc-shield i {
    font-size: 5rem;
    color: #4ade80;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.shield-text {
    position: relative;
    z-index: 2;
}

.shield-text h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.shield-text p {
    color: #94a3b8;
    font-size: 1rem;
}

.doc-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.doc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.doc-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(39, 174, 96, 0.3);
}

.doc-item:hover::before {
    transform: scaleY(1);
}

.doc-icon {
    width: 60px;
    height: 60px;
    background: rgba(39, 174, 96, 0.15);
    color: #4ade80;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.doc-item:hover .doc-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.doc-info {
    flex-grow: 1;
}

.doc-info h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.doc-info p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

.doc-check {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.doc-item:hover .doc-check {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.5);
}

@media (max-width: 991px) {
    .modern-doc-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doc-shield {
        padding: 40px 30px;
    }

    .doc-item {
        padding: 15px 20px;
    }
}

/* Contact Section */
.contact-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.detail-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.detail-item p {
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid #cbd5e1;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* About Us Section */
.about-us-section {
    position: relative;
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #15803d 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-align: center;
    border: 5px solid var(--white);
    transform: translate(-40px, -40px);
}

.experience-badge .exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        transform: translate(-20px, -20px);
        padding: 20px;
    }

    .experience-badge .exp-number {
        font-size: 2rem;
    }
}

/* Quote Section Grid */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
}

.quote-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.quote-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.quote-benefits li {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.quote-benefits li i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.whatsapp-contact-box {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: inline-block;
}

.whatsapp-contact-box p {
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color);
}

.modern-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.modern-form h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.col-6 {
    width: 50%;
    padding: 8px;
}

.col-12 {
    width: 100%;
    padding: 8px;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

.btn-submit {
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    border: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2ae06e 0%, #20b85a 100%);
    color: var(--white);
}

@media (max-width: 768px) {
    .col-6 {
        width: 100%;
    }

    .modern-form {
        padding: 30px 20px;
    }
}

.field {
    position: relative;
    width: 100%;
}

.field input,
.field select {
    width: 100%;
    padding: 20px 14px 8px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-weight: 500;
}

.field input:focus,
.field select:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
    transform: translateY(-2px);
}

.field label {
    position: absolute;
    top: 15px;
    left: 16px;
    font-size: 0.95rem;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Floating label effect */
.field input:focus~label,
.field input:not(:placeholder-shown)~label,
.field select:focus~label,
.field select:valid~label {
    top: 4px;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 700;
}

.upload-btn {
    width: 100%;
    padding: 20px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    color: #64748b;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(39, 174, 96, 0.05);
}

.upload-btn i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
    color: inherit;
}

.agreeTerms {
    font-size: 0.95rem;
    color: #64748b;
}

.agreeTerms a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.agreeTerms a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    font-size: 1.2rem;
    padding: 18px;
    font-weight: 800;
    background: #25d366;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-contact-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #e2e8f0;
}

.whatsapp-contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 800;
}

.whatsapp-contact-section p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Fix missing .form-group from previous layout */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(39, 174, 96, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
    background: rgba(39, 174, 96, 0.03);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #64748b;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

/* Inner Page Hero Styles */
.inner-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f172a 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(39, 174, 96, 0.1) 0%, transparent 60%);
}

.inner-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.inner-hero h1 span {
    color: var(--primary-color);
}

.inner-hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Modern Footer */
.modern-footer {
    background: #0f172a;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4ade80 50%, var(--primary-color) 100%);
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
    z-index: 2;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.brand-col .footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links-col a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.links-col a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.links-col a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list li i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-list li h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-list li p, .contact-list li a {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-list li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: #020617;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.95rem;
}

.bottom-content p {
    margin: 0;
}

.bottom-content .tagline {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .pro-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-process-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-left {
        position: static;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 40px 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hamburger {
        display: block;
        z-index: 1000;
        position: relative;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--secondary-color);
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .pro-feature-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid, .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .inner-hero h1 {
        font-size: 2rem;
    }
    .section-padding {
        padding: 40px 0;
    }
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.floating-btn:hover::before {
    transform: translateY(0);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.float-call {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.float-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Team Section */
.team-section {
    background-color: var(--light-bg);
}

.team-section .section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #4ade80);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-image-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    border: 3px solid rgba(39, 174, 96, 0.2);
    transition: all 0.4s ease;
}

.team-card:hover .team-avatar {
    background: var(--primary-color);
    color: var(--white);
    border-color: rgba(39, 174, 96, 0.5);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
    transform: rotate(5deg) scale(1.05);
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.team-info .designation {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.team-bio {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 15px;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.team-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}
