/* BitForge Lab - Business Process Automation & Consulting Website */
/* Modern CSS with responsive design and BPA-focused styling */

:root {
  /* Color Palette - Professional BPA Theme */
  --primary-color: #2563eb;        /* Professional blue */
  --secondary-color: #10b981;      /* Success green */
  --accent-color: #f59e0b;         /* Warning orange */
  --dark-color: #1f2937;           /* Dark gray */
  --light-color: #f8fafc;          /* Light gray */
  --white: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  
  /* Typography */
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--spacing-md) 0;
  color: var(--text-primary);
}

/* Icon Text Styles */
.icon-text {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.icon-text:last-child {
  margin-right: 0;
}

.service-icon .icon-text {
  font-size: 3rem;
  margin-right: 0;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-item .icon-text {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.social-icons .icon-text,
.social-links .icon-text {
  font-size: 1.2rem;
  margin-right: 0;
  transition: transform var(--transition-fast);
}

.social-icons a:hover .icon-text,
.social-links a:hover .icon-text {
  transform: scale(1.2);
}

.toggle-nav .icon-text {
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 0;
}

.sidenav .closebtn .icon-text {
  font-size: 1.5rem;
  margin-right: 0;
}

.service-link .icon-text {
  font-size: 0.9rem;
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.service-link:hover .icon-text {
  transform: translateX(3px);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin: 0 0 var(--spacing-md) 0;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--dark-color);
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--spacing-sm));
}

.col {
  flex: 1;
  padding: 0 var(--spacing-sm);
}

/* Responsive Grid */
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Header Styles */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.top-bar {
  background: var(--dark-color);
  color: var(--white);
  padding: var(--spacing-sm) 0;
  font-size: var(--font-size-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled .top-bar {
  padding: 6px 0;
  font-size: var(--font-size-xs);
}

.top-bar-left span {
  margin-right: var(--spacing-lg);
}

.top-bar-left i {
  margin-right: var(--spacing-xs);
  color: var(--accent-color);
}

.top-bar-right .social-icons a {
  color: var(--white);
  margin-left: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.top-bar-right .social-icons a:hover {
  color: var(--accent-color);
}

/* Main Header */
#header {
  background: var(--white);
  padding: var(--spacing-md) 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled #header {
  padding: var(--spacing-sm) 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: var(--spacing-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled .logo img {
  height: 40px;
}

.logo h1 {
  font-size: var(--font-size-2xl);
  color: var(--primary-color);
  margin: 0;
}

/* Navigation */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.main-navigation li {
  margin: 0 var(--spacing-md);
}

.main-navigation a {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.main-navigation a:hover {
  color: var(--primary-color);
  background: var(--light-color);
}

/* Mobile Navigation */
.toggle-nav {
  display: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.toggle-nav i {
  font-size: var(--font-size-xl);
  color: var(--text-primary);
}

.sidenav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.sidenav.active {
  display: block;
  transform: translateX(0);
}

.sidenav .closebtn {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  font-size: var(--font-size-xl);
  cursor: pointer;
}

.sidenav .main-navigation ul {
  flex-direction: column;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.sidenav .main-navigation li {
  margin: var(--spacing-sm) 0;
  width: 100%;
}

.sidenav .main-navigation a {
  display: block;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  color: var(--white);
  padding: var(--spacing-3xl) 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: var(--font-size-base);
}

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

.btn-primary:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Section Styles */
section {
  padding: var(--spacing-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  font-size: var(--font-size-3xl);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
#about {
  background: var(--light-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.about-text p {
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-lg);
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.service-icon i {
  font-size: var(--font-size-2xl);
  color: var(--white);
}

.service-card h4 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

/* Case Studies Section */
#case-studies {
  background: var(--light-color);
}

.case-study-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.case-study-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  padding: var(--spacing-xl);
}

.case-study-content h4 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.case-study-content p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.case-study-metrics {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.metric-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

/* Team Section */
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  text-align: center;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: var(--spacing-xl);
}

.team-content h5 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.team-content .position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.team-content p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Section */
#contact {
  background: var(--light-color);
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.contact-form h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

 .form-control:focus {
   outline: none;
   border-color: var(--primary-color);
   box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
 }

 .form-control.error {
   border-color: #dc2626;
   box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
   background-color: #fef2f2;
 }

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

 /* Enhanced Form Styles */
 .contact-form h4 {
   color: var(--primary-color);
   margin-bottom: var(--spacing-md);
   font-size: var(--font-size-xl);
 }

 .contact-form p {
   color: var(--text-secondary);
   margin-bottom: var(--spacing-lg);
 }

 /* Professional Contact Form Enhancements */
 .contact-icon {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, var(--primary-color), #3b82f6);
   color: var(--white);
   border-radius: var(--radius-lg);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: var(--spacing-lg);
   box-shadow: var(--shadow-md);
   transition: transform var(--transition-fast);
 }

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

 .contact-icon i {
   font-size: 1.2rem;
   width: auto;
   height: auto;
   background: none;
   margin: 0;
   border-radius: 0;
 }

 .form-header {
   margin-bottom: var(--spacing-xl);
 }

 .form-header h3 {
   color: var(--primary-color);
   margin-bottom: var(--spacing-sm);
   font-size: var(--font-size-2xl);
   font-weight: 700;
 }

 .form-header p {
   color: var(--text-secondary);
   margin-bottom: 0;
   font-size: var(--font-size-lg);
 }

 .form-row {
   display: flex;
   gap: var(--spacing-lg);
   margin-bottom: var(--spacing-lg);
 }

 .form-row .form-group {
   flex: 1;
   margin-bottom: 0;
 }

 .btn-submit {
   width: 100%;
   padding: var(--spacing-lg) var(--spacing-xl);
   font-size: var(--font-size-lg);
   font-weight: 600;
   border-radius: var(--radius-lg);
   transition: all var(--transition-fast);
 }

 .btn-submit:hover {
   transform: translateY(-1px);
   box-shadow: var(--shadow-lg);
 }

 .alert {
   padding: var(--spacing-lg);
   border-radius: var(--radius-md);
   margin-top: var(--spacing-lg);
   display: flex;
   align-items: center;
   gap: var(--spacing-sm);
 }

 .alert i {
   font-size: 1.1rem;
 }

 .alert-success {
   background-color: #f0fdf4;
   border: 1px solid #bbf7d0;
   color: #15803d;
 }

 .alert-danger {
   background-color: #fef2f2;
   border: 1px solid #fecaca;
   color: #dc2626;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
   .form-row {
     flex-direction: column;
     gap: 0;
   }

   .form-row .form-group {
     margin-bottom: var(--spacing-lg);
   }

   .contact-icon {
     width: 45px;
     height: 45px;
     margin-right: var(--spacing-md);
   }

   .form-header h3 {
     font-size: var(--font-size-xl);
   }
 }

 .form-group {
   margin-bottom: var(--spacing-lg);
   position: relative;
 }

 .form-group label {
   display: block;
   margin-bottom: var(--spacing-sm);
   font-weight: 600;
   color: var(--text-primary);
   font-size: var(--font-size-sm);
 }

 .form-control {
   width: 100%;
   padding: var(--spacing-md);
   border: 2px solid var(--border-color);
   border-radius: var(--radius-md);
   font-size: var(--font-size-base);
   transition: all var(--transition-fast);
   background-color: var(--white);
 }

 .form-control:focus {
   outline: none;
   border-color: var(--primary-color);
   box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
   transform: translateY(-1px);
 }

 .form-control.error {
   border-color: #dc2626;
   box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
   background-color: #fef2f2;
 }

 .form-control.error:focus {
   border-color: #dc2626;
   box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
 }

 .field-error {
   color: #dc2626;
   font-size: var(--font-size-sm);
   margin-top: var(--spacing-xs);
   display: block;
   font-weight: 500;
   animation: fadeIn 0.3s ease-in-out;
 }

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

 /* Success and Error Message Styles */
 .success-message {
   background: linear-gradient(135deg, #10b981, #059669);
   color: white;
   padding: var(--spacing-lg);
   border-radius: var(--radius-lg);
   margin-bottom: var(--spacing-lg);
   border-left: 4px solid #047857;
   box-shadow: var(--shadow-md);
 }

 .error-message {
   background: linear-gradient(135deg, #ef4444, #dc2626);
   color: white;
   padding: var(--spacing-lg);
   border-radius: var(--radius-lg);
   margin-bottom: var(--spacing-lg);
   border-left: 4px solid #b91c1c;
   box-shadow: var(--shadow-md);
 }

 /* Checkbox Styles */
 .checkbox-label {
   display: flex;
   align-items: center;
   gap: var(--spacing-sm);
   cursor: pointer;
   font-size: var(--font-size-sm);
   margin-bottom: var(--spacing-sm);
 }

 .checkbox-label input[type="checkbox"] {
   display: none;
 }

 .checkmark {
   width: 20px;
   height: 20px;
   border: 2px solid var(--primary-color);
   border-radius: var(--radius-sm);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all var(--transition-fast);
   background: white;
 }

 .checkbox-label input[type="checkbox"]:checked + .checkmark {
   background: var(--primary-color);
   border-color: var(--primary-color);
 }

 .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
   content: '✓';
   color: white;
   font-size: 14px;
   font-weight: bold;
 }

 .checkbox-label:hover .checkmark {
   border-color: var(--dark-color);
   transform: scale(1.05);
 }

 /* Enhanced Button Styles */
 .btn {
   display: inline-flex;
   align-items: center;
   gap: var(--spacing-sm);
   padding: var(--spacing-md) var(--spacing-xl);
   border-radius: var(--radius-lg);
   font-weight: 600;
   text-align: center;
   text-decoration: none;
   transition: all var(--transition-fast);
   border: 2px solid transparent;
   cursor: pointer;
   font-size: var(--font-size-base);
   position: relative;
   overflow: hidden;
 }

 .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: left 0.5s;
 }

 .btn:hover::before {
   left: 100%;
 }

 .btn-primary {
   background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   color: var(--white);
   border-color: var(--primary-color);
 }

 .btn-primary:hover {
   background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
   border-color: var(--dark-color);
   color: var(--white);
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
 }

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

 .btn-outline:hover {
   background: var(--white);
   color: var(--primary-color);
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
 }

 /* Service Link Styles */
 .service-link {
   color: var(--primary-color);
   text-decoration: none;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: var(--spacing-xs);
   transition: all var(--transition-fast);
 }

 .service-link:hover {
   color: var(--dark-color);
   transform: translateX(4px);
 }

 .service-link i {
   transition: transform var(--transition-fast);
 }

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

/* Footer */
#footer {
  background: var(--dark-color);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 991px) {
  .toggle-nav {
    display: block;
  }
  
  .main-navigation {
    display: none;
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  section {
    padding: var(--spacing-2xl) 0;
  }
  
  .hero-section {
    padding: var(--spacing-2xl) 0;
    margin-top: 60px;
  }
  
  .hero-section-modern {
    margin-top: 120px;
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .top-bar-left span {
    display: block;
    margin-bottom: var(--spacing-xs);
  }
  
  .case-study-metrics {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  /* Mobile header adjustments */
  .site-header.scrolled .top-bar {
    padding: 4px 0;
  }
  
  .site-header.scrolled .logo img {
    height: 35px;
  }
}

@media (max-width: 575px) {
  .logo h1 {
    font-size: var(--font-size-xl);
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero-title {
    font-size: var(--font-size-xl);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
}



/* Service Card Footer and Button Fixes */
.service-card-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  background: #f8f9fa;
  margin: 20px -20px -20px -20px;
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.button-container {
  text-align: center;
  width: 100%;
}

.button-container .btn {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

/* Ensure service cards have consistent height */
.services-section .row {
  align-items: stretch;
}

.services-section .col-lg-4,
.services-section .col-md-6 {
  display: flex;
  margin-bottom: var(--spacing-xl);
}

/* Pricing Cards - Service Packages */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-features {
  flex-grow: 1;
}

.pricing-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  background: #f8f9fa;
  margin: 20px -20px -20px -20px;
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.pricing-footer .btn {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

/* Ensure all pricing cards in a row have equal height */
.pricing-section .row {
  align-items: stretch;
}

.pricing-section .col-lg-4 {
  display: flex;
  margin-bottom: var(--spacing-xl);
}

/* Technology Partners Section */
.technology-partners {
  background: #f8f9fa;
  padding: var(--spacing-2xl) 0;
}

.technology-partners .section-header {
  margin-bottom: var(--spacing-xl);
}

.technology-partners .section-header h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.technology-partners .section-header p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.tech-column {
  padding: var(--spacing-lg);
  text-align: center;
}

.tech-column h5 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.tech-column h5 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tech-column p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  font-size: 16px;
}

/* CTA Section */
.cta-section {
  background: var(--primary-color);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  opacity: 0.95;
}

.cta-buttons {
  margin-top: var(--spacing-lg);
}

.cta-buttons .btn {
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-buttons .btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
}

/* Implementation Process */
.implementation-process {
  padding: var(--spacing-2xl) 0;
  background: var(--background-light);
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.process-step-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 280px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}



.process-step-card .step-icon {
  margin-bottom: var(--spacing-md);
}

.process-step-card .step-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.process-step-card h4 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.process-step-card p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.process-step-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.process-step-card ul li {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
  position: relative;
  padding-left: var(--spacing-md);
}

.process-step-card ul li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}



/* Responsive adjustments for process flow */
@media (max-width: 768px) {
  .process-step-card {
    margin-bottom: var(--spacing-lg);
  }
}

/* Enhanced Service Cards (work with existing structure) */
.service-card {
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card.featured {
  border: 2px solid #007bff;
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #007bff;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.service-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-features li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}





.security-guarantee-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e9ecef;
}

.security-guarantee {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #28a745;
}

.security-guarantee h3 {
  color: #28a745;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.security-guarantee p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.guarantee-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #28a745;
  background: white;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #28a745;
}

@media (max-width: 768px) {
  .service-card.featured {
    transform: none;
  }
  
  .guarantee-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .pricing-info {
    margin: 20px 0;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--light-color);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-header {
  margin-bottom: var(--spacing-xl);
}

.pricing-header h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-2xl);
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.price .currency {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  font-weight: 500;
}

.price .amount {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-color);
}

.price .period {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: var(--spacing-xl);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footer {
  margin-top: auto;
}

.pricing-footer .btn {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-xl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Team Section Styles */
.team-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--light-color);
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-member {
  max-width: 800px;
  margin: 0 auto;
}

.member-image {
  margin-bottom: var(--spacing-xl);
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.member-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0 auto;
}

.member-info {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-2xl);
  text-align: center;
  width: 100%;
}

.member-info .position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-lg);
  text-align: center;
  width: 100%;
}

.member-info .expertise {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  font-size: var(--font-size-base);
  line-height: 1.6;
  text-align: center;
  width: 100%;
}

.member-description {
  text-align: left;
  margin-bottom: var(--spacing-xl);
}

.member-description p {
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  line-height: 1.7;
}

.member-results {
  text-align: left;
  background: var(--light-color);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.member-results h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
}

.member-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-results li {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  line-height: 1.6;
}

.member-results li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: var(--font-size-lg);
}

/* Hero Section Enhancements */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 2px solid #28a745;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #28a745;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.highlight-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 8px 0;
    color: #333;
}

.highlight-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsiveness for hero enhancements */
@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-highlights {
        margin-top: 40px;
    }
}

/* Carmichael-Inspired Modern Hero Section */
.hero-section-modern {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 50%, var(--dark-color) 100%);
  color: var(--white);
  padding: 120px 0 80px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section-modern::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--secondary-color);
  backdrop-filter: blur(10px);
}

.hero-title-large {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--white);
}

.hero-subtitle-large {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
}

.hero-cta-emphasis {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 4px solid var(--accent-color);
  backdrop-filter: blur(10px);
}

.cta-highlight {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.cta-phone .phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cta-phone .phone-number:hover {
  color: var(--accent-color);
}

.trust-indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.trust-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-image-section {
  position: relative;
  text-align: center;
}

.expert-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.expert-badge {
  background: var(--white);
  color: var(--text-primary);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.expert-badge h4 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.expert-badge p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Numbered Sections (Carmichael Style) */
.numbered-section {
  padding: 80px 0;
  position: relative;
}

.section-number {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.1);
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  font-family: var(--font-primary);
}

.section-badge {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.section-title-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.section-description-center {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-emphasis {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.section-emphasis-center {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-question {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.section-brand-center {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.expert-intro {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.expert-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.expert-details h4 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.expert-details p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Feature Grid */
.feature-grid {
  margin-top: 50px;
}

.feature-card-modern {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-card-modern .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card-modern .feature-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.feature-card-modern h4 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.feature-card-modern p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* CTA Section Inline */
.cta-section-inline {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 50px;
}

.cta-section-inline h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 54px;
}

/* Services Showcase */
.services-showcase {
  margin-top: 50px;
}

.service-showcase-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  height: 100%;
}

.service-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-showcase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-showcase-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.service-showcase-card h4 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-showcase-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Rating Display */
.rating-display {
  text-align: center;
  margin-bottom: 30px;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.rating-stars i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* Testimonials Grid */
.testimonials-grid {
  margin-top: 40px;
}

.testimonial-card-modern {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Stats Showcase */
.stats-showcase {
  padding: 30px;
  background: var(--light-color);
  border-radius: 15px;
}

.stat-large {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.stat-number-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

.stat-label-large {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Certifications Showcase */
.certifications-showcase {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.certifications-title {
  text-align: center;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.certifications-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.certifications-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.cert-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

.cert-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

/* Major CTA Section */
.cta-section-major {
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-major::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-title-white {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-description-white {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cta-form-simple {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.btn-secondary {
  background: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--accent-color);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: var(--light-color);
}

.final-cta-section h2 {
  font-size: 2.25rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.final-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.final-stats {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.footer-cta {
  margin-top: 20px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Responsive Design for Carmichael Style */
@media (max-width: 991px) {
  .hero-title-large {
    font-size: 2.5rem;
  }
  
  .section-title-large,
  .section-title-center {
    font-size: 2rem;
  }
  
  .trust-indicators-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .expert-intro {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .certifications-logos {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .hero-section-modern {
    padding: 100px 0 60px;
  }
  
  .hero-title-large {
    font-size: 2rem;
  }
  
  .hero-subtitle-large {
    font-size: 1.1rem;
  }
  
  .section-number {
    font-size: 4rem;
  }
  
  .section-title-large,
  .section-title-center {
    font-size: 1.75rem;
  }
  
  .numbered-section {
    padding: 60px 0;
  }
  
  .cta-section-major {
    padding: 60px 0;
  }
  
  .cta-title-white {
    font-size: 1.75rem;
  }
  
  .final-cta-section h2 {
    font-size: 1.75rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

@media (min-width: 576px) {
  .d-sm-none { display: none; }
  .d-sm-block { display: block; }
  .d-sm-flex { display: flex; }
}

@media (min-width: 768px) {
  .d-md-none { display: none; }
  .d-md-block { display: block; }
  .d-md-flex { display: flex; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none; }
  .d-lg-block { display: block; }
  .d-lg-flex { display: flex; }
} 

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
} 

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: var(--spacing-2xl) 0;
  text-align: center;
  margin-top: 120px;
}

.page-header-content h1 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-4xl);
}

.page-header-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
} 