/* ==============================================
   UnikaBiz Template - Main CSS
   AI-Powered Digital Agency Template
   ============================================== */

/* CSS Variables */
:root {
  /* Colors */
  --primary-color: #1A365D;
  --secondary-color: #3182CE;
  --accent-color: #FF6B35;
  --success-color: #38A169;
  --warning-color: #F6AD55;
  --error-color: #E53E3E;
  --dark-color: #2D3748;
  --light-color: #F7FAFC;
  --white-color: #FFFFFF;
  --gray-100: #F7FAFC;
  --gray-200: #EDF2F7;
  --gray-300: #E2E8F0;
  --gray-400: #CBD5E0;
  --gray-500: #A0AEC0;
  --gray-600: #718096;
  --gray-700: #4A5568;
  --gray-800: #2D3748;
  --gray-900: #1A202C;

  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Spacing */
  --section-padding: 120px;
  --container-padding: 15px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ==============================================
   Reset & Base Styles
   ============================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white-color);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--dark-color);
  margin-bottom: 0;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-white { color: var(--white-color) !important; }
.text-dark { color: var(--dark-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light { background-color: var(--light-color) !important; }
.bg-dark { background-color: var(--dark-color) !important; }

.pt-120 { padding-top: 120px !important; }
.pb-120 { padding-bottom: 120px !important; }
.pt-80 { padding-top: 80px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pt-60 { padding-top: 60px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pt-40 { padding-top: 40px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.py-20 { padding: 20px 0 !important; }

.mb-30 { margin-bottom: 30px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-90 { margin-bottom: 90px !important; }

/* Button Styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-white {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.btn-outline-white:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* Section Titles */
.section-title {
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--accent-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title-text {
  font-size: 2.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==============================================
   Header Styles
   ============================================== */

.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--gray-200);
}

.header-area.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-area .container {
  padding: 0 var(--container-padding);
}

.header-area .row {
  min-height: 80px;
}

.logo img {
  max-height: 45px;
  width: auto;
}

/* Main Menu */
.main-menu nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.main-menu nav ul li {
  position: relative;
  margin: 0 20px;
}

.main-menu nav ul li > a {
  display: block;
  padding: 30px 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--dark-color);
  transition: var(--transition-fast);
  position: relative;
}

.main-menu nav ul li > a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-normal);
}

.main-menu nav ul li:hover > a::after,
.main-menu nav ul li.active > a::after {
  width: 100%;
}

.main-menu nav ul li:hover > a,
.main-menu nav ul li.active > a {
  color: var(--primary-color);
}

/* Dropdown Menu */
.main-menu nav ul li.has-dropdown {
  position: relative;
}

.main-menu nav ul li.has-dropdown > a::before {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 8px;
  font-size: 14px;
  transition: var(--transition-fast);
}

.main-menu nav ul li.has-dropdown:hover > a::before {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--white-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  z-index: 99;
  list-style: none;
  padding: 20px 0;
}

.main-menu nav ul li.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  margin: 0;
}

.submenu li a {
  display: block;
  padding: 12px 30px;
  font-size: 15px;
  color: var(--gray-700);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.submenu li a:hover {
  color: var(--primary-color);
  background-color: var(--gray-100);
  border-left-color: var(--accent-color);
}

/* Header Button */
.header-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  transition: var(--transition-fast);
}

/* ==============================================
   Hero Section Styles
   ============================================== */

.hero-area {
  padding: 140px 0 120px;
  position: relative;
  background: linear-gradient(135deg, var(--light-color) 0%, rgba(49, 130, 206, 0.05) 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  margin-bottom: 24px;
}

.badge-text {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), #FF8A50);
  color: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 580px;
}

.hero-trust-indicators {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  line-height: 1;
}

.trust-label {
  display: block;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
  margin-top: 8px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background-color: var(--white-color);
  padding: 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
  animation: floating 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
}

.floating-card span {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 8px;
  font-weight: var(--font-weight-medium);
}

.floating-card strong {
  display: block;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
}

.floating-card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 60%;
  left: -15%;
  animation-delay: 2s;
}

.floating-card-3 {
  bottom: 10%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-shapes .shape-1 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

.hero-shapes .shape-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 30%;
  opacity: 0.1;
  animation: rotate 15s linear infinite reverse;
}

.hero-shapes .shape-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 40%;
  opacity: 0.05;
  animation: rotate 25s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==============================================
   Services Section Styles
   ============================================== */

.services-area {
  position: relative;
}

.service-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition-normal);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(49, 130, 206, 0.05));
  transition: var(--transition-slow);
  z-index: 1;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 32px;
  color: var(--white-color);
}

.service-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 16px;
}

.service-title a {
  color: var(--dark-color);
  transition: var(--transition-fast);
}

.service-title a:hover {
  color: var(--primary-color);
}

.service-desc {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.service-features li i {
  color: var(--success-color);
  margin-right: 12px;
  font-size: 14px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-fast);
}

.service-btn:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.service-btn i {
  margin-left: 8px;
  font-size: 14px;
  transition: var(--transition-fast);
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* Special CTA Service Card */
.service-card-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  color: var(--white-color);
}

.service-card-cta .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card-cta .service-title,
.service-card-cta .service-desc {
  color: var(--white-color);
}

.pricing-preview {
  margin: 24px 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
  font-size: 14px;
  opacity: 0.9;
}

.price-value {
  font-weight: var(--font-weight-bold);
  font-size: 16px;
}

.service-btn-primary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  display: inline-block;
  text-align: center;
  transition: var(--transition-fast);
}

.service-btn-primary:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ==============================================
   Industries Section Styles
   ============================================== */

.industries-area {
  position: relative;
}

.industry-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  transition: var(--transition-normal);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(49, 130, 206, 0.05));
  transition: var(--transition-slow);
  z-index: 1;
}

.industry-card:hover::before {
  right: 0;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.industry-card > * {
  position: relative;
  z-index: 2;
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #FF8A50);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-icon i {
  font-size: 24px;
  color: var(--white-color);
}

.industry-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
}

.industry-title a {
  color: var(--dark-color);
  transition: var(--transition-fast);
}

.industry-title a:hover {
  color: var(--accent-color);
}

.industry-desc {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.industry-solutions {
  list-style: none;
  margin-bottom: 24px;
}

.industry-solutions li {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.industry-solutions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.industry-btn {
  color: var(--accent-color);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  transition: var(--transition-fast);
}

.industry-btn:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Featured Industry Card */
.industry-card-featured {
  background: linear-gradient(135deg, var(--gray-100), var(--white-color));
  border: 2px solid var(--accent-color);
}

.industry-icon-large {
  width: 80px;
  height: 80px;
}

.industry-icon-large i {
  font-size: 32px;
}

.industry-solutions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-solutions-inline li {
  margin-bottom: 0;
  white-space: nowrap;
}

/* ==============================================
   Results Section Styles
   ============================================== */

.results-area {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.counter-card {
  padding: 20px;
  transition: var(--transition-normal);
}

.counter-card:hover {
  transform: translateY(-5px);
}

.counter-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.counter-icon i {
  font-size: 32px;
  color: var(--white-color);
}

.counter-content {
  color: var(--white-color);
}

.counter-number {
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
  display: inline-block;
}

.counter-suffix {
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  opacity: 0.9;
}

.counter-label {
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.9;
  font-weight: var(--font-weight-medium);
}

/* ==============================================
   Testimonials Section Styles
   ============================================== */

.testimonials-area {
  position: relative;
}

.testimonials-slider {
  position: relative;
}

.testimonial-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  margin: 0 15px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #FFD700;
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-metrics {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 4px;
  font-weight: var(--font-weight-medium);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.company-logo img {
  max-height: 24px;
  opacity: 0.7;
}

/* ==============================================
   Content Preview Section Styles
   ============================================== */

.content-preview-area {
  position: relative;
}

.content-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
  height: 100%;
}

.content-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.content-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 16px;
}

.content-category {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--accent-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  border-radius: 12px;
  margin-bottom: 12px;
}

.content-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
}

.content-list {
  margin-bottom: 24px;
}

.content-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.content-item:last-child {
  border-bottom: none;
}

.content-link {
  display: block;
  transition: var(--transition-fast);
}

.content-link:hover {
  color: var(--primary-color);
}

.content-link h5 {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 4px;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.content-link:hover h5 {
  color: var(--primary-color);
}

.content-date,
.content-price,
.content-result {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
}

.content-price {
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
}

.content-result {
  color: var(--success-color);
  font-weight: var(--font-weight-bold);
}

.content-more-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  transition: var(--transition-fast);
}

.content-more-btn:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.content-more-btn i {
  margin-left: 8px;
  font-size: 12px;
  transition: var(--transition-fast);
}

.content-more-btn:hover i {
  transform: translateX(5px);
}

/* ==============================================
   CTA Section Styles
   ============================================== */

.cta-area {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  overflow: hidden;
}

.cta-content {
  margin-bottom: 30px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cta-shapes .shape-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.cta-shapes .shape-2 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 15s linear infinite reverse;
}

/* ==============================================
   Footer Styles
   ============================================== */

.footer-area {
  position: relative;
  background-color: var(--gray-900);
  color: var(--gray-300);
}

.footer-top {
  border-bottom: 1px solid var(--gray-700);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 40px;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--gray-400);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.footer-widget-title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: var(--gray-400);
  transition: var(--transition-fast);
  font-size: 15px;
}

.footer-links li a:hover {
  color: var(--white-color);
  padding-left: 5px;
}

.footer-bottom {
  background-color: var(--gray-800);
}

.footer-copyright p {
  margin: 0;
  color: var(--gray-400);
}

.newsletter-form {
  display: flex;
  max-width: 300px;
  margin-left: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gray-600);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  background-color: var(--gray-800);
  color: var(--white-color);
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
}

/* ==============================================
   Animations
   ============================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Animation Classes */
.animate-fade-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ==============================================
   Additional CSS for UnikaBiz Template
   Consultation Form & Missing Components
   Add this to the end of style.css
   ============================================== */

/* ==============================================
   Page Header Styles
   ============================================== */

.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--light-color) 0%, rgba(49, 130, 206, 0.05) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--dark-color);
  margin-bottom: 16px;
}

.page-desc {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--gray-600);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--gray-400);
  margin: 0 8px;
}

/* ==============================================
   Consultation Form Styles
   ============================================== */

.consultation-form-wrapper {
  background-color: var(--white-color);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.consultation-form {
  width: 100%;
}

.form-section {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 30px;
}

.form-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.form-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.form-label {
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--dark-color);
  background-color: var(--white-color);
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-control.is-valid {
  border-color: var(--success-color);
}

.form-control.is-invalid {
  border-color: var(--error-color);
}

.invalid-feedback {
  color: var(--error-color);
  font-size: 14px;
  margin-top: 4px;
  display: block;
}

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.checkbox-item:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-300);
}

.checkbox-item input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
}

.form-terms {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

.form-terms .checkbox-item {
  padding: 8px 0;
  font-size: 14px;
}

.form-terms a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ==============================================
   Consultation Sidebar Styles
   ============================================== */

.consultation-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
}

.widget-content {
  color: var(--gray-700);
}

/* Expectation Items */
.expectation-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.expectation-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.expectation-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expectation-icon i {
  color: var(--white-color);
  font-size: 20px;
}

.expectation-content h5 {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 6px;
}

.expectation-content p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.contact-item i {
  width: 20px;
  color: var(--accent-color);
  text-align: center;
}

/* Success Stories */
.success-story {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.success-story:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.story-metric {
  text-align: center;
  margin-bottom: 12px;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--accent-color);
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
  margin-top: 4px;
}

.story-desc {
  font-size: 14px;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 8px;
  line-height: 1.5;
}

.story-author {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

/* ==============================================
   Accordion Styles
   ============================================== */

.accordion {
  border: none;
}

.accordion-item {
  background-color: var(--white-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background-color: var(--white-color);
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  padding: 20px 24px;
  border: none;
  box-shadow: none;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 18px;
  font-weight: bold;
  transform: none;
  transition: var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
  content: '−';
}

.accordion-body {
  padding: 20px 24px;
  color: var(--gray-700);
  line-height: 1.6;
  border-top: 1px solid var(--gray-200);
}

/* ==============================================
   Mobile Menu Styles
   ============================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-normal);
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: var(--white-color);
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: var(--transition-normal);
}

.mobile-menu.open .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-logo img {
  max-height: 35px;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu-close:hover {
  background-color: var(--gray-200);
}

.mobile-menu-close i {
  color: var(--dark-color);
  font-size: 16px;
}

.mobile-nav {
  padding: 20px 0;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 12px 20px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background-color: var(--gray-100);
  border-left-color: var(--accent-color);
}

.mobile-submenu {
  background-color: var(--gray-50);
  display: none;
}

.mobile-submenu a {
  padding-left: 40px;
  font-size: 14px;
  color: var(--gray-600);
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu-footer .btn {
  width: 100%;
  text-align: center;
}

/* ==============================================
   Notification Styles
   ============================================== */

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 400px;
  padding: 16px 20px;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  border-left-color: var(--success-color);
}

.notification-error {
  border-left-color: var(--error-color);
}

.notification-warning {
  border-left-color: var(--warning-color);
}

.notification i {
  font-size: 20px;
  flex-shrink: 0;
}

.notification-success i {
  color: var(--success-color);
}

.notification-error i {
  color: var(--error-color);
}

.notification-warning i {
  color: var(--warning-color);
}

.notification span {
  flex: 1;
  font-size: 14px;
  color: var(--dark-color);
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.notification-close:hover {
  background-color: var(--gray-100);
  color: var(--dark-color);
}

/* ==============================================
   Back to Top Button
   ============================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ==============================================
   Scroll Progress Bar
   ============================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  z-index: 1001;
  transform-origin: left;
  transition: width 0.1s ease;
}

/* ==============================================
   Loading States
   ============================================== */

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn .fa-spinner {
  margin-right: 8px;
}

/* ==============================================
   Mobile Responsive Adjustments
   ============================================== */

@media (max-width: 991px) {
  .consultation-form-wrapper {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .form-section-title {
    font-size: 1.125rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-desc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .consultation-form-wrapper {
    padding: 20px 16px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .expectation-item {
    gap: 12px;
  }

  .expectation-icon {
    width: 40px;
    height: 40px;
  }

  .expectation-icon i {
    font-size: 16px;
  }

  .mobile-menu-content {
    width: 280px;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .page-desc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .consultation-form-wrapper {
    padding: 16px 12px;
  }

  .form-section-title {
    font-size: 1rem;
    padding-left: 16px;
  }

  .form-control {
    padding: 10px 14px;
    font-size: 14px;
  }

  .checkbox-item {
    padding: 8px;
    font-size: 14px;
  }

  .notification {
    min-width: auto;
    max-width: calc(100vw - 40px);
    right: 20px;
    left: 20px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }

  .mobile-menu-content {
    width: 100%;
  }
}

/* ==============================================
   Print Styles for Forms
   ============================================== */

@media print {
  .consultation-sidebar,
  .mobile-menu,
  .notification,
  .back-to-top {
    display: none !important;
  }

  .consultation-form-wrapper {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .form-control {
    border: 1px solid #ccc !important;
    background: transparent !important;
  }

  .checkbox-item {
    break-inside: avoid;
  }
}

/* ==============================================
   Dark Mode Support (Future Enhancement)
   ============================================== */

@media (prefers-color-scheme: dark) {
  /* Add dark mode styles here if needed */
}

/* ==============================================
   COMPLETE CSS ADDITIONS FOR UNIKABIZ
   Add all of this to the end of your existing style.css file
============================================== */

/* ==============================================
   1. ENHANCED PAGE HEADER STYLES
============================================== */

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, #1A365D 0%, #3182CE 100%);
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}

/* Background Pattern Overlay */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 161, 105, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(49, 130, 206, 0.2) 0%, transparent 50%);
    z-index: 1;
}

/* Geometric Pattern */
.page-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05)),
        linear-gradient(30deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    z-index: 1;
}

/* Content Container */
.page-header-content {
    position: relative;
    z-index: 2;
}

/* Animated Tech Icons */
.page-header-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 5s; }
.floating-icon:nth-child(3) { top: 40%; left: 60%; animation-delay: 10s; }
.floating-icon:nth-child(4) { top: 80%; left: 30%; animation-delay: 15s; }
.floating-icon:nth-child(5) { top: 10%; left: 70%; animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

/* Improved Breadcrumb for Dark Background */
.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "→";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 12px;
    font-weight: 300;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-header .breadcrumb-item a:hover {
    color: #FF6B35;
}

.page-header .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* Page Title Styling */
.page-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Animated Border */
.page-header-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #38A169, #3182CE, #FF6B35);
    background-size: 300% 100%;
    animation: gradientMove 8s ease infinite;
    z-index: 2;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Page Specific Variations */
.page-header.consultation-header {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
}

.page-header.about-header {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
}

.page-header.contact-header {
    background: linear-gradient(135deg, #3182CE 0%, #2C5282 100%);
}

.page-header.privacy-header {
    background: linear-gradient(135deg, #718096 0%, #4A5568 100%);
}

/* ==============================================
   2. ABOUT PAGE STYLES
============================================== */

/* Story Section */
.story-area {
    position: relative;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: #718096;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A365D;
    margin: 0;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image {
    position: relative;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #FF6B35;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Mission Vision Cards */
.mission-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #F7FAFC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 35px;
    color: #3182CE;
}

.mission-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1A365D;
}

.mission-text {
    margin-bottom: 25px;
    color: #718096;
}

.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #2D3748;
}

.mission-points li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #38A169;
}

/* Values Section */
.value-card {
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3182CE 0%, #1A365D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.value-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1A365D;
}

.value-desc {
    color: #718096;
    line-height: 1.6;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.9);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: white;
    color: #1A365D;
    border-radius: 50%;
    line-height: 35px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #FF6B35;
    color: white;
}

.team-content {
    padding: 25px;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1A365D;
}

.team-position {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.team-bio {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    flex-shrink: 0;
}

.why-icon i {
    font-size: 24px;
    color: #38A169;
}

.why-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1A365D;
}

.why-content p {
    color: #718096;
    line-height: 1.6;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats-card {
    background: #F7FAFC;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stats-card:hover {
    border-color: #3182CE;
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6B35;
    margin: 0;
}

.stats-label {
    color: #718096;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Awards Section */
.awards-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 20px;
}

.award-item img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.award-item:hover img {
    filter: grayscale(0%);
}

.award-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1A365D;
}

.award-item span {
    color: #718096;
    font-size: 14px;
}

/* ==============================================
   3. CONTACT PAGE STYLES
============================================== */

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.info-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1A365D;
}

.info-desc {
    color: #718096;
    margin-bottom: 10px;
}

.info-link {
    color: #3182CE;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #FF6B35;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* Quick Contact Items */
.quick-contact-item {
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A365D;
}

.quick-contact-item p {
    margin-bottom: 5px;
    color: #718096;
}

.quick-contact-item i {
    width: 20px;
    color: #3182CE;
    margin-right: 10px;
}

/* Business Hours */
.business-hours {
    list-style: none;
    padding: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours .day {
    font-weight: 600;
    color: #2D3748;
}

.business-hours .time {
    color: #718096;
}

.hours-note {
    margin-top: 15px;
    padding: 10px 15px;
    background: #F7FAFC;
    border-radius: 5px;
    font-size: 14px;
    color: #718096;
}

.hours-note i {
    color: #3182CE;
    margin-right: 8px;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #F7FAFC;
    border-radius: 5px;
    text-decoration: none;
    color: #2D3748;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3182CE;
    color: white;
}

.social-link i {
    font-size: 18px;
}

/* Map Section */
.contact-map {
    height: 450px;
    width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==============================================
   4. PRIVACY POLICY & LEGAL PAGES
============================================== */

/* Legal Content */
.legal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1A365D;
}

.legal-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2D3748;
}

.legal-text {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-list {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-list li {
    color: #718096;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Legal Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: 10px;
}

.legal-nav a {
    color: #718096;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: #3182CE;
    border-left-color: #3182CE;
    background: #F7FAFC;
}

.document-links {
    list-style: none;
    padding: 0;
}

.document-links li {
    margin-bottom: 10px;
}

.document-links a {
    color: #718096;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #F7FAFC;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.document-links a:hover {
    background: #3182CE;
    color: white;
}

/* Contact Info Box */
.contact-info-box {
    background: #F7FAFC;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3182CE;
    margin-top: 15px;
}

.contact-info-box p {
    margin-bottom: 5px;
    color: #2D3748;
}

.contact-info-box a {
    color: #3182CE;
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* ==============================================
   5. RESPONSIVE DESIGN
============================================== */

@media (max-width: 768px) {
    /* Page Header Responsive */
    .page-header {
        min-height: 280px;
        padding: 80px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-desc {
        font-size: 16px;
    }
    
    .floating-icon {
        font-size: 30px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 8px;
    }
    
    /* About Page Responsive */
    .story-stats {
        justify-content: space-around;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 250px;
    }
    
    /* Contact Page Responsive */
    .social-links {
        grid-template-columns: 1fr;
    }
    
    /* Legal Pages Responsive */
    .legal-sidebar {
        position: static;
        margin-bottom: 40px;
    }
}

/* ==============================================
   SERVICE PAGES CSS
   Add these to your style.css file
============================================== */

/* Service Hero Section */
.service-hero-area {
    background: linear-gradient(135deg, #F7FAFC 0%, #EBF8FF 100%);
    position: relative;
    overflow: hidden;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #1A365D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero-desc {
    font-size: 20px;
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.service-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2D3748;
}

.service-hero-features .feature-item i {
    color: #38A169;
    font-size: 18px;
}

.service-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
}

.service-stats-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    font-size: 24px;
}

.stats-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1A365D;
    margin: 0;
}

.stats-content p {
    color: #718096;
    margin: 0;
    font-size: 14px;
}

/* Service Details Cards */
.service-detail-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3182CE 0%, #1A365D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 30px;
}

.service-detail-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1A365D;
}

.service-detail-desc {
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #2D3748;
    font-size: 14px;
}

.service-detail-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #E2E8F0;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 20%;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #3182CE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    color: #3182CE;
    position: relative;
}

.process-step:hover .step-number {
    background: #3182CE;
    color: white;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A365D;
}

.step-content p {
    color: #718096;
    font-size: 14px;
}

/* Service Results */
.service-results-area {
    background: linear-gradient(135deg, #1A365D 0%, #3182CE 100%);
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.result-number {
    font-size: 48px;
    font-weight: 800;
    color: #FF6B35;
    margin: 0;
}

.result-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Case Study Preview */
.case-study-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.case-study-title {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.case-study-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-study-author {
    margin-bottom: 30px;
}

.case-study-author strong {
    display: block;
    color: white;
    font-size: 18px;
}

.case-study-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.case-study-metrics {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 5px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Service Pricing */
.service-pricing-area .pricing-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    border-color: #FF6B35;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card:hover {
    border-color: #3182CE;
    box-shadow: 0 10px 40px rgba(49, 130, 206, 0.1);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1A365D;
}

.pricing-price {
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 24px;
    color: #718096;
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #1A365D;
}

.pricing-price .period {
    font-size: 18px;
    color: #718096;
}

.pricing-desc {
    color: #718096;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #2D3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #38A169;
    font-size: 16px;
}

.pricing-note {
    color: #718096;
    font-style: italic;
}

/* Service FAQ */
.service-faq-area .accordion-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-faq-area .accordion-button {
    background: white;
    color: #1A365D;
    font-weight: 600;
    font-size: 18px;
    padding: 20px 30px;
    border-radius: 10px;
}

.service-faq-area .accordion-button:not(.collapsed) {
    background: #F7FAFC;
    color: #3182CE;
    box-shadow: none;
}

.service-faq-area .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233182CE'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Service CTA */
.service-cta-area {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-hero-title {
        font-size: 36px;
    }
    
    .process-step {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .process-timeline:before {
        display: none;
    }
    
    .case-study-preview {
        padding: 30px;
    }
    
    .case-study-metrics {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 28px;
    }
    
    .service-hero-desc {
        font-size: 16px;
    }
    
    .service-stats-card {
        position: static;
        margin-top: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}