/* ===========================
   Maisha Karya Media - CSS
   Brand Colors:
   --green      : #A4CE52  (PRIMARY base)
   --green-dark : #6b9e26  (darker shade for contrast)
   --blue       : #29aae1
=========================== */

/* ---- Root Variables ---- */
:root {
    --green:       #A4CE52;
    --green-dark:  #6b9e26;
    --green-darker:#4e7818;
    --green-light: #c8e882;
    --blue:        #29aae1;
    --dark:        #1e2128;
    --dark-alt:    #2c3140;
    --gray-bg:     #f7f8fa;
    --gray-light:  #eef1f6;
    --text:        #555c6e;
    --heading:     #1a1f2e;
    --white:       #ffffff;
    --transition:  all .3s ease;
    --radius:      8px;
    --shadow:      0 10px 40px rgba(0,0,0,.08);
    --shadow-hover:0 20px 60px rgba(0,0,0,.14);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { color: var(--heading); font-weight: 700; line-height: 1.3; }

/* ---- Utility ---- */
.section-pad  { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.gray-bg      { background: var(--gray-bg); }
.dark-bg      { background: var(--dark); }
.white-bg     { background: var(--white); }
.text-center  { text-align: center; }
.fix { overflow: hidden; }

/* ---- Section Title ---- */
.section-title { margin-bottom: 60px; }
.section-title .sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    position: relative;
    padding: 0 20px;
    margin-bottom: 12px;
}
.section-title .sub-title::before,
.section-title .sub-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--blue);
}
.section-title .sub-title::before { left: 0; }
.section-title .sub-title::after  { right: 0; }
.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.25;
}
.section-title h2 span { color: var(--green-dark); }
/* green on white hero-title span uses the base brand color */
.hero-content h1 span { color: var(--green); }
.section-title p {
    margin-top: 16px;
    font-size: 16px;
    color: var(--text);
    max-width: 560px;
}
.section-title.text-center p { margin: 16px auto 0; }
.section-title.white-title .sub-title  { color: var(--green-light); }
.section-title.white-title .sub-title::before,
.section-title.white-title .sub-title::after { background: var(--green-light); }
.section-title.white-title h2 { color: var(--white); }
.section-title.white-title p  { color: rgba(255,255,255,.75); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: var(--green);
    color: #1e3305;
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164,206,82,.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-blue:hover {
    background: #1a9cce;
    border-color: #1a9cce;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41,170,225,.35);
}

/* ==========================
   PRELOADER
========================== */
#preloader {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease;
}
#preloader .spinner {
    width: 50px; height: 50px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--green-dark);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================
   SCROLL TOP
========================== */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: var(--green);
    color: #1e3305;
    border: none; border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(164,206,82,.5);
}
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green-dark); color: var(--white); transform: translateY(-3px); }

/* ==========================
   HEADER / NAVBAR
========================== */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition);
}
.header-top {
    background: var(--green-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,.85);
}
.header-top-list { display: flex; gap: 24px; align-items: center; }
.header-top-list li { display: flex; align-items: center; gap: 6px; }
.header-top-list a { color: rgba(255,255,255,.85); }
.header-top-list a:hover { color: var(--green-light); }
.header-top-social { display: flex; gap: 12px; justify-content: flex-end; }
.header-top-social a { color: rgba(255,255,255,.7); font-size: 14px; }
.header-top-social a:hover { color: var(--green-light); }

.main-header {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo-wrap a {
    display: flex; align-items: center; gap: 10px;
}
.logo-icon {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
}
.logo-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.3px;
}
.logo-text .mkm-green { color: var(--green-dark); }
.logo-text .mkm-blue  { color: var(--blue); }
.main-header .logo-text .mkm-green { color: var(--green-dark); }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    border-radius: 6px;
    white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--green-dark);
    background: rgba(164,206,82,.12);
}
.nav-cta { margin-left: 12px; }

.mobile-toggle {
    display: none;
    background: none; border: none;
    font-size: 22px; color: var(--heading);
    cursor: pointer;
}

/* Sticky header shrink */
header.sticky .header-top { display: none; }
header.sticky .main-header { box-shadow: 0 4px 30px rgba(0,0,0,.12); }

/* ==========================
   HERO SECTION
========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #1e3808 0%, #2d5a10 50%, #1a3006 100%);
    overflow: hidden;
    padding-top: 120px;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.hero-badge i { color: var(--green); }
.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}
.hero-content h1 span { color: var(--green-light); }
.hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 32px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
    flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-item .number {
    font-size: 36px; font-weight: 800;
    color: var(--white); line-height: 1;
}
.hero-stat-item .number span { color: var(--green); }
.hero-stat-item .label {
    font-size: 13px; color: rgba(255,255,255,.7);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative; z-index: 2;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}
.code-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 28px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.code-card .window-dots {
    display: flex; gap: 6px; margin-bottom: 18px;
}
.code-card .window-dots span {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot-red  { background: #ff5f57; }
.dot-yel  { background: #ffbd2e; }
.dot-grn  { background: #28ca41; }
.code-line .kw  { color: #79c0ff; }
.code-line .fn  { color: var(--green-light); }
.code-line .str { color: #f8c555; }
.code-line .cm  { color: rgba(255,255,255,.4); }
.code-line .br  { color: rgba(255,255,255,.6); }

/* Floating badges on hero */
.hero-badge-float {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--heading);
    display: flex; align-items: center; gap: 8px;
    animation: float2 5s ease-in-out infinite;
}
.hero-badge-float i { font-size: 18px; }
.hbf-1 { top: 10%; left: -20px; }
.hbf-2 { bottom: 15%; right: -10px; animation-delay: 1.5s; }
.hbf-1 i { color: var(--blue); }
.hbf-2 i { color: var(--green-dark); }
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%       { transform: translateY(-10px) rotate(2deg); }
}

/* ==========================
   SERVICES
========================== */
.services-section { padding: 100px 0 70px; }
.service-card {
    background: var(--white);
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 40px 32px;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 68px; height: 68px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.icon-green-dark  { background: rgba(164,206,82,.15); color: var(--green-dark); }
.icon-green-light { background: rgba(164,206,82,.12); color: var(--green-dark); }
.icon-blue        { background: rgba(41,170,225,.1); color: var(--blue); }
.icon-orange      { background: rgba(255,140,0,.1);  color: #e07b00; }
.icon-purple      { background: rgba(120,86,195,.1); color: #7856c3; }
.icon-teal        { background: rgba(0,160,160,.1);  color: #00a0a0; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h4 {
    font-size: 20px; font-weight: 700;
    margin-bottom: 12px; color: var(--heading);
}
.service-card p { font-size: 15px; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.read-more {
    font-size: 14px; font-weight: 600;
    color: var(--green-dark);
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 700;
}
.read-more:hover { color: var(--blue); gap: 10px; }

/* ==========================
   ABOUT
========================== */
.about-section { padding: 100px 0; }
.about-img-wrap { position: relative; }
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.about-img-main .img-placeholder {
    width: 100%; height: 480px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--white);
}
.about-img-main .img-placeholder i { font-size: 80px; margin-bottom: 16px; opacity: .7; }
.about-img-main .img-placeholder p { font-size: 18px; font-weight: 600; opacity: .85; }
.about-badge-box {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    min-width: 140px;
}
.about-badge-box .num { font-size: 40px; font-weight: 800; color: var(--green-dark); line-height: 1; }
.about-badge-box { border-top: 4px solid var(--green); }
.about-badge-box .txt { font-size: 13px; color: var(--text); margin-top: 4px; }

.about-content { padding-left: 40px; }
.about-content .sub-tag {
    font-size: 13px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 10px;
}
.about-content h2 { font-size: 36px; margin-bottom: 18px; }
.about-content h2 span { color: var(--green-dark); }
.about-content > p { margin-bottom: 28px; font-size: 15.5px; }
.about-feature-list { margin-bottom: 36px; }
.about-feature-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}
.about-feature-list li:last-child { border: none; }
.about-feature-list .icon-wrap {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(164,206,82,.18);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--green-dark); font-size: 16px;
}
.about-feature-list .txt strong { display: block; font-size: 15px; color: var(--heading); }
.about-feature-list .txt span   { font-size: 13.5px; color: var(--text); }

/* ==========================
   STATS
========================== */
.stats-section {
    background: linear-gradient(135deg, #1e3808 0%, #2d5a10 100%);
    padding: 80px 0;
}
.stat-box { text-align: center; padding: 20px; }
.stat-box .number {
    font-size: 54px; font-weight: 800;
    color: var(--white); line-height: 1;
    margin-bottom: 8px;
}
.stat-box .number span { color: var(--green); }
.stat-box .label { font-size: 15px; color: rgba(255,255,255,.75); }
.stat-box .icon {
    font-size: 32px; color: rgba(255,255,255,.3);
    margin-bottom: 12px;
}

/* ==========================
   WHY US
========================== */
.why-section { padding: 100px 0; }
.why-card {
    display: flex; gap: 20px;
    align-items: flex-start;
    padding: 28px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid #e8edf5;
    margin-bottom: 24px;
    transition: var(--transition);
}
.why-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
    transform: translateX(6px);
}
.why-card .why-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
}
.why-card h5 { font-size: 17px; margin-bottom: 6px; }
.why-card p  { font-size: 14.5px; color: var(--text); margin: 0; }

/* ==========================
   PORTFOLIO
========================== */
.portfolio-section { padding: 100px 0 70px; }
.portfolio-filter { margin-bottom: 40px; }
.filter-btn {
    background: none; border: 2px solid #e0e5ee;
    padding: 8px 20px; border-radius: 50px;
    font-size: 14px; font-weight: 600; color: var(--text);
    cursor: pointer; transition: var(--transition);
    margin: 4px;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
}
.portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.portfolio-thumb {
    position: relative; overflow: hidden;
    height: 200px;
}
.portfolio-thumb .img-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    color: var(--white);
    font-size: 14px; font-weight: 600;
}
.portfolio-thumb .img-ph i { font-size: 36px; opacity: .7; }
.portfolio-thumb .overlay {
    position: absolute; inset: 0;
    background: rgba(107,158,38,.88);
    display: flex; align-items: center; justify-content: center; gap: 12px;
    opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .overlay { opacity: 1; }
.overlay a {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-dark); font-size: 16px;
    font-size: 16px;
    transform: translateY(10px); transition: var(--transition);
}
.portfolio-card:hover .overlay a { transform: translateY(0); }
.portfolio-info { padding: 20px 22px; }
.portfolio-info .cat {
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.portfolio-info h5 { font-size: 16px; margin: 0; color: var(--heading); }
.portfolio-info h5:hover { color: var(--green-dark); }

/* Colors for portfolio placeholders */
.ph-web    { background: linear-gradient(135deg, #1a7a38, #8dc63f); }
.ph-mobile { background: linear-gradient(135deg, #29aae1, #1a7a38); }
.ph-system { background: linear-gradient(135deg, #7856c3, #29aae1); }
.ph-erp    { background: linear-gradient(135deg, #e07b00, #f8c555); }
.ph-ecom   { background: linear-gradient(135deg, #00a0a0, #8dc63f); }
.ph-pos    { background: linear-gradient(135deg, #c03070, #7856c3); }

/* ==========================
   TESTIMONIALS
========================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3808 0%, #2d5a10 100%);
    position: relative; overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.testimonials-section::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.testi-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 24px;
    position: relative; z-index: 1;
    transition: var(--transition);
}
.testi-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.testi-quote {
    font-size: 40px; color: var(--green);
    line-height: 1; margin-bottom: 16px;
}
.testi-card p {
    font-size: 15px; color: rgba(255,255,255,.85);
    font-style: italic; line-height: 1.8;
    margin-bottom: 24px;
}
.testi-stars { color: #ffc107; font-size: 14px; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    display: flex; align-items: center; justify-content: center;
    color: #1e3305; font-size: 18px; font-weight: 700;
    flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 13px; color: var(--green); }

/* ==========================
   PROCESS
========================== */
.process-section { padding: 100px 0; background: var(--gray-bg); }
.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute; top: 35px; left: calc(50% + 40px);
    width: calc(100% - 80px); height: 2px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    border-top: 2px dashed var(--green-light);
    background: none;
}
.process-step:last-child::after { display: none; }
.step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    font-size: 24px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(164,206,82,.4);
    position: relative; z-index: 1;
}
.process-step h5 { font-size: 17px; margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: var(--text); }

/* ==========================
   CONTACT
========================== */
.contact-section { padding: 100px 0; }
.contact-info-box {
    background: linear-gradient(135deg, #1e3808 0%, #2d5a10 100%);
    border-radius: 20px;
    padding: 48px 40px;
    height: 100%;
}
.contact-info-box h3 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.contact-info-box > p { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 24px;
}
.contact-item:last-of-type { margin-bottom: 36px; }
.ci-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(164,206,82,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 18px;
}
.ci-text strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 2px; }
.ci-text span   { color: rgba(255,255,255,.7); font-size: 14px; }
.contact-social { display: flex; gap: 10px; }
.contact-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 15px;
    transition: var(--transition);
}
.contact-social a:hover { background: var(--green); transform: translateY(-2px); color: #1e3305; }

.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 14px; font-weight: 600;
    color: var(--heading); margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e5ee;
    border-radius: 10px;
    font-size: 15px;
    color: var(--heading);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    font-family: inherit;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(164,206,82,.2); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ==========================
   FOOTER
========================== */
footer { background: var(--dark); padding: 0; }
.footer-top { padding: 80px 0 50px; }
.footer-widget { margin-bottom: 40px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-text .mkm-green { color: var(--green); }
.footer-logo .logo-text .mkm-blue  { color: #76d4f5; }
.footer-about p { font-size: 14.5px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #1e3305;
    transform: translateY(-2px);
}
.fw-title {
    font-size: 16px; font-weight: 700; color: var(--white);
    margin-bottom: 22px; padding-bottom: 14px;
    border-bottom: 2px solid rgba(164,206,82,.35);
    display: inline-block;
}
.fw-links li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.fw-links li:last-child { border: none; }
.fw-links a {
    font-size: 14px; color: rgba(255,255,255,.55);
    display: flex; align-items: center; gap: 8px;
}
.fw-links a::before {
    content: '›'; color: var(--green); font-size: 18px; line-height: 1;
}
.fw-links a:hover { color: var(--green); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
}
.footer-bottom .copy-text {
    font-size: 14px; color: rgba(255,255,255,.4);
}
.footer-bottom .copy-text a { color: var(--green); }
.footer-bottom .copy-text a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--green); }

/* ==========================
   MOBILE MENU
========================== */
.mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1999;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
    position: fixed; top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right .35s ease;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,.2);
}
.mobile-menu-panel.open { right: 0; }
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-light);
}
.mobile-menu-close {
    background: none; border: none;
    font-size: 20px; color: var(--text);
    cursor: pointer;
}
.mobile-nav ul { padding: 16px 0; }
.mobile-nav ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 15px; font-weight: 600;
    color: var(--heading);
    border-bottom: 1px solid var(--gray-light);
}
.mobile-nav ul li a:hover { color: var(--green-dark); padding-left: 32px; }
.mobile-nav-cta { padding: 20px 24px; }

/* ==========================
   ANIMATIONS
========================== */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
    opacity: 0; transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
    opacity: 0; transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 1199px) {
    .hero-content h1 { font-size: 44px; }
    .section-title h2 { font-size: 34px; }
}
@media (max-width: 991px) {
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-section { min-height: auto; padding: 140px 0 80px; }
    .hero-content h1 { font-size: 36px; }
    .hero-visual { margin-top: 50px; }
    .about-content { padding-left: 0; margin-top: 60px; }
    .about-badge-box { right: 0; }
    .process-step::after { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-box { margin-bottom: 30px; }
    .footer-bottom-links { justify-content: flex-start; margin-top: 12px; }
    .hero-stats { gap: 20px; }
    .hero-stat-item .number { font-size: 28px; }
}
@media (max-width: 767px) {
    .section-pad { padding: 70px 0; }
    .hero-content h1 { font-size: 30px; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .header-top { display: none; }
    .section-title h2 { font-size: 28px; }
    .stat-box .number { font-size: 40px; }
    .contact-form-wrap { padding: 32px 24px; }
    .contact-info-box { padding: 36px 28px; }
    .footer-top { padding: 60px 0 30px; }
    .code-card { font-size: 12px; }
}
@media (max-width: 575px) {
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
