/* ==========================================================================
   Component Architecture Styles & Inner Page Design System
   Web Design Company Jaipur
   ========================================================================== */

/* Section Spacing & Headings */
.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 56px;
}

.section-head.center {
  display: block;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .kicker {
  justify-content: center;
}

.section-head h2 {
  margin-top: 12px;
}

.section-head h2 em {
  font-style: normal;
  color: var(--color-accent);
}

.section-head > p {
  font-size: 17px;
  line-height: 1.6;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn-primary span {
  color: var(--color-accent-lime);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-text-white);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-white);
  color: var(--color-primary);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-ghost-dark {
  border: 1.5px solid #334155;
  background: transparent;
  color: #f8fafc;
}

.btn-ghost-dark:hover {
  border-color: var(--color-accent-lime);
  color: var(--color-accent-lime);
}

/* Hero Component */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--section-pad-y) * 0.8) 0 var(--section-pad-y);
  background: linear-gradient(180deg, var(--color-bg-paper) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
}

.hero-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

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

.hero-text {
  font-size: 19px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 24px 0 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust-checks {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.trust-check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trust-check-item span {
  color: var(--color-success);
  font-weight: 800;
}

/* Redesigned Premium Agency Platform UI Mockup */
.hero-visual {
  position: relative;
}

.hero-mockup-card {
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  color: #f8fafc;
}

.mockup-header {
  height: 44px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #1e293b;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.mockup-url-bar {
  font-family: var(--font-mono);
  font-size: 11px;
  background: #1e293b;
  color: #94a3b8;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.mockup-status-badge {
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
}

.mockup-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-stat-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pill-purple {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.mockup-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mockup-preview-box {
  background: #131b2e;
  border: 1px solid #1e293b;
  padding: 16px;
  border-radius: var(--radius-md);
}

.mockup-preview-box strong {
  display: block;
  font-size: 14px;
  color: #f8fafc;
  font-family: var(--font-heading);
}

.mockup-preview-box small {
  font-size: 11px;
  color: #94a3b8;
}

.mockup-code-line {
  font-family: var(--font-mono);
  font-size: 12px;
  background: #090d16;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #1e293b;
}

.code-kw { color: #f472b6; }
.code-comment { color: #64748b; }

/* Floating Feature Badges */
.float-badge {
  position: absolute;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.badge-speed { bottom: -20px; left: -20px; }
.badge-security { top: 20px; right: -20px; }

.float-badge .icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin: 0;
}

.float-badge div strong { display: block; font-size: 13px; color: var(--color-primary); }
.float-badge div small { display: block; font-size: 11px; color: var(--color-text-muted); }

/* Inner Page Visual Card Mockups */
.inner-visual-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.visual-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.visual-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.visual-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.visual-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.visual-metric-item {
  background: var(--color-bg-paper);
  padding: 16px 12px;
  border-radius: var(--radius-md);
  text-align: center;
}

.visual-metric-item strong {
  display: block;
  font-size: 18px;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.visual-metric-item small {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Trust Strip Component */
.trust-strip {
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}

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

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.strip-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-primary);
}

.strip-item small {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Service Card Component */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link span {
  transition: transform var(--transition-fast);
}

.service-card:hover .card-link span {
  transform: translateX(4px);
}

/* Capability Grid System */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.capability-card {
  background: var(--color-bg-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.cap-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.capability-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Industry Grid System */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: block;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.industry-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.ind-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.industry-card h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.industry-card p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Process Timeline System */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--color-bg-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent-lime);
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* FAQ Accordion Component */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--color-accent);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Contact & Inquiry Section */
.contact-section {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: var(--section-pad-y) 0;
}

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

.contact-info h2 {
  color: var(--color-text-white);
  margin-top: 12px;
}

.contact-info h2 em {
  font-style: normal;
  color: var(--color-accent-lime);
}

.contact-info p {
  color: var(--color-text-light);
  font-size: 18px;
  margin: 20px 0 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--color-text-main);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-primary);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-bg-white);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Top Footer CTA Band & Main Footer Styles */
.footer-cta-band {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  padding: 48px 0;
}

.cta-band-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-footer {
  background: #090d16;
  color: #cbd5e1;
  padding: 72px 0 32px;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .brand {
  color: #ffffff;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
}

.f-contact-item {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.f-contact-item a {
  color: #f8fafc;
  font-weight: 600;
}

.f-contact-item a:hover {
  color: var(--color-accent-lime);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-col a {
  color: #cbd5e1;
  font-size: 14px;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--color-accent-lime);
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #94a3b8;
}

/* Fixed Floating Contact Widget */
.fixed-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.fixed-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-call {
  background: #2563eb;
}

.btn-call:hover {
  background: #1d4ed8;
}

.btn-whatsapp {
  background: #10b981;
}

.btn-whatsapp:hover {
  background: #059669;
}

/* Progressive Reveal Observer Classes */
.reveal-on-scroll {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
