/* =============================================
   AttendoPay — Custom Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary:      #4f46e5;
  --primary-dark: #3730a3;
  --secondary:    #06b6d4;
  --accent:       #f59e0b;
  --dark:         #0f172a;
  --dark-card:    #1e293b;
  --light:        #f8fafc;
  --text:         #1e293b;
  --text-muted:   #64748b;
  --border:       rgba(79,70,229,.15);
  --radius:       16px;
  --transition:   all .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* === NAVBAR === */
.navbar { padding: 18px 0; transition: var(--transition); z-index: 1000; }
.navbar.scrolled {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
  padding: 12px 0;
}
.navbar-brand {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.navbar-brand span { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.nav-link { font-weight: 500; color: #fff !important; padding: 8px 16px !important; border-radius: 8px; transition: var(--transition); position: relative; }
.navbar.scrolled .nav-link { color: var(--text) !important; }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 16px; width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 32px); }
.nav-link:hover { color: rgba(255,255,255,.75) !important; }
.navbar.scrolled .nav-link:hover { color: var(--primary) !important; }
.btn-nav { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff !important; border-radius: 50px !important; padding: 9px 24px !important; font-weight: 600; box-shadow: 0 4px 20px rgba(79,70,229,.35); }
.btn-nav::after { display: none; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,70,229,.45); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.navbar.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30,41,59,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* === HERO === */
.hero { min-height: 100vh; background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%); position: relative; display: flex; align-items: center; overflow: hidden; }
#particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .25; animation: blobFloat 8s ease-in-out infinite alternate; }
.hero-blob-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-delay: -3s; }
.hero-blob-3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 40%; animation-delay: -5s; }
@keyframes blobFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,40px) scale(1.1); } }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(79,70,229,.2); border: 1px solid rgba(79,70,229,.4); color: #a5b4fc; padding: 8px 20px; border-radius: 50px; font-size: .85rem; font-weight: 500; margin-bottom: 24px; animation: fadeInDown .8s ease forwards; }
.hero-badge-dot { width: 8px; height: 8px; background: #22d3ee; border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }
.hero h1 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 800; color: #fff; line-height: 1.15; animation: fadeInUp .8s .2s ease both; }
.hero h1 .gradient-text { background: linear-gradient(135deg,#818cf8,#22d3ee,#f59e0b); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientShift 4s ease infinite; }
@keyframes gradientShift { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
#typewriter { color: #22d3ee; }
.hero p { font-size: 1.1rem; color: #94a3b8; max-width: 560px; line-height: 1.8; animation: fadeInUp .8s .4s ease both; }
.hero-btns { animation: fadeInUp .8s .6s ease both; }
.btn-hero-primary { background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; border: none; padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem; box-shadow: 0 8px 30px rgba(79,70,229,.4); transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(79,70,229,.5); color: #fff; }
.btn-hero-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; transform: translateY(-3px); }
.hero-image-wrapper { position: relative; animation: fadeInRight .8s .3s ease both; }
.hero-float-card { position: absolute; background: rgba(255,255,255,.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; color: #fff; font-size: .85rem; font-weight: 500; animation: floatCard 4s ease-in-out infinite alternate; }
.hero-float-card .icon { font-size: 1.5rem; }
.hero-float-card-1 { bottom: 60px; left: -40px; animation-delay: 0s; }
.hero-float-card-2 { top: 40px; right: -30px; animation-delay: -2s; }
@keyframes floatCard { 0% { transform: translateY(0); } 100% { transform: translateY(-12px); } }
.hero-stat .number { font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat .label  { font-size: .8rem; color: #94a3b8; font-weight: 500; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.15); height: 50px; margin: 0 20px; }

/* === ANIMATIONS === */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown  { from { opacity:0; transform:translateY(-30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft  { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* === SECTION COMMON === */
section { padding: 100px 0; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(79,70,229,.08); border: 1px solid var(--border); color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--text); line-height: 1.25; }
.section-title span { background: linear-gradient(135deg,var(--primary),var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* === LOGOS === */
.logos-strip { padding: 50px 0; background: var(--light); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; overflow: hidden; }
.logos-track { display: flex; gap: 60px; animation: logoScroll 25s linear infinite; width: max-content; }
.logo-item { font-size: 1.2rem; font-weight: 700; color: #cbd5e1; white-space: nowrap; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.logo-item:hover { color: var(--primary); }
@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === SERVICE CARDS === */
.service-card { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius); padding: 36px 30px; height: 100%; transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(79,70,229,.06),rgba(6,182,212,.06)); opacity: 0; transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 60px rgba(79,70,229,.15); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg,rgba(79,70,229,.1),rgba(6,182,212,.1)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 24px; transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.service-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.service-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: .85rem; font-weight: 600; margin-top: 20px; text-decoration: none; transition: var(--transition); }
.service-arrow:hover { gap: 10px; }

/* === STATS === */
.stats-section { background: linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 50%,#1e1b4b 100%); position: relative; overflow: hidden; }
.stats-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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.stat-card { text-align: center; position: relative; }
.stat-card .count { font-size: 3rem; font-weight: 900; color: #fff; display: block; }
.stat-card .plus  { color: var(--accent); }
.stat-card .stat-label { color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 500; margin-top: 4px; }
.stat-card .stat-icon  { font-size: 2rem; color: rgba(255,255,255,.2); margin-bottom: 12px; }

/* === FEATURE ITEMS === */
.feature-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 12px; transition: var(--transition); }
.feature-item:hover { background: var(--light); }
.feature-icon-wrap { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg,var(--primary),var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; box-shadow: 0 8px 20px rgba(79,70,229,.3); }
.feature-item h5 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-item p  { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* === PROCESS === */
.process-step { text-align: center; position: relative; }
.process-step::after { content: ''; position: absolute; top: 35px; right: -50%; width: 100%; height: 2px; background: linear-gradient(90deg,var(--primary),transparent); z-index: 0; }
.process-step:last-child::after { display: none; }
.step-number { width: 70px; height: 70px; background: linear-gradient(135deg,var(--primary),var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 auto 20px; position: relative; z-index: 1; box-shadow: 0 10px 30px rgba(79,70,229,.35); transition: var(--transition); }
.process-step:hover .step-number { transform: scale(1.1); }

/* === TESTIMONIALS === */
.testimonial-card { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius); padding: 36px; position: relative; transition: var(--transition); height: 100%; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-size: 5rem; color: var(--primary); opacity: .1; font-family: Georgia,serif; line-height: 1; }
.testimonial-card:hover { box-shadow: 0 20px 60px rgba(79,70,229,.12); transform: translateY(-4px); border-color: var(--primary); }
.stars { color: var(--accent); font-size: .9rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text-muted); font-size: .95rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--secondary)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.author-role { font-size: .8rem; color: var(--text-muted); }

/* === BLOG CARDS === */
.blog-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid #e2e8f0; transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(79,70,229,.12); border-color: var(--primary); }
.blog-img-wrapper { overflow: hidden; height: 220px; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.08); }
.blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { display: inline-block; background: rgba(79,70,229,.08); color: var(--primary); font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.blog-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.5; margin-bottom: 12px; }
.blog-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.blog-meta    { display: flex; align-items: center; gap: 16px; font-size: .8rem; color: #94a3b8; }
.blog-meta i  { color: var(--primary); }
.btn-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: .85rem; text-decoration: none; transition: var(--transition); }
.btn-read-more:hover { gap: 10px; }

/* === BLOG SEARCH === */
.blog-search-bar { background: #fff; border: 2px solid #e2e8f0; border-radius: 50px; overflow: hidden; display: flex; transition: var(--transition); }
.blog-search-bar:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,.1); }
.blog-search-bar input { border: none; outline: none; padding: 14px 24px; flex: 1; font-family: 'Poppins',sans-serif; font-size: .9rem; }
.blog-search-bar button { background: var(--primary); border: none; color: #fff; padding: 14px 24px; cursor: pointer; transition: var(--transition); }
.blog-search-bar button:hover { background: var(--primary-dark); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item { background: var(--light); color: var(--text-muted); border: 1px solid #e2e8f0; padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 500; text-decoration: none; transition: var(--transition); cursor: pointer; }
.tag-item:hover, .tag-item.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* === CTA === */
.cta-section { background: linear-gradient(135deg,var(--dark),#1e1b4b); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(79,70,229,.25),transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-section h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; margin-bottom: 20px; }
.cta-section p  { color: #94a3b8; font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; }

/* === OFFICES INFO BAR === */
.offices-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1031; background: #f1f5f9; border-bottom: 1px solid #e2e8f0; padding: 8px 0; font-size: .84rem; color: #475569; }
.offices-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.offices-bar-left { display: flex; align-items: center; gap: 0 14px; }
.offices-bar-item { display: flex; align-items: center; white-space: nowrap; }
.offices-bar-label { font-weight: 700; color: var(--text); margin-right: 2px; }
.offices-bar-sep { color: #cbd5e1; padding: 0 2px; }
.offices-bar-right { display: flex; align-items: center; gap: 14px; }
.offices-social { color: #64748b; font-size: .95rem; transition: color .25s; }
.offices-social:hover { color: var(--primary); }
/* Desktop: push navbar below the fixed offices-bar */
@media (min-width: 992px) {
  .navbar { top: 40px !important; }
}
/* Mobile/tablet: hide offices-bar, navbar sits at very top */
@media (max-width: 991px) {
  .offices-bar { display: none; }
}

/* === FOOTER === */
.footer { background: var(--dark); color: #94a3b8; padding: 80px 0 0; }
.footer-brand .brand-name { font-size: 1.6rem; font-weight: 800; color: #fff; }
.footer-brand .brand-name span { color: var(--secondary); }
.footer-desc { color: #64748b; font-size: .9rem; line-height: 1.8; max-width: 280px; margin-top: 12px; }
.footer-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; }
.footer-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #64748b; font-size: .9rem; text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1.1rem; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--primary); margin-top: 3px; }
.footer-contact-item span { font-size: .9rem; color: #64748b; line-height: 1.6; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #94a3b8; text-decoration: none; transition: var(--transition); }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; margin-top: 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; font-size: .85rem; color: #475569; }
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* === PAGE HERO === */
.page-hero { padding: 160px 0 80px; background: linear-gradient(135deg,#0f172a,#1e1b4b); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle,rgba(79,70,229,.2),transparent 70%); top: -100px; right: -100px; }
.page-hero h1 { font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 800; color: #fff; }
.page-hero .breadcrumb-item a { color: #a5b4fc; text-decoration: none; }
.page-hero .breadcrumb-item.active { color: #94a3b8; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #64748b; }

/* === ABOUT === */
.about-img-wrap { position: relative; display: inline-block; }
.about-exp-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; border-radius: 16px; padding: 20px 24px; text-align: center; box-shadow: 0 20px 40px rgba(79,70,229,.4); }
.about-exp-badge .num { font-size: 2.5rem; font-weight: 900; display: block; }
.about-exp-badge .txt { font-size: .75rem; font-weight: 600; opacity: .9; }
.value-card { text-align: center; padding: 40px 24px; border-radius: var(--radius); border: 1px solid #e2e8f0; transition: var(--transition); }
.value-card:hover { border-color: var(--primary); box-shadow: 0 20px 60px rgba(79,70,229,.1); transform: translateY(-6px); }
.value-icon { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg,rgba(79,70,229,.1),rgba(6,182,212,.1)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; transition: var(--transition); }
.value-card:hover .value-icon { background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; }

/* === TEAM === */
.team-card { text-align: center; padding: 36px 24px; background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius); transition: var(--transition); }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(79,70,229,.12); border-color: var(--primary); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: #fff; margin: 0 auto 20px; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: .85rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.team-bio  { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-social-btn { width: 34px; height: 34px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: .85rem; transition: var(--transition); }
.team-social-btn:hover { background: var(--primary); color: #fff; }

/* === TIMELINE === */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom,var(--primary),var(--secondary)); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot { position: absolute; left: -32px; top: 6px; width: 16px; height: 16px; background: var(--primary); border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 4px rgba(79,70,229,.2); }
.timeline-year { font-size: .8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.timeline-item h5 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline-item p  { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* === PRICING === */
.pricing-card { background: #fff; border: 2px solid #e2e8f0; border-radius: 24px; padding: 40px 36px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.pricing-card.featured { border-color: var(--primary); background: linear-gradient(135deg,rgba(79,70,229,.03),rgba(6,182,212,.03)); box-shadow: 0 20px 60px rgba(79,70,229,.15); }
.pricing-badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: #fff; padding: 4px 14px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 25px 70px rgba(79,70,229,.15); border-color: var(--primary); }
.pricing-plan { font-size: .85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: .875rem; color: var(--text-muted); margin: 12px 0 28px; }
.pricing-features { list-style: none; padding: 0; text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; font-size: .875rem; color: var(--text); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #f1f5f9; }
.pricing-features li i.fa-check { color: #22c55e; }
.pricing-features li i.fa-xmark  { color: #ef4444; }

/* === CONTACT === */
.contact-card { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius); padding: 32px; text-align: center; transition: var(--transition); }
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(79,70,229,.12); border-color: var(--primary); }
.contact-card-icon { width: 70px; height: 70px; background: linear-gradient(135deg,rgba(79,70,229,.1),rgba(6,182,212,.1)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; transition: var(--transition); }
.contact-card:hover .contact-card-icon { background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; }
.contact-card h5 { font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-card p  { font-size: .9rem; color: var(--text-muted); margin: 0; }
.contact-form-wrapper { background: #fff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 48px; box-shadow: 0 20px 60px rgba(0,0,0,.06); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,.1); }
.btn-primary-custom { background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; border: none; padding: 14px 40px; border-radius: 50px; font-weight: 600; font-size: 1rem; box-shadow: 0 8px 30px rgba(79,70,229,.35); transition: var(--transition); width: 100%; }
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(79,70,229,.45); }

/* === UTILITY === */
.text-gradient { background: linear-gradient(135deg,var(--primary),var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text  { background: linear-gradient(135deg,#818cf8,#22d3ee,#f59e0b); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn-primary-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; padding: 12px 32px; border-radius: 50px; font-weight: 600; transition: var(--transition); text-decoration: none; display: inline-block; }
.btn-primary-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-primary-solid { background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; padding: 12px 32px; border-radius: 50px; font-weight: 600; border: none; transition: var(--transition); text-decoration: none; display: inline-block; box-shadow: 0 8px 25px rgba(79,70,229,.35); }
.btn-primary-solid:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(79,70,229,.45); color: #fff; }

/* === BACK TO TOP === */
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; border: none; border-radius: 14px; cursor: pointer; box-shadow: 0 8px 30px rgba(79,70,229,.4); display: none; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); z-index: 9999; }
#backToTop:hover { transform: translateY(-4px); }
#backToTop.show { display: flex; animation: fadeInUp .4s ease; }

/* === PRELOADER === */
#preloader { position: fixed; inset: 0; background: var(--dark); display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity .5s ease, visibility .5s ease; }
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-ring { width: 60px; height: 60px; border: 3px solid rgba(79,70,229,.2); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-float-card { display: none; }
  .process-step::after { display: none; }
  section { padding: 70px 0; }
  .contact-form-wrapper { padding: 32px 24px; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2.2rem; }
  .stat-card .count { font-size: 2.2rem; }
  .footer-bottom { text-align: center; justify-content: center; }
}
