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

:root {
  --bg-primary: #fafbfc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent-cyan: #0ea5e9;
  --accent-coral: #f97316;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(14,165,233,0.08) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.06) 0%, transparent 50%),
                   radial-gradient(ellipse at 60% 80%, rgba(249,115,22,0.04) 0%, transparent 50%);
  --border-subtle: rgba(0,0,0,0.08);
  --border-accent: rgba(14,165,233,0.3);
  --shadow-glow: 0 0 40px rgba(14,165,233,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #cbd5e0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; text-align: justify; }
a { color: var(--accent-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text-primary); }
strong { color: var(--text-primary); font-weight: 600; }
ul, ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
li { color: var(--text-secondary); margin-bottom: 0.5rem; text-align: justify; }

/* === CONTENT ALIGNMENT === */
.section-header p,
.card p,
.content-section p,
.page-hero p,
.hero-content p {
  text-align: justify;
  width: 100%;
}

.section-header {
  width: 100%;
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center p {
  text-align: justify;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Ensure all content sections use full width */
.content-section,
.page-hero .container,
.section .container {
  width: 100%;
  max-width: var(--max-width);
}

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
}

/* === HEADER / NAV === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1400px; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }
.logo span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Main Navigation */
.nav { display: flex; align-items: center; gap: 0; }
.nav > a, .nav-dropdown > a {
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  transition: var(--transition); cursor: pointer; display: flex; align-items: center; gap: 0.4rem;
}
.nav > a:hover, .nav-dropdown > a:hover { color: var(--text-primary); background: rgba(0,0,0,0.05); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7em; transition: transform 0.3s ease; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }

/* Mega Menu - Opens Below Header */
.mega-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: megaSlideDown 0.3s ease;
  min-width: 600px;
  padding: 2rem;
}
@keyframes megaSlideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown:hover .mega-menu { display: block; }
.mega-menu-inner {
  display: grid; gap: 2rem;
}
.mega-menu-inner.two-col { grid-template-columns: repeat(2, 1fr); }
.mega-menu-inner.one-col { grid-template-columns: 1fr; }
.mega-col h6 {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent-cyan); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-subtle);
}
.mega-col a {
  display: block; padding: 0.5rem 0.75rem; margin-bottom: 0.25rem;
  color: var(--text-secondary); font-size: 0.88rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mega-col a:hover {
  color: var(--text-primary); background: rgba(0,102,255,0.08);
  padding-left: 1rem;
}

/* Simple Dropdown */
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 0.75rem; min-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: megaSlideDown 0.2s ease;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--text-secondary);
}
.dropdown-menu a:hover { color: var(--text-primary); background: rgba(0,102,255,0.08); }

/* CTA Button */
.nav-cta {
  background: var(--gradient-primary); color: var(--bg-primary) !important;
  font-weight: 600; padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-xl) !important; margin-left: 0.5rem;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--shadow-glow); }

/* Mobile Menu */
.mobile-toggle {
  display: none; background: none; border: none; color: var(--text-primary);
  font-size: 1.5rem; cursor: pointer; padding: 0.5rem;
}
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 999; backdrop-filter: blur(4px);
}
.mobile-overlay.active { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
  background: var(--bg-primary); z-index: 1001; padding: 2rem 1.5rem;
  overflow-y: auto; transition: right 0.3s ease;
  border-left: 1px solid var(--border-subtle);
}
.mobile-nav.active { right: 0; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-close {
  background: none; border: none; color: var(--text-primary);
  font-size: 1.5rem; cursor: pointer;
}
.mobile-nav-section { margin-bottom: 1.5rem; }
.mobile-nav-section h6 {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent-cyan); margin-bottom: 0.75rem;
}
.mobile-nav-section a {
  display: block; padding: 0.6rem 0.75rem; color: var(--text-secondary);
  font-size: 0.9rem; border-radius: var(--radius-sm); margin-bottom: 0.25rem;
}
.mobile-nav-section a:hover { color: var(--text-primary); background: rgba(0,0,0,0.05); }

@media (max-width: 1200px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
}

/* === HERO === */
.hero {
  min-height: 85vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-mesh);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  padding: 0.4rem 1.2rem; border-radius: var(--radius-xl);
  font-size: 0.85rem; color: var(--accent-cyan); margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .gradient-text {
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.2rem; max-width: 600px; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius-xl);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-primary); color: white;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow-glow); color: white; }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 2px solid var(--border-subtle);
}
.btn-secondary:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* === CARDS === */
.card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-primary); opacity: 0; transition: var(--transition);
}
.card:hover { border-color: var(--border-accent); transform: translateY(-4px); background: var(--bg-card-hover); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(0,102,255,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h4 { margin-bottom: 0.75rem; color: var(--text-primary); }
.card p { font-size: 0.95rem; margin-bottom: 0; }

/* === SERVICE PAGE LAYOUT === */
.page-hero {
  padding: 10rem 0 4rem; position: relative;
  background: var(--gradient-mesh);
}
.page-hero .breadcrumb {
  display: flex; gap: 0.5rem; font-size: 0.85rem;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: var(--text-muted); }
.page-hero .breadcrumb a:hover { color: var(--accent-cyan); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero h1 .gradient-text {
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .lead { font-size: 1.15rem; max-width: 700px; color: var(--text-secondary); }

.content-section { padding: 4rem 0; }
.content-section h2 { margin-bottom: 1.5rem; }
.content-section h3 { margin-bottom: 1rem; margin-top: 2rem; }
.content-section p { font-size: 1.05rem; line-height: 1.8; }
.content-section ul { list-style: none; padding: 0; }
.content-section ul li {
  padding: 0.5rem 0 0.5rem 1.75rem; position: relative;
}
.content-section ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent-cyan);
  font-weight: 700;
}

/* === PROCESS STEPS === */
.process-steps { counter-reset: step; }
.process-step {
  display: flex; gap: 1.5rem; margin-bottom: 2.5rem;
  padding: 2rem; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.process-step:hover { border-color: var(--border-accent); }
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; min-width: 60px;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { margin-bottom: 0; font-size: 0.95rem; }

/* === STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem; }
.stat-number {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 0.5rem;
}
.stat-label { color: var(--text-secondary); font-size: 0.9rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* === CTA SECTION === */
.cta-section {
  padding: 6rem 0; text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0,212,255,0.03) 50%, transparent 100%);
  position: relative;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* === FOOTER === */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer h5 { font-family: var(--font-heading); color: var(--text-primary); margin-bottom: 1.25rem; font-size: 1rem; }
.footer a { color: var(--text-muted); font-size: 0.9rem; display: block; padding: 0.3rem 0; }
.footer a:hover { color: var(--accent-cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem; color: var(--text-muted);
}
.footer p { color: var(--text-muted); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* === MISC === */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent-cyan); margin-bottom: 1rem;
}
.section-header { margin-bottom: 3rem; width: 100%; }
.section-header p { font-size: 1.1rem; text-align: justify; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.divider {
  height: 1px; background: var(--border-subtle);
  margin: 3rem 0; border: none;
}

.tag {
  display: inline-block; padding: 0.3rem 0.8rem;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-xl); font-size: 0.8rem;
  color: var(--accent-cyan); margin: 0.25rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-in { animation: fadeInUp 0.6s ease-out forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* === TABLE === */
.pricing-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.pricing-table th, .pricing-table td {
  padding: 1rem 1.5rem; text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-table th {
  font-family: var(--font-heading); font-weight: 600;
  color: var(--text-primary); background: var(--bg-card);
}
.pricing-table td { color: var(--text-secondary); }
.pricing-table tr:hover td { background: rgba(0,212,255,0.02); }

/* === ACCORDION === */
.accordion-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden;
}
.accordion-header {
  padding: 1.25rem 1.5rem; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 600;
  color: var(--text-primary); transition: var(--transition);
}
.accordion-header:hover { color: var(--accent-cyan); }
.accordion-body { padding: 0 1.5rem 1.25rem; display: none; }
.accordion-body p { margin-bottom: 0; }
.accordion-item.active .accordion-body { display: block; }
.accordion-item.active .accordion-header { color: var(--accent-cyan); }

/* === FORMS === */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.9rem; font-weight: 500;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* === TWO-COLUMN CONTENT === */
.content-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .content-two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* === TESTIMONIAL === */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: var(--font-heading); font-size: 4rem;
  color: var(--accent-cyan); opacity: 0.3; position: absolute;
  top: 0.5rem; left: 1.5rem; line-height: 1;
}
.testimonial-text { font-style: italic; margin-bottom: 1.5rem; padding-top: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: var(--bg-primary);
}
.testimonial-name { font-weight: 600; color: var(--text-primary); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* === HERO WITH IMAGE === */
.hero-with-image {
  min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero-with-image::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-mesh);
}
.hero-text { position: relative; z-index: 2; }
.hero-image {
  position: relative; z-index: 2;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-image img {
  width: 100%; height: auto; display: block;
}
.hero-image-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(124,92,252,0.1) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--accent-cyan); opacity: 0.3;
}
@media (max-width: 1024px) {
  .hero-with-image { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding: 8rem 0 4rem; }
}

/* === PARTNER LOGOS === */
.partners-section {
  padding: 4rem 0; background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.partners-grid {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 3rem;
}
.partner-logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--text-muted); opacity: 0.5; transition: var(--transition);
  cursor: default;
}
.partner-logo:hover { opacity: 1; color: var(--text-primary); }

/* === SERVICE BOXES === */
.service-boxes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-box {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: left;
}
.service-box:hover {
  border-color: var(--border-accent); transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,212,255,0.1);
}
.service-box:hover::before { transform: scaleX(1); }
.service-box-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: rgba(0,212,255,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem;
}
.service-box h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.service-box p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-box-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent-cyan); font-weight: 600; font-size: 0.9rem;
}
.service-box-link:hover { gap: 0.75rem; }

/* === ENHANCED FOOTER === */
.footer-enhanced {
  background: var(--bg-secondary); border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand p { margin-top: 1.5rem; font-size: 0.95rem; max-width: 300px; }
.footer-social {
  display: flex; gap: 1rem; margin-top: 2rem;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-primary); display: flex; align-items: center;
  justify-content: center; color: var(--text-secondary);
  transition: var(--transition); font-size: 1.1rem;
  border: 1px solid var(--border-subtle);
}
.footer-social a:hover {
  background: var(--gradient-primary); color: white;
  transform: translateY(-3px); border-color: transparent;
}
.footer-col h5 {
  font-family: var(--font-heading); color: var(--text-primary);
  margin-bottom: 1.5rem; font-size: 1rem; font-weight: 600;
}
.footer-col a {
  color: var(--text-muted); font-size: 0.9rem; display: block;
  padding: 0.4rem 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent-cyan); padding-left: 0.5rem; }
.footer-bottom-enhanced {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent-cyan); }
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-enhanced { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 0.75rem; }
}

/* === PRICING PAGE STYLES === */
.currency-toggle {
  display: inline-flex; background: var(--bg-secondary); border-radius: var(--radius-xl);
  padding: 0.25rem; border: 1px solid var(--border-subtle);
}
.toggle-btn {
  padding: 0.6rem 1.5rem; border: none; background: transparent;
  color: var(--text-secondary); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border-radius: var(--radius-xl); transition: var(--transition);
}
.toggle-btn.active {
  background: var(--gradient-primary); color: white;
}
.toggle-btn:hover:not(.active) { color: var(--text-primary); }

.price-display {
  margin: 1.5rem 0; padding: 1rem; background: var(--bg-secondary);
  border-radius: var(--radius-md); text-align: center;
}
.price-display .price-usd,
.price-display .price-inr {
  font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading);
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-period {
  font-size: 1rem; color: var(--text-muted); font-weight: 400;
}

.feature-list {
  list-style: none; padding: 0; margin: 2rem 0;
}
.feature-list li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary); font-size: 0.95rem;
}
.feature-list li.disabled { color: var(--text-muted); opacity: 0.5; }
.feature-list li:last-child { border-bottom: none; }

.card.featured {
  border: 2px solid var(--accent-cyan); position: relative;
  box-shadow: 0 0 40px rgba(0,102,255,0.15);
}
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: white;
  padding: 0.4rem 1.5rem; border-radius: var(--radius-xl);
  font-size: 0.85rem; font-weight: 700; white-space: nowrap;
}

.service-pricing-card {
  display: block; padding: 2rem; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  transition: var(--transition); text-decoration: none;
}
.service-pricing-card:hover {
  border-color: var(--border-accent); transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,102,255,0.1);
}
.service-pricing-card h3 { margin-bottom: 0.75rem; }
.service-pricing-card p { margin-bottom: 1rem; }
.price-range {
  font-size: 1.25rem; font-weight: 700; color: var(--accent-cyan);
  margin-bottom: 1rem;
}
.view-details {
  color: var(--accent-cyan); font-weight: 600; font-size: 0.9rem;
}

.comparison-table {
  overflow-x: auto; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}
.comparison-table table {
  width: 100%; border-collapse: collapse; min-width: 700px;
}
.comparison-table th {
  padding: 1.25rem 1rem; text-align: left;
  background: var(--bg-secondary); color: var(--text-primary);
  font-family: var(--font-heading); font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: 1rem; border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(0,102,255,0.02); }

.faq-accordion { max-width: 800px; }
.accordion-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); margin-bottom: 0.75rem;
  overflow: hidden; transition: var(--transition);
}
.accordion-header {
  padding: 1.25rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--text-primary);
  transition: var(--transition);
}
.accordion-header::after {
  content: '+'; font-size: 1.5rem; color: var(--accent-cyan);
  transition: var(--transition);
}
.accordion-item.active .accordion-header::after {
  content: '−';
}
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.accordion-item.active .accordion-body { max-height: 500px; }
.accordion-body p {
  padding: 0 1.5rem 1.25rem; margin: 0;
}

@media (max-width: 768px) {
  .currency-toggle { width: 100%; }
  .toggle-btn { flex: 1; text-align: center; }
  .price-display .price-usd,
  .price-display .price-inr { font-size: 2rem; }
}

/* === FLOATING CONTACT BUTTONS === */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}
.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.contact-btn.whatsapp {
  background: #25D366;
}
.contact-btn.whatsapp:hover {
  background: #20BD5A;
}
.contact-btn.email {
  background: var(--accent-cyan);
}
.contact-btn.email:hover {
  background: #0052cc;
}
.contact-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.contact-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact-btn:hover .tooltip {
  opacity: 1;
}
@media (max-width: 768px) {
  .floating-contact {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .contact-btn {
    width: 50px;
    height: 50px;
  }
  .contact-btn svg {
    width: 26px;
    height: 26px;
  }
  .contact-btn .tooltip {
    display: none;
  }
}
