@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* =========================================
   VARIABLES & GLOBAL STYLES
   ========================================= */
:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    --bg-main: #F9FAFB;
    --text-dark: #111827;
    --text-muted: #6B7280;
    
    --primary: #115E59; /* Dark Teal */
    --primary-light: #134E4A;
    --white: #FFFFFF;
    
    /* Bento Colors */
    --bento-blue: #E8F4F8;
    --bento-beige: #FFF6EB;
    --bento-mint: #EEF8F1;
    --bento-dark: #18191C;
    --bento-purple: #F5EEF8;
    --bento-grey: #F3F4F6;
    
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 12px;
    --radius-pill: 100px;
    
    --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.05);
    --shadow-hover: 0 30px 60px -15px rgba(0,0,0,0.08);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-5, .col-md-6, .col-md-7 {
    padding: 0 15px;
}

.col-md-6 { width: 50%; }
.col-md-5 { width: 41.666%; }
.col-md-7 { width: 58.333%; }

.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

.ptb-120 { padding: 120px 0; }
.ptb-100 { padding: 100px 0; }
.ptb-80 { padding: 80px 0; }

.bg-white { background-color: var(--white) !important; }
.bg-dark { background-color: var(--bento-dark); }
.text-white { color: var(--white) !important; }
.max-w-50 { max-width: 60%; }

.rounded-lg { border-radius: var(--radius-lg); }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-title .subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(17, 94, 89, 0.1);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-pill {
    border-radius: var(--radius-pill);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 94, 89, 0.15);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(0,0,0,0.1);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--bg-main);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    top: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.nav-links-wrapper {
    background: rgba(0,0,0,0.04);
    padding: 4px;
    border-radius: var(--radius-pill);
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a.active, .nav-links a:hover {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.6;
}

/* Faint Glow */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(17,94,89,0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}

.badge-review i {
    color: #FBBF24;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Client Strip */
.client-strip {
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.client-strip-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
    transition: var(--transition);
}

.client-logos:hover {
    opacity: 0.8;
}

.client-logos span {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   BENTO SERVICES SECTION
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(340px, auto);
    gap: 24px;
}

.bento-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bento-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 1rem;
    color: rgba(0,0,0,0.6);
    margin-bottom: 30px;
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
}

.bento-blue { background: var(--bento-blue); }
.text-blue { color: #026AA2; }

.bento-beige { background: var(--bento-beige); }
.text-orange { color: #C4320A; }

.bento-mint { background: var(--bento-mint); }
.text-green { color: #027A48; }

.bento-purple { background: var(--bento-purple); }
.text-purple { color: #6941C6; }

.bento-grey { background: var(--bento-grey); }
.text-grey { color: #344054; }

.bento-dark { 
    background: var(--bento-dark); 
    color: var(--white);
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 50%);
}
.bento-dark h3 { color: var(--white); }
.bento-dark p { color: #9CA3AF; }
.bento-dark .icon-circle {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    box-shadow: none;
}

.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }

.flex-row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    mt-auto: auto;
    margin-top: auto;
}

.pill {
    padding: 8px 16px;
    background: rgba(255,255,255,0.6);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.bento-dark .pill {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* =========================================
   WHY US SECTION
   ========================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(17,94,89,0.1);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--bento-mint);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary);
    background: rgba(17,94,89,0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.info-item h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(17,94,89,0.1);
}

/* =========================================
   INDUSTRIES
   ========================================= */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.industries-list li {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.industries-list li:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding-top: 80px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo-col {
    max-width: 320px;
}

.footer-logo {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-col p {
    color: #9CA3AF;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #9CA3AF;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.95rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-3 { grid-column: span 2; }
    
    .hero-title { font-size: 4rem; }
    .process-timeline { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-section { padding: 150px 0 80px; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .span-2, .span-3 { grid-column: span 1; }
    .flex-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .max-w-50 { max-width: 100%; }
    
    .process-timeline { grid-template-columns: 1fr; }
    
    .col-md-5, .col-md-6, .col-md-7 { width: 100%; }
    .about-img { margin-bottom: 40px; }
    .industries-section .col-md-5 { margin-bottom: 40px; }
    .contact-info { margin-bottom: 40px; }
    
    .nav-links-wrapper, .navbar .btn { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-hover);
        margin-top: 10px;
    }
    .nav-links.active { display: flex; }
}
