:root {
    /* Colors */
    --primary-color: #3D5AFE;
    --secondary-color: #5C6BC0;
    --accent-color: #00E5FF;
    --dark-color: #1E293B;
    --light-color: #FFFFFF;
    --gray-color: #F1F5F9;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
        
    /* Effects */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
    --mobile-menu-width: 320px;
        
    /* Gradients */
    --gradient: linear-gradient(135deg, #3D5AFE, #00E5FF);
    --top-bar-bg: #EAF6FF;
    --top-bar-text: #1F2937;
        
    /* Spacing */
    --container-padding: 0 20px;
    --nav-height: 80px;
    --top-bar-height: 45px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* WHMCS Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #2d3748 100%);
  color: var(--light-color);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(61, 90, 254, 0.1);
  border: 1px solid var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.badge-label {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}

.title-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Features */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.feature-row span {
  font-size: 15px;
  color: var(--gray-color);
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.primary-btn {
  background: var(--gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secondary-btn {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-box {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-text {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  transform: perspective(800px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-mockup {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.mockup-header {
  background: var(--bg-light);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-color);
}

.header-brand {
  width: 70px;
  height: 20px;
  background: var(--gradient);
  border-radius: 4px;
}

.header-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--text-light);
  border-radius: 50%;
}

.mockup-body {
  display: flex;
  height: 280px;
}

.body-sidebar {
  width: 160px;
  background: var(--gray-color);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-item {
  height: 28px;
  background: var(--text-light);
  border-radius: 4px;
  opacity: 0.4;
}

.sidebar-item.active {
  background: var(--gradient);
  opacity: 1;
}

.body-main {
  flex: 1;
  padding: 16px;
  background: var(--white);
}

.main-header {
  height: 20px;
  background: var(--gray-color);
  border-radius: 4px;
  margin-bottom: 16px;
  width: 50%;
}

.main-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.card-item {
  height: 50px;
  background: var(--bg-light);
  border-radius: 6px;
  border: 1px solid var(--gray-color);
}

.main-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.table-line {
  height: 24px;
  background: var(--bg-light);
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 30px;
  }
  
  .image-container {
    transform: none;
  }
  
  .dashboard-mockup {
    max-width: 360px;
  }
  
  .mockup-body {
    height: 240px;
  }
  
  .body-sidebar {
    width: 100px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-text {
    font-size: 16px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .dashboard-mockup {
    max-width: 300px;
  }
  
  .mockup-body {
    height: 200px;
  }
  
  .body-sidebar {
    width: 80px;
    padding: 8px;
  }
  
  .body-main {
    padding: 12px;
  }
}

/* Simple Animations */
.hero-content {
  animation: slideUp 0.8s ease-out;
}

.hero-image {
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.dashboard-mockup:hover {
  transform: perspective(800px) rotateY(-10deg) rotateX(5deg) scale(1.02);
  transition: var(--transition);
}

.stat-box:hover .stat-value {
  color: var(--accent-color);
  transition: var(--transition);
}

/* Focus States */
.primary-btn:focus,
.secondary-btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}


/* WHMCS About Section */
.about-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Content */
.about-content {
  max-width: 600px;
}

.section-badge {
  display: inline-block;
  background: var(--top-bar-bg);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(61, 90, 254, 0.2);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.title-highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* About Points */
.about-points {
  margin-bottom: 40px;
}

.point-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.point-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.point-content {
  flex: 1;
}

.point-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.point-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
}

/* CTA Button */
.about-cta {
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button-arrow {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.cta-button:hover .button-arrow {
  transform: translateX(4px);
}

/* About Visual */
.about-visual {
  position: relative;
}

.visual-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

/* Code Editor */
.main-image {
  position: relative;
  z-index: 2;
}

.code-editor {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-color);
}

.editor-header {
  background: var(--bg-light);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-color);
}

.editor-tabs {
  display: flex;
  gap: 8px;
}

.tab {
  padding: 6px 12px;
  background: transparent;
  color: var(--text-light);
  font-size: 13px;
  border-radius: 6px;
  transition: var(--transition);
}

.tab.active {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.editor-controls {
  display: flex;
  gap: 6px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.3;
}

.editor-body {
  padding: 20px;
  background: #1e293b;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 14px;
  line-height: 1.6;
}

.code-line {
  display: flex;
  margin-bottom: 4px;
}

.line-number {
  width: 30px;
  color: #64748b;
  text-align: right;
  margin-right: 20px;
  user-select: none;
}

.code-text {
  color: #e2e8f0;
}

.indent {
  margin-left: 20px;
}

.indent2 {
  margin-left: 40px;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 160px;
  border: 1px solid var(--gray-color);
}

.card-1 {
  top: -20px;
  right: -40px;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  bottom: 60px;
  left: -60px;
  animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
  bottom: -30px;
  right: -20px;
  animation: float 3s ease-in-out infinite 2s;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.card-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.card-content p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-content {
  animation: slideInLeft 0.8s ease-out;
}

.about-visual {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .point-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .point-icon {
    margin-bottom: 16px;
  }
  
  .visual-container {
    max-width: 400px;
  }
  
  .card-1 {
    top: -10px;
    right: -20px;
  }
  
  .card-2 {
    bottom: 40px;
    left: -30px;
  }
  
  .card-3 {
    bottom: -20px;
    right: -10px;
  }
  
  .float-card {
    min-width: 140px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-description {
    font-size: 16px;
  }
  
  .point-item {
    margin-bottom: 32px;
  }
  
  .point-title {
    font-size: 18px;
  }
  
  .point-text {
    font-size: 15px;
  }
  
  .visual-container {
    max-width: 320px;
  }
  
  .editor-body {
    padding: 16px;
    font-size: 12px;
  }
  
  .float-card {
    min-width: 120px;
    padding: 12px;
  }
  
  .card-content h5 {
    font-size: 14px;
  }
  
  .card-content p {
    font-size: 12px;
  }
  
  .card-1 {
    top: 0;
    right: -15px;
  }
  
  .card-2 {
    bottom: 30px;
    left: -20px;
  }
  
  .card-3 {
    bottom: -15px;
    right: -5px;
  }
}

/* Hover Effects */
.point-item:hover .point-icon {
  transform: scale(1.1);
  transition: var(--transition);
}

.code-editor:hover {
  transform: translateY(-5px);
  transition: var(--transition);
}

.float-card:hover {
  transform: scale(1.05);
  transition: var(--transition);
}

/* Focus States */
.cta-button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Loading State */
.cta-button.loading {
  position: relative;
  color: transparent;
}

.cta-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Additional Visual Effects */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.1), rgba(0, 229, 255, 0.1));
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
}

.about-wrapper {
  position: relative;
  z-index: 2;
}

/* Code Syntax Highlighting */
.code-text:contains('<?php') {
  color: #f59e0b;
}

.code-text:contains('function') {
  color: #8b5cf6;
}

.code-text:contains('return') {
  color: #ef4444;
}

.code-text:contains("'") {
  color: #10b981;
}



/* WHMCS Services Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.header-badge {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(61, 90, 254, 0.2);
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.title-highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Card Icon */
.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Card Content */
.card-content {
  flex: 1;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Card Features */
.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.card-features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.4;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* Card Link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--accent-color);
}

.link-arrow {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.card-link:hover .link-arrow {
  transform: translate(4px, -4px);
}

/* Services CTA */
.services-cta {
  background: var(--gradient);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.services-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--primary-color);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-light);
}

.button-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.cta-button:hover .button-icon {
  transform: translateX(4px);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .service-card {
    padding: 32px 24px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .card-title {
    font-size: 22px;
  }
  
  .services-cta {
    padding: 40px 24px;
    border-radius: 16px;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .service-card {
    padding: 28px 20px;
  }
  
  .card-title {
    font-size: 20px;
  }
  
  .card-description {
    font-size: 15px;
  }
  
  .card-features li {
    font-size: 14px;
    padding: 6px 0 6px 20px;
  }
  
  .services-cta {
    padding: 32px 20px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}

/* Loading States */
.service-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.service-card.loading .card-icon {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Focus States */
.card-link:focus,
.cta-button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}



/* Print Styles */
@media print {
  .services-section {
    background: white !important;
    box-shadow: none !important;
  }
  
  .service-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .services-cta {
    background: #f8f9fa !important;
    color: #333 !important;
  }
}
