/* Theme styles for index.php - AI/Data Science Theme */

/* Global Animated Background */
body {
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.1) 0%, 
        rgba(8, 145, 178, 0.1) 25%,
        rgba(59, 130, 246, 0.1) 50%,
        rgba(234, 88, 12, 0.1) 75%,
        rgba(30, 64, 175, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: globalGradientShift 20s ease infinite;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bodydots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.8" fill="rgba(30,64,175,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23bodydots)"/></svg>');
    opacity: 0.4;
    z-index: -2;
    pointer-events: none;
}

@keyframes globalGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 0% 75%; }
    75% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modern Hero Section */
.modern-hero-section {
  background: linear-gradient(135deg, 
    rgba(30, 64, 175, 0.9) 0%, 
    rgba(8, 145, 178, 0.9) 25%,
    rgba(59, 130, 246, 0.9) 50%,
    rgba(234, 88, 12, 0.9) 75%,
    rgba(30, 64, 175, 0.9) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  min-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  backdrop-filter: blur(5px);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.element-3 {
  width: 45px;
  height: 45px;
  top: 10%;
  right: 30%;
  animation-delay: 4s;
}

.element-4 {
  width: 75px;
  height: 75px;
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.service-tags-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-tag-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.service-tag-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.service-tag-item i {
  font-size: 1rem;
}

.tag-divider {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
  color: white;
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

/* What We Offer Section */
.what-we-offer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.modern-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
  animation: float-shapes 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 8%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  right: 5%;
  animation-delay: 6s;
}

@keyframes float-shapes {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.what-we-offer-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.offers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.offer-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  flex: 0 0 calc((100% - 3rem) / 3);
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.offer-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.05), rgba(41, 128, 185, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-item:hover::before {
  opacity: 1;
}

.offer-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(52, 152, 219, 0.3);
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.offer-item:hover .offer-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.offer-content {
  flex: 1;
}

.offer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.offer-benefit {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.offer-action {
  flex-shrink: 0;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.offer-link:hover {
  background: linear-gradient(45deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
  color: white;
}

.offer-link i {
  transition: transform 0.3s ease;
}

.offer-link:hover i {
  transform: translateX(5px);
}

/* Responsive Workflow Section */
.workflow-section {
  background: #f8f9fa;
  padding-bottom: 3rem;
}

.workflow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.horizontal-workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.workflow-step {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workflow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.workflow-number {
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.workflow-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.workflow-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.workflow-description {
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
  font-size: 0.75rem;
}

.workflow-step::after {
  content: '→';
  position: absolute;
  right: -2.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3498db;
  font-size: 1.2rem;
  font-weight: bold;
  animation: pulse-arrow 2s infinite;
  z-index: 2;
  width: 2rem;
  text-align: center;
}

.workflow-step:last-child::after {
  display: none;
}

@keyframes pulse-arrow {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

/* Why Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-us-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.1);
  height: 100%;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
}

.why-us-icon i {
  font-size: 1.5rem;
}

.why-us-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.why-us-description {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Process Steps */
.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.process-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.process-description {
  color: var(--gray);
  font-size: 0.95rem;
}

.process-arrow {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.process-step:last-child .process-arrow {
  display: none;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, 
    rgba(30, 64, 175, 0.95) 0%, 
    rgba(8, 145, 178, 0.95) 100%
  );
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statsgrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23statsgrid)"/></svg>');
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Services Header */
.services-header-section {
  text-align: center;
  padding: 4rem 0;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.services-header-content {
  position: relative;
  z-index: 2;
}

.services-header-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.services-header-icon {
  margin-bottom: 2rem;
}

.services-header-icon i {
  font-size: 3rem;
  color: var(--primary-color);
  margin: 0 1rem;
  animation: float 3s ease-in-out infinite;
}

.services-header-icon i:nth-child(1) {
  animation-delay: 0s;
}

.services-header-icon i:nth-child(2) {
  animation-delay: 1s;
}

.services-header-icon i:nth-child(3) {
  animation-delay: 2s;
}

.services-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.services-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-item:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.step-item span {
  font-weight: 600;
  color: var(--dark-color);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--light-gray);
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--light-gray);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Category Sections */
.category-section {
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.category-info {
  flex: 1;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.category-description {
  color: var(--gray);
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* Services List Container */
.services-list-container {
  padding-right: 2rem;
}

.service-item {
  cursor: pointer;
}

#services {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 0;
  margin-top: 2rem;
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.1);
}

#services .service-item .service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 15px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.05);
}

#services .service-item .service-card:hover,
#services .service-item .service-card.hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
}

#services .service-item .service-card.selected {
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
}

.service-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  transform: scale(0);
  animation: ripple 0.8s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.service-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.service-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid var(--gray);
}

.service-check .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.service-content {
  padding-right: 2rem;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

#services .service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  flex: 1;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
}

#services .service-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-feature-tag {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.service-status {
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(8, 145, 178, 0.1);
  color: var(--secondary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.status-badge i {
  font-size: 0.7rem;
}

#services .service-card.selected .status-badge {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success-color);
}

/* Order Summary */
.order-summary-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.1);
  position: sticky;
  top: 2rem;
}

.summary-header {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  text-align: center;
}

.summary-header h4 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.summary-body {
  padding: 1.25rem;
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
}

.empty-state {
  text-align: center;
  color: var(--gray);
  padding: 2rem 1rem;
}

.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.selected-services .service-item-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.selected-services .service-item-summary:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: var(--secondary-color);
}

.service-summary-content {
  flex: 1;
}

.service-name {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.service-item-price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.btn-remove-service {
  background: none;
  border: none;
  color: var(--danger-color);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.btn-remove-service:hover {
  background: rgba(220, 38, 38, 0.1);
  opacity: 1;
}

.service-item-summary.fade-in {
  animation: fadeInAnimation 0.4s ease-out;
}

.service-item-summary.fade-out {
  animation: fadeOutAnimation 0.4s ease-out;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutAnimation {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.summary-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.total-section {
  margin-bottom: 1.5rem;
}

.total-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
}

.total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.price-updated {
  animation: priceUpdate 0.5s ease-out;
}

@keyframes priceUpdate {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-checkout::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 ease;
}

.btn-checkout:hover:not(:disabled)::before {
  left: 100%;
}

.btn-checkout:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-checkout:disabled {
  background: var(--gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.security-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.8rem;
  background: rgba(248, 249, 250, 0.8);
  padding: 0.6rem;
  border-radius: 8px;
}

/* Testimonials Section */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  font-size: 1rem;
  color: #fbbf24;
}

.quote {
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  font-size: 0.95rem;
}

.quote::before {
  content: '"';
  font-size: 1.5rem;
  color: #3b82f6;
  margin-right: 0.25rem;
}

.quote::after {
  content: '"';
  font-size: 1.5rem;
  color: #3b82f6;
  margin-left: 0.25rem;
}

.author {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.author strong {
  color: #1f2937;
  font-weight: 600;
}

.author .text-muted {
  color: #6b7280;
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, 
    rgba(30, 64, 175, 0.95) 0%, 
    rgba(8, 145, 178, 0.95) 25%,
    rgba(59, 130, 246, 0.95) 50%,
    rgba(234, 88, 12, 0.95) 75%,
    rgba(30, 64, 175, 0.95) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctagrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctagrid)"/></svg>');
  opacity: 0.3;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-section .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-light {
  background: white;
  color: #1e40af;
  border: 2px solid white;
}

.cta-section .btn-light:hover {
  background: #f8fafc;
  color: #1e40af;
}

.cta-section .btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-section .btn-outline-light:hover {
  background: white;
  color: #1e40af;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .order-summary-card {
    position: static;
    margin-top: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  /* Hero Section Mobile */
  .modern-hero-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin: 1rem 0;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .service-tags-container {
    padding: 0 1rem;
    gap: 0.5rem;
  }
  
  .service-tag-item {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .hero-buttons {
    padding: 0 1rem;
    gap: 0.75rem;
  }
  
  .btn-hero-primary, .btn-hero-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* What We Offer Section Mobile */
  .offer-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  
  .offer-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .offer-content {
    order: 2;
  }
  
  .offer-action {
    order: 3;
    width: 100%;
  }
  
  .offer-link {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
  }
  
  .offer-item:hover {
    transform: translateY(-5px);
  }
  
  .services-header-section {
    padding: 2rem 0;
  }
  
  .services-main-title {
    font-size: 1.8rem;
  }
  
  .services-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-connector {
    display: none;
  }
  
  .step-connector::after {
    display: none;
  }
  
  /* Workflow Section Mobile */
  .horizontal-workflow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .workflow-step::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -1.2rem;
    transform: translateX(50%);
  }
  
  .workflow-step {
    padding: 1.25rem 1rem;
    min-height: 150px;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
  }
  
  .category-icon {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 45px;
    height: 45px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  #services .service-item .service-card {
    padding: 1rem;
  }
  
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  #services .service-title {
    font-size: 1rem;
  }
  
  .service-price {
    font-size: 1.2rem;
  }
  
  #services .service-description {
    font-size: 0.85rem;
  }
  
  .service-features {
    justify-content: center;
  }
  
  .service-status {
    margin-top: 1rem;
  }
  
  .summary-body {
    max-height: 300px;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .quote {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section .lead {
    font-size: 1rem;
  }
  
  .cta-section .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}

@media (max-width: 576px) {
  /* Hero Section Small Mobile */
  .modern-hero-section {
    min-height: 50vh;
    padding: 1.5rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin: 0.75rem 0;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }
  
  .service-tags-container {
    padding: 0 0.75rem;
    gap: 0.25rem;
  }
  
  .service-tag-item {
    padding: 4px 8px;
    font-size: 0.75rem;
  }
  
  .hero-buttons {
    padding: 0 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  /* What We Offer Section Small Mobile */
  .offer-item {
    padding: 1.25rem 0.75rem;
    gap: 0.75rem;
  }
  
  .offer-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .offer-title {
    font-size: 1.1rem;
  }
  
  .offer-benefit {
    font-size: 0.85rem;
  }
  
  .offer-link {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .services-header-section {
    padding: 1.5rem 0;
  }
  
  .services-main-title {
    font-size: 1.4rem;
  }
  
  .services-subtitle {
    font-size: 0.9rem;
  }
  
  .step-item {
    padding: 0.75rem 1rem;
  }
  
  /* Workflow Section Small Mobile */
  .horizontal-workflow {
    gap: 1rem;
  }
  
  .workflow-step {
    padding: 1rem 0.75rem;
    min-height: 120px;
  }
  
  .workflow-title {
    font-size: 0.85rem;
  }
  
  .workflow-description {
    font-size: 0.7rem;
  }
  
  .workflow-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .workflow-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .category-title {
    font-size: 1.2rem;
  }
  
  .category-description {
    font-size: 0.8rem;
  }
  
  #services .service-item .service-card {
    padding: 0.75rem;
  }
  
  #services .service-title {
    font-size: 0.95rem;
  }
  
  .service-price {
    font-size: 1.1rem;
  }
  
  #services .service-description {
    font-size: 0.8rem;
  }
  
  .status-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .total-amount {
    font-size: 1.3rem;
  }
  
  .btn-checkout {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .quote {
    font-size: 0.85rem;
  }
  
  .cta-section {
    padding: 2.5rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section .lead {
    font-size: 0.9rem;
  }
} 

/* Mobile responsive for What We Offer cards */
@media (max-width: 767.98px) {
  .offers-list {
    flex-direction: column;
    align-items: center;
  }
  .offer-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
} 
