/* NETSOL COMPUTERS - CONSOLIDATED CSS */
/* All styles consolidated into single file for easy maintenance */

:root {
  --brand: #0f6cff;
  --accent: #ffb400;
  --dark: #0f1419;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --maxw: 1200px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text);
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 800; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.375rem; font-weight: 700; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text);
}

.muted-sm {
  color: var(--muted);
  font-size: 14px;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
  color: #000000;
  padding: 20px 40px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 12px 40px rgba(255, 180, 0, 0.5), 0 4px 16px rgba(255, 180, 0, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, var(--accent) 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 50px rgba(255, 180, 0, 0.6), 0 6px 20px rgba(255, 180, 0, 0.4);
}

.btn-primary:focus {
  outline: 3px solid rgba(255, 180, 0, 0.6);
  outline-offset: 2px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 18px 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-ghost:focus {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

/* ===== HEADER STYLES ===== */
header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  min-height: 80px;
}

.topwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.brand h1 {
  color: #1e293b;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.brand .muted-sm {
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

nav.primary a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 6px;
}

nav.primary a:hover {
  color: var(--brand);
  background: rgba(15, 108, 255, 0.1);
}

nav.primary a:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

nav.primary a.cta {
  background: var(--accent);
  color: #000000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

nav.primary a.cta:hover {
  background: #e6a700;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #374151;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 25%, #2d3748 50%, #1a202c 75%, #0f1419 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #ffffff;
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(15, 108, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 180, 0, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  min-height: 500px;
  position: relative;
}

.hero-left {
  padding-right: 20px;
  position: relative;
}

.hero-right {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 4;
  position: relative;
  overflow: hidden;
}

.hero h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.6);
  position: relative;
}

.hero h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: 2px;
}

.hero p {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
  position: relative;
  opacity: 0.95;
}

.hero .muted-sm {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
}

/* Experience Badge */
.hero .experience-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  max-width: fit-content;
}

.hero .experience-badge .accent-bar {
  width: 48px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: 6px;
  flex-shrink: 0;
}

.hero .experience-badge .badge-text {
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero .stat {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  flex: 0 0 auto;
}

.hero .stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: 20px 20px 0 0;
}

.hero .stat:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.1);
}

.hero .stat .stat-number {
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(255, 180, 0, 0.3);
  position: relative;
}

.hero .stat .stat-label {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Right Content */
.hero-right strong {
  color: #1e293b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
  position: relative;
}

.hero-right strong::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 2px;
}

.hero-right .muted-sm {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-right .contact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.hero-right .contact-card p {
  margin: 0 0 15px;
  color: var(--text);
  font-weight: 500;
}

.hero-right .contact-card .contact-desc {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.hero-right .contact-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-right .contact-buttons a {
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.hero-right .contact-buttons i {
  margin-right: 5px;
}

/* Hero Additional Styles */
.hero-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.hero-contact-phone {
  margin-top: 8px;
}

.hero-contact-section {
  margin-top: 12px;
}

.contact-desc {
  margin: 0 0 15px;
  color: var(--text);
  font-weight: 500;
}

.contact-subdesc {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.contact-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Contact Form in Hero */
.hero-right .contact-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.hero-right .contact-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 108, 255, 0.1);
}

.hero-right .contact-form button {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 8px;
}

/* About Image */
.about-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Feature Elements */
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(15, 108, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--brand);
}

.feature .icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
}

.feature .muted-sm {
  margin: 0;
  line-height: 1.6;
}

/* Section Headers */
.section-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h3 {
  margin: 16px 0 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  position: relative;
}

.section-head .accent {
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  margin: 0 auto 24px;
  border-radius: 6px;
  position: relative;
}

.section-head .accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(15, 108, 255, 0.2);
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(15, 108, 255, 0.3);
}

.step h4 {
  margin-top: 20px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.25rem;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq .q {
  background: var(--card);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .q:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.faq .qhead {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq .qhead:hover {
  background: rgba(15, 108, 255, 0.05);
}

.faq .qbody {
  padding: 0 32px 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .q.open .qbody {
  max-height: 200px;
  padding: 0 32px 24px;
}

/* Contact Wrap */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-box {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-box h4 {
  margin-bottom: 16px;
  color: var(--text);
}

/* WhatsApp Button Specific */
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: rgba(248, 250, 252, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
  position: relative;
}

.section-header .accent {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  margin: 0 auto 24px;
  border-radius: 6px;
  position: relative;
}

.section-header .accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(15, 108, 255, 0.2);
}

.section-header .muted-sm {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== CARDS ===== */
.content-card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--card);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 300px;
  max-height: 300px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: 16px 16px 0 0;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(15, 108, 255, 0.2);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: 16px;
  display: block;
  flex-shrink: 0;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  flex-shrink: 0;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 4rem;
  color: var(--brand);
  opacity: 0.2;
  font-family: serif;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
  padding-left: 40px;
  font-style: italic;
}

.testimonial .muted-sm {
  color: var(--muted);
  font-weight: 500;
  margin: 0;
  padding-left: 40px;
}

/* ===== BRAND CARDS ===== */
.brand-card {
  background: var(--card);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.brand-name {
  font-size: 48px;
  font-weight: bold;
  color: var(--brand);
  margin-bottom: 10px;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-weight: 800;
  font-size: 24px;
  color: var(--brand);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--card);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 24px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
  background: rgba(15, 108, 255, 0.05);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== CONTACT SECTIONS ===== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-method {
  text-align: center;
  padding: 24px 20px;
  background: rgba(15, 108, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 108, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-method:hover {
  background: rgba(15, 108, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 108, 255, 0.2);
}

.contact-method i {
  font-size: 24px;
  color: var(--brand);
  margin-bottom: 10px;
}

.contact-method h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.contact-method p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

.footer-section p,
.footer-section a {
  color: #e2e8f0;
  text-decoration: none;
  line-height: 1.7;
  margin-bottom: 12px;
  display: block;
  font-size: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--brand);
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-info i {
  margin-right: 10px;
  width: 16px;
  color: var(--brand);
}

.whatsapp-link {
  color: #25d366 !important;
}

.whatsapp-link:hover {
  color: #128c7e !important;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
}

.footer-bottom a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.whatsapp-btn:hover::before {
  left: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #22c55e 0%, #0f766e 100%);
}

.whatsapp-btn i {
  font-size: 24px;
  margin-right: 12px;
  animation: bounce 2s infinite;
}

.whatsapp-text {
  white-space: nowrap;
  font-size: 15px;
}

/* WhatsApp Widget Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* WhatsApp Chat Bubble */
.whatsapp-chat-bubble {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border: 2px solid #25d366;
}

.whatsapp-chat-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.whatsapp-chat-bubble::before {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 29px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid #25d366;
}

.chat-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.chat-avatar i {
  color: white;
  font-size: 20px;
}

.chat-info h4 {
  margin: 0;
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
}

.chat-info p {
  margin: 0;
  font-size: 12px;
  color: #25d366;
  font-weight: 500;
}

.chat-message {
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.chat-actions {
  display: flex;
  gap: 10px;
}

.chat-btn {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.chat-btn-primary {
  background: #25d366;
  color: white;
}

.chat-btn-primary:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.chat-btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.chat-btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* Responsive WhatsApp Widget */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-btn {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .whatsapp-btn i {
    font-size: 22px;
    margin-right: 10px;
  }
  
  .whatsapp-text {
    font-size: 14px;
  }
  
  .whatsapp-chat-bubble {
    bottom: 90px;
    right: 15px;
    max-width: 260px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .whatsapp-widget {
    bottom: 10px;
    right: 10px;
  }
  
  .whatsapp-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .whatsapp-btn i {
    font-size: 20px;
    margin-right: 8px;
  }
  
  .whatsapp-text {
    font-size: 13px;
  }
  
  .whatsapp-chat-bubble {
    bottom: 80px;
    right: 10px;
    max-width: 240px;
    padding: 16px;
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-content {
    gap: 60px;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  /* Header Mobile */
  .topwrap {
    padding: 0 16px;
  }
  
  .brand h1 {
    font-size: 20px;
  }
  
  nav.primary {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero Mobile */
  .hero {
    padding: 80px 0 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-left {
    padding-right: 0;
  }
  
  .hero-right {
    max-width: 100%;
    margin: 0;
    position: static;
    padding: 32px 24px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .hero .stat {
    min-width: auto;
    padding: 20px 16px;
  }
  
  .hero .stat .stat-number {
    font-size: 24px;
  }
  
  .hero .stat .stat-label {
    font-size: 12px;
  }
  
  /* Sections */
  .section {
    padding: 80px 0;
  }
  
  .section-head h3 {
    font-size: 2rem;
  }
  
  /* Grids */
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .grid.cols-2 { grid-template-columns: 1fr; }
  
  /* Cards */
  .content-card {
    padding: 24px;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .service-card i {
    font-size: 2.5rem;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 12px;
  }
  
  .stat {
    min-width: auto;
  }
  
  /* Brand Cards */
  .brand-name {
    font-size: 36px;
  }
  
  /* Contact Methods */
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  /* Two Column Layout */
  .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Contact Wrap */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  /* Steps */
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .step {
    min-height: 200px;
    padding: 24px 20px;
  }
  
  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    padding: 16px 24px;
    font-size: 16px;
    min-height: 50px;
  }
  
  .section-head h3 {
    font-size: 1.8rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .service-card i {
    font-size: 2rem;
  }
  
  .service-card h4 {
    font-size: 1.25rem;
  }
  
  .brand-name {
    font-size: 28px;
  }
  
  .content-card,
  .service-card {
    padding: 20px;
  }
  
  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step {
    min-height: 180px;
    padding: 24px 20px;
  }
  
  /* Stats */
  .stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
