/* ==========================================================================
   WAY TO WEB PVT LTD - ENTERPRISE IT COMPANY HOMEPAGE STYLES
   Colors: Emerald Green (#008444 / #00c853) & Royal Purple (#3e2b85 / #6366f1)
   ========================================================================== */

:root {
    /* Brand Colors */
    --green-main: #008444;
    --green-vibrant: #00c853;
    --green-light: #e6f7ef;
    --green-border: rgba(0, 180, 75, 0.25);

    --emerald-main: #00a878;
    --emerald-light: #e6f7f2;

    --purple-main: #3e2b85;
    --purple-vibrant: #6366f1;
    --purple-light: #f0ecfc;
    --purple-border: rgba(99, 102, 241, 0.25);

    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;

    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --border-card: rgba(226, 232, 240, 0.9);

    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --radius-btn: 50px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 45px rgba(0, 180, 75, 0.14), 0 8px 25px rgba(99, 102, 241, 0.12);

    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   DYNAMIC BACKGROUND ORBS & MESH
   ========================================================================== */

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    animation: floatOrb 14s infinite alternate ease-in-out;
}

.glow-orb-green {
    top: -5%;
    left: -5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.22), transparent 70%);
}

.glow-orb-purple {
    bottom: -5%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22), transparent 70%);
    animation-delay: -5s;
}

.glow-orb-cyan {
    top: 40%;
    right: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
    animation-delay: -9s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.08);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.dynamic-mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(0, 180, 75, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
    background-position: 0 0, 18px 18px;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   TOP BAR & ENTERPRISE NAVBAR
   ========================================================================== */

.top-bar {
    background: #0f172a;
    color: #94a3b8;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-info strong {
    color: var(--green-vibrant);
}

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

.top-info a:hover {
    color: var(--green-vibrant);
}

.dot-separator {
    color: #475569;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.top-links a:hover {
    color: var(--green-vibrant);
}

/* Navbar Sticky Header */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.02);
}

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

.nav-link {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--green-main);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-main);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #008444 0%, #00c853 100%);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 180, 75, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 180, 75, 0.38);
    background: linear-gradient(135deg, #006c37 0%, #008444 100%);
}

.btn-secondary {
    background: var(--green-light);
    color: var(--green-main);
    border: 1px solid var(--green-border);
}

.btn-secondary:hover {
    background: rgba(0, 180, 75, 0.18);
}

.btn-hero {
    background: linear-gradient(135deg, #008444 0%, #00c853 50%, #00a878 100%);
    color: #ffffff;
    font-size: 1.02rem;
    padding: 14px 28px;
    box-shadow: 0 10px 25px rgba(0, 180, 75, 0.3);
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: rotate(30deg);
    animation: shimmerSweep 4s infinite linear;
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 180, 75, 0.45);
}

.btn-arrow-circle {
    width: 32px;
    height: 32px;
    background: var(--purple-main);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-hero:hover .btn-arrow-circle {
    transform: translateX(4px);
    background: #2b1b66;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #cbd5e1;
}

.btn-outline:hover {
    border-color: var(--green-main);
    color: var(--green-main);
    background: var(--green-light);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   SECTION 1: HERO TEMPLATE SECTION (Image Template Layout)
   ========================================================================== */

.hero-template-section {
    padding: 16px 0 24px;
}

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

.hero-template-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 28px;
    align-items: start;
    padding: 20px 30px 16px;
}

.hero-left-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    width: 100%;
}

.hero-brand-logo {
    width: 580px;
    max-width: 70%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(0, 180, 75, 0.3);
}

.glow-pulse {
    animation: pulseGlow 3s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.2);
    }

    100% {
        box-shadow: 0 0 0 8px rgba(0, 200, 83, 0);
    }
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    background: linear-gradient(135deg, var(--green-main) 0%, var(--purple-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    color: var(--text-dark);
}

.gradient-text-green {
    background: linear-gradient(135deg, #008444 0%, #00c853 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #3e2b85 0%, #6366f1 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 520px;
}

.hero-cta-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

/* 4-Grid Trust Metrics Bar */
.stats-bar-card {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    transition: var(--transition);
}

.icon-green {
    background: var(--green-light);
    color: var(--green-main);
}

.icon-purple {
    background: var(--purple-light);
    color: var(--purple-main);
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.stat-label {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.text-green {
    color: var(--green-main);
}

.text-purple {
    color: var(--purple-main);
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--text-body);
    line-height: 1.2;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: #e2e8f0;
    margin: 0 auto;
}

/* Feature Cards 01, 02, 03 */
.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 215px;
    gap: 0;
    align-items: stretch;
    padding: 0;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 190px;
}

.feature-card .card-body {
    padding: 24px 22px 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.feature-card .card-image {
    width: 100%;
    height: 100%;
}

.feature-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.feature-card-dark {
    background: #020604;
    border: 1px solid rgba(0, 200, 83, 0.3);
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.1), inset 0 0 20px rgba(0, 200, 83, 0.05);
    grid-template-columns: 140px 1fr 280px;
    padding: 0;
}

.feature-card-dark .card-meta {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-right: none;
    height: 100%;
}

.feature-card-dark .number-badge {
    width: auto;
    border-radius: 8px;
    height: auto;
    padding: 12px 16px;
    margin-bottom: 0;
    background: #2cb62c;
    color: #000;
    box-shadow: none;
    font-size: 1.8rem;
}

.feature-card-dark .badge-green,
.feature-card-dark .badge-purple,
.feature-card-dark .badge-emerald {
    background: #4ade80;
    color: #000;
}

.feature-card-dark .icon-ring {
    border-color: #4ade80;
    color: #fff;
    background: transparent;
    width: 60px;
    height: 60px;
}

.feature-card-dark .card-body {
    padding: 20px 0;
}

.feature-card-dark .card-heading {
    color: #ffffff;
}

.feature-card-dark .card-description {
    color: #a1a1aa;
}

.feature-card-dark .tag {
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #ffffff;
}

.feature-card-dark .tag::before {
    content: "•";
    color: #4ade80;
    margin-right: 5px;
}

.feature-card-dark .card-visual {
    height: 100%;
    border-radius: 0;
    border: none;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--green-vibrant), var(--purple-vibrant));
    opacity: 0;
    transition: var(--transition);
}

.card-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.6s ease;
    pointer-events: none;
}



.card-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.number-badge {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.badge-green {
    background: linear-gradient(135deg, #008444 0%, #00c853 100%);
}

.badge-emerald {
    background: linear-gradient(135deg, #00a878 0%, #10b981 100%);
}

.badge-purple {
    background: linear-gradient(135deg, #3e2b85 0%, #6366f1 100%);
}

.icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-ring-green {
    background: var(--green-light);
    color: var(--green-main);
    border: 1px solid var(--green-border);
}

.icon-ring-emerald {
    background: var(--emerald-light);
    color: var(--emerald-main);
    border: 1px solid rgba(0, 168, 120, 0.25);
}

.icon-ring-purple {
    background: var(--purple-light);
    color: var(--purple-main);
    border: 1px solid var(--purple-border);
}



.card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-heading {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
}

.heading-underline {
    width: 36px;
    height: 3px;
    border-radius: 2px;
}

.underline-green {
    background: var(--green-vibrant);
}

.underline-emerald {
    background: var(--emerald-main);
}

.underline-purple {
    background: var(--purple-vibrant);
}

.card-description {
    font-size: 0.92rem;
    color: var(--text-body);
}

.card-tags-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.tag-green {
    color: var(--green-main);
    background: var(--green-light);
    border: 1px solid var(--green-border);
}

.tag-emerald {
    color: var(--emerald-main);
    background: var(--emerald-light);
    border: 1px solid rgba(0, 168, 120, 0.25);
}

.tag-purple {
    color: var(--purple-main);
    background: var(--purple-light);
    border: 1px solid var(--purple-border);
}

.card-visual {
    position: relative;
    width: 100%;
    height: 135px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

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



/* Bottom Highlights Bar (Seamlessly Connected inside single hero-template-card) */
.bottom-highlights-bar {
    margin-top: 0;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

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

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-bg-green {
    background: var(--green-light);
    border: 1px solid var(--green-border);
}

.icon-bg-teal {
    background: var(--emerald-light);
    border: 1px solid rgba(0, 168, 120, 0.25);
}

.icon-bg-purple {
    background: var(--purple-light);
    border: 1px solid var(--purple-border);
}

.icon-bg-indigo {
    background: #eef2ff;
    border: 1px solid rgba(79, 70, 229, 0.25);
}

.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.highlight-content p {
    font-size: 0.82rem;
    color: var(--text-body);
}

.bar-divider {
    width: 1px;
    height: 38px;
    background: #e2e8f0;
}

/* ==========================================================================
   SECTION 2: ENTERPRISE SERVICES MATRIX
   ========================================================================== */

.services-matrix-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--green-light);
    color: var(--green-main);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 600px;
    margin-bottom: 48px;
}

.services-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: var(--bg-body);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-main);
    box-shadow: 0 20px 40px rgba(0, 180, 75, 0.12);
    background: #ffffff;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-teal {
    background: var(--emerald-light);
    color: var(--emerald-main);
}

.service-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-detail-card p {
    color: var(--text-body);
    font-size: 0.95rem;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
}

.bullet-check {
    color: var(--green-main);
    font-weight: 800;
}

.service-link-btn {
    margin-top: auto;
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--green-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.service-link-btn:hover {
    color: var(--purple-main);
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION 3: ABOUT COMPANY & ISO CERTIFICATION
   ========================================================================== */

.about-company-section {
    padding: 80px 0;
}

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

.iso-seal-box {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid var(--green-main);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 180, 75, 0.12);
}

.iso-seal-icon {
    font-size: 1.8rem;
}

.iso-seal-box h4 {
    font-family: var(--font-heading);
    color: var(--green-main);
    font-weight: 800;
}

.iso-seal-box p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about-text-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 32px;
}

.stats-counter-row {
    display: flex;
    gap: 32px;
}

.counter-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.counter-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pillar-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-main);
}

.pillar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-body);
}

/* ==========================================================================
   SECTION 4: TESTIMONIALS & REVIEWS
   ========================================================================== */

.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.testimonial-card {
    padding: 28px;
    background: var(--bg-body);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stars {
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-body);
    font-style: italic;
}

.reviewer-info strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.reviewer-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 5: CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: 80px 0;
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.contact-left-info {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-left-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
}

.contact-left-info p {
    color: #94a3b8;
}

.contact-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.4rem;
}

.contact-right-form {
    padding: 48px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
}

.form-input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px rgba(0, 180, 75, 0.15);
}

.success-message {
    padding: 14px;
    background: var(--green-light);
    border: 1px solid var(--green-border);
    border-radius: 10px;
    color: var(--green-main);
    font-weight: 600;
    text-align: center;
}

.hidden {
    display: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 0 24px;
}

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

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

.footer-logo {
    height: 48px;
    margin-bottom: 16px;
}

.footer-bio {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 360px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--green-vibrant);
    padding-left: 4px;
}

.iso-footer-badge {
    padding: 8px 14px;
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid var(--green-vibrant);
    border-radius: 8px;
    color: var(--green-vibrant);
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.contact-info-item {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* ==========================================================================
   MODAL LIGHTBOXES
   ========================================================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    width: 90%;
    max-width: 540px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    color: var(--text-dark);
    font-size: 1.6rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
}

.modal-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.modal-head h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
}

.modal-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}

.modal-body h3 {
    font-family: var(--font-heading);
    color: var(--green-main);
    margin-bottom: 8px;
}

.modal-body p {
    color: var(--text-body);
    margin-bottom: 22px;
}

/* ==========================================================================
   SOCIAL MEDIA BAR
   ========================================================================== */

.social-bar {
    gap: 0;
}

.social-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.social-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85);
}

.social-item:hover h4 {
    color: var(--green-main);
}

.social-item .highlight-icon {
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    flex-shrink: 0;
}

.social-item:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.social-item .highlight-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #25d366;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Card More Button */
.card-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    background: transparent;
    border: 1.5px solid var(--purple-vibrant);
    color: var(--purple-vibrant);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-btn);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.card-more-btn:hover {
    background: var(--purple-vibrant);
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.card-more-btn-emerald {
    border-color: var(--emerald-main);
    color: var(--emerald-main);
}

.card-more-btn-emerald:hover {
    background: var(--emerald-main);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 168, 120, 0.35);
}

.card-more-btn-green {
    border-color: var(--green-main);
    color: var(--green-main);
}

.card-more-btn-green:hover {
    background: var(--green-main);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 132, 68, 0.35);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1150px) {
    .hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 22px;
        padding: 22px 26px 18px;
        align-items: stretch;
    }

    .hero-left-column {
        gap: 14px;
        justify-content: space-between;
    }

    .hero-brand-logo {
        width: 290px !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 2.6rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero-right-column {
        gap: 14px;
        justify-content: space-between;
    }

    .feature-card {
        grid-template-columns: 1fr 185px;
        min-height: 165px;
        border-radius: 14px;
    }

    .feature-card .card-body {
        padding: 16px 18px;
        gap: 6px;
    }

    .feature-card .card-heading {
        font-size: 1.35rem;
    }

    .feature-card .card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .feature-card .card-tags-row {
        gap: 6px;
        padding-top: 2px;
    }

    .feature-card .tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .feature-card .card-image {
        width: 185px;
        height: 100%;
        background: #0a0e17;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-card .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        image-rendering: -webkit-optimize-contrast;
    }

    .services-grid-3col {
        grid-template-columns: 1fr;
    }

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

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

    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }

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

    .bottom-highlights-bar {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 12px;
        padding: 12px 26px;
        align-items: center;
    }

    .bar-divider {
        display: block;
        width: 1px;
        height: 32px;
        background: #e2e8f0;
    }

    .social-item {
        justify-content: flex-start;
        text-align: left;
        padding: 4px 6px;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .social-item .highlight-icon {
        width: 42px;
        height: 42px;
    }

    .social-item .highlight-content {
        text-align: left;
        align-items: flex-start;
    }

    .social-item .highlight-content h4 {
        font-size: 0.92rem;
    }

    .social-item .highlight-content p {
        font-size: 0.76rem;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 16px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .feature-card {
        grid-template-columns: 1fr 240px;
        min-height: 180px;
    }

    .feature-card .card-image {
        width: 240px;
        height: 100%;
    }

    .feature-card .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 680px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-template-section {
        padding: 12px 0 18px;
    }

    .hero-grid {
        padding: 16px 14px 12px;
        gap: 18px;
    }

    .hero-title {
        font-size: 2.1rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        text-align: left;
    }

    .stats-bar-card {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
        overflow: hidden;
    }

    .feature-card .card-image {
        width: 100%;
        height: auto;
        padding: 0 12px 12px 12px;
    }

    .feature-card .card-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .feature-card .card-body {
        padding: 18px 16px 10px;
        text-align: left;
    }

    .bottom-highlights-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px 14px;
        justify-content: flex-start;
    }

    .bar-divider {
        display: none;
    }

    .social-item {
        justify-content: flex-start;
        text-align: left;
        padding: 8px 12px;
    }

    .social-item .highlight-content {
        text-align: left;
        align-items: flex-start;
    }

    .social-item .highlight-content h4 {
        font-size: 0.92rem;
        text-align: left;
    }

    .social-item .highlight-content p {
        font-size: 0.75rem;
        text-align: left;
    }

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

@media (max-width: 480px) {
    .hero-grid {
        padding: 14px 12px 10px;
        gap: 16px;
    }

    .hero-title {
        font-size: 1.85rem;
        text-align: left;
    }

    .hero-brand-logo {
        width: 240px !important;
    }

    .feature-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .feature-card .card-body {
        padding: 16px 14px 10px;
        gap: 8px;
    }

    .feature-card .card-heading {
        font-size: 1.35rem;
    }

    .feature-card .card-description {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .feature-card .card-tags-row {
        gap: 6px;
        margin-bottom: 2px;
    }

    .feature-card .tag {
        font-size: 0.72rem;
        padding: 4px 9px;
    }

    .feature-card .card-image {
        width: 100%;
        height: auto;
        padding: 0 12px 12px 12px;
    }

    .feature-card .card-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .bottom-highlights-bar {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 12px;
        justify-content: flex-start;
    }

    .social-item {
        padding: 10px 12px;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .social-item .highlight-content {
        text-align: left;
        align-items: flex-start;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}