/* =====================================================
   ANLESTO.ID - MAIN STYLESHEET
   Software House Company Profile
   Style: Modern White-Blue (inspired by tiket.com)
   ===================================================== */

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

/* ---- CSS Variables ---- */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --primary-pale: #EBF3FF;
    --primary-glow: rgba(0, 102, 255, 0.15);
    
    --secondary: #00B4D8;
    --secondary-dark: #0096B7;
    --accent: #FF6B35;
    
    --navy: #0A1628;
    --navy-light: #1A2940;
    --dark: #1E2A3B;
    --gray-dark: #374151;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --gray-pale: #F3F4F6;
    --white: #FFFFFF;

    --success: #10B981;
    --warning: #F59E0B;

    --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
    --shadow-primary: 0 8px 32px rgba(0,102,255,0.25);
    --shadow-blue-sm: 0 4px 16px rgba(0,102,255,0.20);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1200px;
    --section-padding: 100px 0;
}

/* =====================================================
   BASE RESET & GLOBAL
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    font-weight: 700;
}

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

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

ul { list-style: none; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #60B4FF 0%, #A0E4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-pale);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag-white {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-title-white { color: white; }

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.section-subtitle-white { color: rgba(255,255,255,0.85); }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,102,255,0.35);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-pale);
    transform: translateY(-2px);
}

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
}

.btn-whatsapp-footer:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.btn-whatsapp-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
    transition: var(--transition);
}

.btn-whatsapp-big:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

/* =====================================================
   NAVBAR & LINKS
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--radius);
}

.navbar.scrolled .nav-link { color: var(--gray-dark); }
.nav-link:hover { color: var(--secondary) !important; background: rgba(0,0,0,0.03); }

/* Language Switcher */
.nav-lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.navbar.scrolled .lang-btn {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: var(--dark);
}

.lang-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-1px);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
}

.navbar.scrolled .nav-cta {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar.scrolled .logo { color: var(--dark); }
.logo-white { color: white !important; }

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-blue-sm);
}

.logo-dot { color: var(--secondary); }
.navbar.scrolled .logo-dot { color: var(--primary); }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.navbar.scrolled .nav-link { color: var(--gray-dark); }

.nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: var(--primary-pale);
}

.nav-cta {
    background: white;
    color: var(--primary) !important;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-cta {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: var(--shadow-primary);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1628 0%, #0D2344 30%, #0052CC 70%, #0066FF 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0,102,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,180,216,0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(0,82,204,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: floatParticle var(--duration, 8s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
}

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0); opacity: 0.04; }
    100% { transform: translateY(-40px) rotate(180deg); opacity: 0.12; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-actions .btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 24px 40px;
    backdrop-filter: blur(20px);
    max-width: 700px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
    padding: 8px 32px;
    flex: 1;
    min-width: 120px;
}

.hero-stat-number {
    display: block;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: white;
    font-family: var(--font-primary);
    line-height: 1;
}

.hero-stat-suffix {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: 100px;
    display: block;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
    padding: 24px 0;
    background: white;
    border-bottom: 1px solid #F0F2F5;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}

.trust-bar .container::-webkit-scrollbar { display: none; }

.trust-label {
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.trust-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gray-pale);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-dark);
    white-space: nowrap;
    transition: var(--transition);
}

.trust-logo-item:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section { background: white; }

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

.about-visual {
    position: relative;
    min-height: 480px;
}

.about-card-main {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-primary);
}

.about-icon-big {
    font-size: 56px;
    margin-bottom: 16px;
}

.about-card-main h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-card-main p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.about-card-float {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite alternate;
}

.about-card-float-1 {
    top: -24px;
    right: -24px;
    animation-delay: 0s;
}

.about-card-float-2 {
    bottom: 40px;
    left: -24px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.float-icon {
    font-size: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-card-float strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    font-weight: 700;
}

.about-card-float small {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.about-deco-circle {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pale) 0%, rgba(0,180,216,0.1) 100%);
    z-index: 1;
}

.about-content .section-tag { display: inline-flex; margin-bottom: 16px; }

.about-text {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--gray-pale);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--primary-pale);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 2px;
}

.highlight-item small {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
    background: var(--gray-pale);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 90% 10%, rgba(0,102,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pale);
}

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

.service-card-featured {
    background: linear-gradient(135deg, var(--primary) 0%, #0044CC 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-primary);
}

.service-card-featured::before { display: none; }

.service-card-featured:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,102,255,0.35);
    border-color: transparent;
}

.service-badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.3);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-blue { background: #EBF3FF; color: var(--primary); }
.service-icon-indigo { background: #EEF2FF; color: #6366F1; }
.service-icon-purple { background: rgba(255,255,255,0.2); color: white; }
.service-icon-cyan { background: #E0F7FF; color: #0891B2; }
.service-icon-teal { background: #ECFDF5; color: #059669; }
.service-icon-orange { background: #FFF7ED; color: #EA580C; }

.service-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card-featured .service-title { color: white; }

.service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card-featured .service-desc { color: rgba(255,255,255,0.8); }

.service-features {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-features li {
    font-size: 13px;
    color: var(--gray-dark);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-card-featured .service-features li { color: rgba(255,255,255,0.85); }
.service-card-featured .service-features li::before { color: rgba(255,255,255,0.7); }

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-card-featured .service-link { color: rgba(255,255,255,0.9); }

.service-link:hover { gap: 8px; }

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team-section { background: white; }

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

.team-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #F0F2F5;
}

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

.team-card-header {
    position: relative;
    padding: 40px 32px 60px;
    display: flex;
    justify-content: center;
}

.team-header-primary {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
}

.team-header-secondary {
    background: linear-gradient(135deg, #0891B2 0%, #0E7490 100%);
}

.team-header-accent {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
}

.team-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.4);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.2);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-social-icon {
    position: absolute;
    bottom: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    box-shadow: var(--shadow-md);
}

.team-card-body {
    padding: 24px 28px 32px;
    background: white;
}

.team-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.team-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.team-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
}

.tag-blue { background: #EBF3FF; color: var(--primary); }
.tag-purple { background: #F5F3FF; color: #7C3AED; }
.tag-indigo { background: #EEF2FF; color: #6366F1; }
.tag-teal { background: #ECFDF5; color: #059669; }
.tag-cyan { background: #E0F7FF; color: #0891B2; }
.tag-orange { background: #FFF7ED; color: #EA580C; }
.tag-red { background: #FFF1F2; color: #E11D48; }

.team-bio {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-expertise strong {
    display: block;
    font-size: 12px;
    color: var(--gray-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.expertise-list span {
    font-size: 12px;
    background: var(--gray-pale);
    color: var(--gray-dark);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.team-cta {
    display: block;
    text-align: center;
    background: var(--primary-pale);
    color: var(--primary);
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.team-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* =====================================================
   PORTFOLIO SECTION
   ===================================================== */
.portfolio-section {
    position: relative;
    color: white;
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0A2444 100%);
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.portfolio-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.portfolio-card:hover::after { transform: scaleX(1); }

.portfolio-card-featured {
    background: linear-gradient(135deg, rgba(0,102,255,0.3) 0%, rgba(0,180,216,0.2) 100%);
    border-color: rgba(0,102,255,0.4);
}

.portfolio-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,215,0,0.15);
    color: gold;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,215,0,0.3);
}

.portfolio-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.portfolio-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    background: rgba(0,180,216,0.1);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,180,216,0.2);
}

.portfolio-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.portfolio-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio-tech span {
    font-size: 11px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
}

.portfolio-card-more {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.btn-portfolio-more {
    margin-top: 16px;
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.whyus-section { background: var(--gray-pale); }

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.whyus-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
}

.whyus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pale);
}

.whyus-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-pale);
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.whyus-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.whyus-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.whyus-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section { background: white; }

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-content .section-tag { display: inline-flex; margin-bottom: 16px; }

.contact-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid #E5E7EB;
    transition: var(--transition);
    color: var(--dark);
}

.contact-method:hover {
    border-color: var(--primary);
    background: var(--primary-pale);
    transform: translateX(4px);
}

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

.contact-method strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.contact-method span {
    font-size: 13px;
    color: var(--gray);
}

.contact-arrow {
    margin-left: auto;
    color: var(--gray-light);
    transition: var(--transition);
}

.contact-method:hover .contact-arrow { color: var(--primary); transform: translateX(4px); }

.contact-hours {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-box-inner {
    background: linear-gradient(135deg, #f8fbff 0%, #EBF3FF 100%);
    border: 2px solid var(--primary-pale);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.cta-box-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-box-inner h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-box-inner p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-box-perks {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-box-perks li {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--navy);
    padding: 72px 0 32px;
    color: white;
}

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

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-top: 12px;
    margin-bottom: 4px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }

.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-tech {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWa 3s ease-in-out infinite;
}

@keyframes pulseWa {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 32px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.5);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { min-height: 300px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .whyus-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */
@media (max-width: 768px) {
    :root { --section-padding: 64px 0; }

    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 8px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        z-index: 999;
    }

    .nav-links.open { right: 0; }
    
    .nav-link {
        color: var(--gray-dark) !important;
        font-size: 16px !important;
        width: 100%;
        padding: 12px 16px !important;
    }

    .nav-cta {
        background: var(--primary) !important;
        color: white !important;
        width: 100%;
        text-align: center;
        justify-content: center;
        border-radius: var(--radius) !important;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
        background: rgba(0,0,0,0.05) !important;
        color: var(--dark) !important;
        border-color: rgba(0,0,0,0.1) !important;
        margin: 8px 0;
    }

    .hero-stats {
        padding: 20px 16px;
        gap: 0;
    }
    
    .hero-stat { padding: 8px 16px; min-width: 90px; }
    .hero-stat-divider { height: 30px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .whyus-grid { grid-template-columns: 1fr 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .trust-bar .container { flex-direction: column; align-items: flex-start; }

    .whatsapp-float { bottom: 24px; right: 24px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
    .whyus-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; }
    .hero-stat-divider { width: 80px; height: 1px; }
    .hero-stat { padding: 12px; }
}

@media print {
    .navbar, .whatsapp-float, .hero-particles { display: none; }
    .hero { min-height: auto; padding: 40px 0; }
    .section { padding: 40px 0; }
}
