/* ===== CSS Variables & Reset ===== */
:root {
    --white: #ffffff;
    --bg-light: #f8fafb;
    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --green-start: #4ade80;
    --green-end: #16a34a;
    --orange-start: #fb923c;
    --orange-end: #ea580c;
    --blue-start: #60a5fa;
    --blue-end: #2563eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary); background: var(--white);
    line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

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

/* ===== Utility Gradients ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--green-start), var(--blue-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-green { background: linear-gradient(135deg, var(--green-start), var(--green-end)); }
.gradient-orange { background: linear-gradient(135deg, var(--orange-start), var(--orange-end)); }
.gradient-blue { background: linear-gradient(135deg, var(--blue-start), var(--blue-end)); }
.gradient-mixed { background: linear-gradient(135deg, var(--green-end), var(--blue-end)); }

/* ===== Navigation ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent; transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); }
.nav-logo-img { height: 40px; width: auto; }
.nav-logo-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; }
.nav-logo-text .accent {
    background: linear-gradient(135deg, var(--green-end), var(--blue-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-link {
    text-decoration: none; color: var(--text-secondary); font-weight: 500; font-size: 0.85rem;
    padding: 8px 14px; border-radius: 8px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: var(--transition); position: absolute; left: 4px;
}
.hamburger { top: 15px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; position: relative; padding: 120px 0 60px; overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(74,222,128,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59,130,246,0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(251,146,60,0.06) 0%, transparent 40%);
}
.hero-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px 6px 10px;
    background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(59,130,246,0.1));
    border: 1px solid rgba(74,222,128,0.2); border-radius: 50px;
    font-size: 0.85rem; font-weight: 500; color: var(--green-end);
    margin-bottom: 20px; width: fit-content;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-end); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
.hero-title { font-family: 'Outfit', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none; border: none;
    cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-primary { background: linear-gradient(135deg, var(--green-end), var(--blue-end)); color: white; box-shadow: 0 4px 15px rgba(22,163,106,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(22,163,106,0.4); }
.btn-outline { background: transparent; color: var(--text-primary); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--green-end); color: var(--green-end); transform: translateY(-2px); }
.btn-white { background: white; color: var(--text-primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat-item { text-align: center; }
.stat-number, .stat-suffix {
    font-family: 'Outfit', sans-serif; font-weight: 800;
    background: linear-gradient(135deg, var(--green-end), var(--blue-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-number { font-size: 2rem; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.hero-image { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.hero-float-card {
    position: absolute; display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    padding: 14px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}
.card-1 { top: 15%; left: -30px; animation-delay: 0s; }
.card-2 { bottom: 15%; right: -30px; animation-delay: 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.float-icon.green { background: linear-gradient(135deg, var(--green-start), var(--green-end)); }
.float-icon.blue { background: linear-gradient(135deg, var(--blue-start), var(--blue-end)); }
.float-title { display: block; font-size: 0.75rem; color: var(--text-muted); }
.float-value { font-weight: 700; font-size: 1.1rem; }
.green-text { color: var(--green-end); }
.blue-text { color: var(--blue-end); }
.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 0.8rem; font-weight: 500;
}
.scroll-arrow { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(8px); } 60% { transform: translateY(4px); } }

/* ===== Sections Common ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--green-end);
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px;
    padding: 4px 16px; border-radius: 50px; background: rgba(22,163,106,0.08);
}
.section-title { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-description { font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

/* ===== Section 1: Our Story ===== */
.story-section { background: var(--bg-light); }
.story-card {
    max-width: 800px; margin: 0 auto; background: white;
    border-radius: var(--radius-xl); padding: 48px; text-align: center;
    border: 1px solid var(--border); box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-icon-row { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; }
.story-icon-circle {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
}
.story-text {
    font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 32px;
}
.story-text strong { color: var(--text-primary); font-weight: 600; }
.story-highlights { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.highlight-item { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.9rem; }
.highlight-dot { width: 10px; height: 10px; border-radius: 50%; }
.green-dot { background: linear-gradient(135deg, var(--green-start), var(--green-end)); }
.orange-dot { background: linear-gradient(135deg, var(--orange-start), var(--orange-end)); }
.blue-dot { background: linear-gradient(135deg, var(--blue-start), var(--blue-end)); }

/* ===== Section 2: Our Vision ===== */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vision-card {
    background: white; border-radius: var(--radius-lg); padding: 40px;
    position: relative; overflow: hidden; border: 1px solid var(--border);
    transition: var(--transition);
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vision-card-icon { margin-bottom: 24px; }
.icon-bg { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.vision-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.vision-card p { color: var(--text-secondary); line-height: 1.7; }
.about-card-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; }
.green-accent { background: linear-gradient(90deg, var(--green-start), var(--green-end)); }
.orange-accent { background: linear-gradient(90deg, var(--orange-start), var(--orange-end)); }

/* ===== Section 3: Team/Partners ===== */
.team-section { background: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.team-card {
    background: white; border-radius: var(--radius-lg); padding: 36px;
    border: 1px solid var(--border); transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card-header { margin-bottom: 20px; }
.team-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.team-card-header h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.team-badge {
    display: inline-block; padding: 3px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.03em;
}
.green-badge { background: rgba(22,163,106,0.1); color: var(--green-end); }
.blue-badge { background: rgba(37,99,235,0.1); color: var(--blue-end); }
.team-subtitle { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.team-list-title {
    font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
    margin-bottom: 12px; margin-top: 20px; color: var(--text-primary);
}
.team-services-list {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.team-services-list li {
    position: relative; padding-left: 20px;
    font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5;
}
.team-services-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 8px; height: 8px; border-radius: 50%;
}
#team-datacenter .team-services-list li::before { background: linear-gradient(135deg, var(--green-start), var(--green-end)); }
#team-telco .team-services-list li::before { background: linear-gradient(135deg, var(--blue-start), var(--blue-end)); }

/* ===== Section 4: Solutions ===== */
.solutions-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.solutions-main-text {
    font-size: 1.2rem; font-weight: 500; line-height: 1.7;
    color: var(--text-primary); margin-bottom: 16px;
}
.solutions-sub-text {
    font-size: 1rem; color: var(--text-secondary);
    line-height: 1.7; margin-bottom: 32px;
}
.solutions-image-block {
    background: white; border-radius: var(--radius-xl);
    padding: 32px; border: 1px solid var(--border);
    box-shadow: var(--shadow-md); transition: var(--transition);
}
.solutions-image-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solutions-vendors-img { width: 100%; height: auto; border-radius: var(--radius-md); }

/* ===== Section 5: Our Clients ===== */
.clients-section { background: var(--bg-light); }
.clients-showcase {
    max-width: 700px; margin: 0 auto;
    background: white; border-radius: var(--radius-xl);
    padding: 40px; border: 1px solid var(--border);
    box-shadow: var(--shadow-md); transition: var(--transition); text-align: center;
}
.clients-showcase:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.clients-img { width: 100%; height: auto; border-radius: var(--radius-md); }

/* ===== CTA Section ===== */
.cta-card {
    background: linear-gradient(135deg, var(--green-end), #0d9488, var(--blue-end));
    border-radius: var(--radius-xl); padding: 80px 60px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; }
.cta-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-shape.shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-shape.shape-2 { width: 200px; height: 200px; bottom: -80px; left: -40px; }
.cta-shape.shape-3 { width: 150px; height: 150px; top: 50%; left: 60%; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: white; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== Contact Section ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    background: var(--bg-light); border-radius: var(--radius-md);
    border: 1px solid var(--border); transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-card p { color: var(--text-secondary); font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.95rem; color: var(--text-primary);
    background: var(--bg-light); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green-end); box-shadow: 0 0 0 3px rgba(22,163,106,0.1); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Footer ===== */
.footer { background: var(--text-primary); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: white; }
.footer-logo-text .accent { background: linear-gradient(135deg, var(--green-start), var(--blue-start)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 360px; }
.footer-links-group h4 { font-family: 'Outfit', sans-serif; color: white; font-weight: 600; margin-bottom: 16px; }
.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links-group a:hover { color: var(--green-start); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ===== Animations ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.6rem; }
    .hero-container { gap: 40px; }
    .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: white; padding: 20px; flex-direction: column;
        box-shadow: var(--shadow-lg); border-top: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: block; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-float-card { display: none; }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .vision-grid { grid-template-columns: 1fr; }
    .solutions-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .cta-card { padding: 48px 24px; }
    .cta-content h2 { font-size: 1.6rem; }
    .hero-badge { margin: 0 auto 20px; }
    .story-card { padding: 32px 24px; }
    .story-highlights { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
}
