/* Modern Professional Design - Seven Biz Group */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

:root {
  --primary: #0052CC;
  --primary-dark: #003D99;
  --primary-light: #2970FF;
  --secondary: #00B8D4;
  --accent: #FF6B35;
  --success: #00C853;
  --dark: #0A1929;
  --dark-2: #1A2332;
  --text: #1E293B;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header - Modern Glassmorphism */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  filter: drop-shadow(0 2px 8px rgba(0, 82, 204, 0.2));
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 82, 204, 0.2));
}

.logo span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo:hover {
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-nav a,
.dropbtn {
  color: var(--text);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.main-nav a:hover,
.dropbtn:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 280px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 1000;
  margin-top: 8px;
  padding: 12px 0;
  border: 1px solid var(--border);
  animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-content a {
  color: var(--text);
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  border-radius: 0;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: var(--bg-alt);
  color: var(--primary);
  padding-left: 24px;
}

.dropdown-content a::after {
  display: none;
}

.menu-icon {
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-content a:hover .menu-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.4);
}

/* Hero - Modern & Bold */
.hero {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F0F9FF 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--dark);
  letter-spacing: -1.5px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 82, 204, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent) 0%, #FF8A5B 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.svg-hero {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.hero-image {
  position: relative;
}

/* Image Slider */
.image-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.9), transparent);
  color: var(--white);
  padding: 40px 24px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: var(--white);
  width: 32px;
  border-radius: 5px;
}

.hero-image .image-overlay {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.hero-image:hover .image-overlay {
  transform: translateY(-8px);
}

/* Services Section - Card Grid */
.services-overview {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -1px;
}

.section-sub {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition);
  filter: grayscale(20%);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.center {
  text-align: center;
  margin-top: 40px;
}

/* About Preview */
.about-preview {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
  letter-spacing: -1px;
}

.split p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-inner h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.5px;
}

/* Content Pages */
.content {
  padding: 80px 32px;
  min-height: 60vh;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -1px;
}

.mission-vision {
  margin: 60px 0;
}

.mission-vision h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}

.values {
  margin: 60px 0;
}

.values h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--dark);
}

.values-list {
  list-style: none;
  display: grid;
  gap: 20px;
}

.values-list li {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-size: 1.05rem;
  line-height: 1.6;
}

.values-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.values-list strong {
  color: var(--primary);
  font-weight: 700;
}

.history {
  margin: 60px 0;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.history h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.history p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.history ul {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.history ul li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  line-height: 1.7;
}

.history ul li:last-child {
  border-bottom: none;
}

.history strong {
  color: var(--primary);
  font-weight: 700;
}

/* Service Detail */
.service-detail {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-detail:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px 0;
}

.service-detail p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail ul {
  margin: 20px 0;
  padding-left: 24px;
}

.service-detail ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
}

.service-detail ul li::marker {
  color: var(--primary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-grid figure:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-form form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-info {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.contact-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 32px 0 12px 0;
  color: var(--secondary);
}

.contact-info p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--white);
  text-decoration: underline;
}

.map-wrap {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  border-radius: var(--radius);
  display: block;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.02)"/></svg>');
  opacity: 0.5;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.3fr;
  gap: 48px;
  padding: 0 32px 48px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--white);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.footer-certifications {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.footer-grid h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
  background: var(--primary);
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
}

.socials a svg {
  width: 20px;
  height: 20px;
}

.small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 32px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .cta {
    display: none;
  }
  
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-overview,
  .about-preview {
    padding: 60px 0;
  }
  
  /* Slider adjustments for tablet */
  .image-slider {
    height: 350px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .slider-btn.prev {
    left: 12px;
  }
  
  .slider-btn.next {
    right: 12px;
  }
  
  .slide-caption {
    font-size: 1.1rem;
    padding: 30px 20px 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav a,
  .dropbtn {
    padding: 14px 12px;
    width: 100%;
    text-align: left;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background: var(--bg-alt);
    margin-top: 8px;
    border-radius: 8px;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .cta {
    display: none;
  }
  
  .header-inner {
    padding: 16px 20px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .page-header h1 {
    font-size: 2.25rem;
  }
  
  .contact-form form {
    padding: 32px 24px;
  }
  
  .service-detail {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.85rem;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .stat-value {
    font-size: 2.25rem;
  }
  
  /* Slider adjustments for mobile */
  .image-slider {
    height: 280px;
    border-radius: 12px;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .slider-btn.prev {
    left: 8px;
  }
  
  .slider-btn.next {
    right: 8px;
  }
  
  .slide-caption {
    font-size: 1rem;
    padding: 24px 16px 16px;
  }
  
  .slider-dots {
    bottom: 12px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}

/* New Homepage Sections */
.why-choose {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-box {
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.feature-box:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.feature-box p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.98rem;
}

.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 2px solid var(--border);
}

.author strong {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
}

.author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.process {
  padding: 100px 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.25);
  transition: var(--transition);
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 82, 204, 0.35);
}

.step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.step p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.industries {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.industries::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.5;
}

.industries .section-title,
.industries .section-sub {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.industry-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 24px;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.industry-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
  transform: translateY(-4px);
}

/* Service Detail Pages */
.service-overview {
  margin: 48px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.overview-grid h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.overview-grid p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.highlights-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.highlights-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.highlights-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-box ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.05rem;
  line-height: 1.5;
}

.highlights-box ul li:last-child {
  border-bottom: none;
}

.service-features {
  margin: 80px 0;
}

.service-features h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  color: var(--dark);
}

.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-detail {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.feature-detail:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-detail h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-detail p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.feature-detail strong {
  color: var(--dark);
  font-weight: 600;
}

.feature-detail ul {
  margin: 16px 0;
  padding-left: 24px;
}

.feature-detail ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 10px;
}

.feature-detail ul li::marker {
  color: var(--primary);
}

.benefits {
  margin: 80px 0;
  padding: 60px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-lg);
}

.benefits h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.benefit-item {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.benefit-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.pricing-preview {
  margin: 80px 0;
}

.pricing-preview h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.pricing-preview > p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.process-detail {
  margin: 80px 0;
}

.process-detail h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  color: var(--dark);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.timeline-item {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.timeline-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.timeline-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-bottom {
  margin: 80px 0 40px;
  padding: 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}

.cta-bottom h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-bottom p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Page Enhanced Styles */
.services-intro {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-radius: var(--radius-lg);
  margin: 48px 0;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 64px 0;
}

.service-card-enhanced {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-enhanced:hover::before {
  transform: scaleX(1);
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  border-color: var(--primary);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-enhanced:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card-enhanced h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-tagline {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
  font-style: italic;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.highlight-tag {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 82, 204, 0.2);
}

.service-card-enhanced > p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}

.service-features li {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 0.98rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.services-value {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-radius: var(--radius-lg);
  margin: 64px 0;
  text-align: center;
}

.services-value h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--dark);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.value-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.value-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.98rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 80px 0;
  border-radius: var(--radius-lg);
  margin: 64px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
  
  .overview-grid,
  .features-detail-grid,
  .benefits-grid,
  .pricing-options,
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .services-grid-enhanced {
    grid-template-columns: 1fr;
  }
  
  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid,
  .testimonials-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .why-choose,
  .testimonials,
  .process,
  .industries {
    padding: 60px 0;
  }
  
  .benefits,
  .cta-bottom {
    padding: 40px 24px;
  }
  
  .intro-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
  }
  
  .services-grid-enhanced {
    gap: 24px;
  }
  
  .service-card-enhanced {
    padding: 32px 24px;
  }
  
  .service-card-enhanced h3 {
    font-size: 1.5rem;
  }
  
  .service-icon {
    font-size: 3rem;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-value h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.05rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 20px;
}

.lang-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

@media (max-width: 768px) {
  .language-selector {
    margin-left: 0;
    margin-top: 10px;
  }
}



