/* Evoin Sparks Brand Colors */
:root {
  /* Dark Theme (Default) */
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-elevated: #1A1A1A;
  --text: #FFFFFF;
  --text-muted: #A0A0A0;
  --text-dim: #707070;
  --accent-primary: #FF6B35;
  --accent-secondary: #c59a0e;
  --accent-success: #00C896;
  --accent-warning: #FF8C42;
  --accent-danger: #FF5757;
  --border: #2A2A2A;
  --border-light: #3A3A3A;
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  --gradient-accent: linear-gradient(135deg, #FFD23F 0%, #FFA726 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

.theme-light {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-elevated: #F8F8F8;
  --text: #1A1A1A;
  --text-muted: #4A4A4A;
  --text-dim: #6A6A6A;
  --accent-primary: #E8581C;
  --accent-secondary: #D4AF37;
  --accent-success: #059669;
  --accent-warning: #EA580C;
  --accent-danger: #DC2626;
  --border: #E5E7EB;
  --border-light: #D1D5DB;
  --gradient-primary: linear-gradient(135deg, #E8581C 0%, #EA580C 100%);
  --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(232, 88, 28, 0.15);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.theme-light .header {
  background: rgba(250, 250, 250, 0.9);
}

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

.logo {
  height: 50px;
  width: auto;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--surface-elevated);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.theme-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  transition: all 0.3s ease;
}

.theme-icon--sun {
  opacity: 0;
}

.theme-icon--moon {
  opacity: 1;
}

.theme-light .theme-icon--sun {
  opacity: 1;
}

.theme-light .theme-icon--moon {
  opacity: 0;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Hero */
.hero {
  background: var(--gradient-primary);
  color: var(--surface);
  padding: 8rem 0 5rem 0;
  margin-top: 78px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.floating-elements {
  position: absolute;
  inset: 0;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.chart {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.graph {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.rupee {
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  font-weight: 600;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust Stats */
.trust-section {
  background: var(--surface);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: var(--text-muted);
}

/* Contact Section */
.contact-section {
  background: var(--bg);
  padding: 6rem 0;
}

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

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form Container with Tally */
.form-container {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.form-header p {
  color: var(--text-muted);
  margin: 0;
}

/* Tally Form Styling */
.tally-form-wrapper {
  margin-bottom: 2rem;
}

.tally-form-wrapper iframe {
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  transition: all 0.3s ease;
  width: 100% !important;
  min-height: 600px;
}

.tally-form-wrapper iframe:hover {
  box-shadow: var(--shadow-md);
}

/* Tally Success Message */
.tally-success-message {
  background: var(--surface-elevated);
  border: 2px solid var(--accent-success);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tally-success-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-success), var(--accent-primary));
}

.success-content {
  position: relative;
  z-index: 2;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tally-success-message h4 {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tally-success-message p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.success-features span {
  color: var(--accent-success);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
  background: transparent;
}

.btn:focus {
  outline: none;
  box-shadow: var(--shadow-glow);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--surface);
  border-color: var(--accent-primary);
}

.btn-primary:hover:not(:disabled) {
  background: var(--gradient-accent);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

.btn-outline:hover:not(:disabled) {
  background: var(--gradient-primary);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Sidebar */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.card-header h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--surface);
  box-shadow: var(--shadow-glow);
}

.contact-details h4 {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--accent-primary);
  font-weight: 500;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent-warning);
  text-decoration: underline;
}

.contact-details small {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

.contact-details address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.trust-item div strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.trust-item div span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.quick-action:hover {
  background: var(--surface);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  text-decoration: none;
  transform: translateX(4px);
  box-shadow: var(--shadow-glow);
}

.action-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.quick-action div strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.quick-action div span {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.whatsapp-action:hover {
  border-color: #25D366;
  color: #25D366;
}

.call-action:hover {
  border-color: var(--accent-success);
  color: var(--accent-success);
}

/* FAQ */
.faq-section {
  background: var(--surface);
  padding: 6rem 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: none;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Testimonial */
.testimonial-section {
  background: var(--bg);
  padding: 5rem 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--accent-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.testimonial-content blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.author-info cite {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Risk Section */
.risk-section {
  background: rgba(255, 140, 66, 0.1);
  padding: 4rem 0;
  border-top: 4px solid var(--accent-warning);
}

.risk-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent-warning);
}

.risk-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.risk-icon {
  font-size: 2rem;
  color: var(--accent-warning);
}

.risk-header h3 {
  color: var(--text);
  margin: 0;
}

.risk-content p {
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.risk-content p:last-child {
  margin-bottom: 0;
}

.risk-content strong {
  color: var(--accent-warning);
  font-weight: 700;
}

/* Footer */
.footer {
  background: var(--surface);
  color: var(--text);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 1rem;
  height: 45px;
  width: auto;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--surface);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-links h4 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links button {
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 6rem 0 4rem 0;
    margin-top: 68px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nav-cta-btn {
    display: none;
  }
  
  .floating-elements {
    display: none;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .risk-header {
    flex-direction: column;
    text-align: center;
  }
  
  .success-features {
    align-items: center;
  }
  
  .tally-form-wrapper iframe {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .form-container,
  .info-card {
    padding: 1.5rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item,
  .trust-item {
    flex-direction: column;
    text-align: center;
  }
  
  .tally-form-wrapper iframe {
    min-height: 400px;
  }
}

/* Tally Widget Customization */
.tally-widget {
  border-radius: var(--radius-lg) !important;
}

/* Loading State for Tally */

/* Service Items Styling */
.service-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--surface);
  box-shadow: var(--shadow-glow);
}

.service-details h4 {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.service-details span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Contact Details Multiple Lines */
.contact-details span {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-details span:last-child {
  margin-bottom: 0;
}
