/* =================================================================
   MYTHIC XYLAR - GRADIENT MODERN DESIGN SYSTEM
   Modern automation solutions with gradient aesthetics
   ================================================================= */

/* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1A3A52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #333;
}

a {
  color: #2C5F8D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00D4FF;
}

strong {
  font-weight: 600;
  color: #1A3A52;
}

blockquote {
  border-left: 4px solid #00D4FF;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #1a1a1a;
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* === HEADER & NAVIGATION === */
header {
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(44, 95, 141, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  font-size: 16px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D4FF, #2C5F8D);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background: linear-gradient(135deg, #2C5F8D, #00D4FF);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1A3A52 0%, #2C5F8D 100%);
  z-index: 1050;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 12px;
  color: #00D4FF;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F8D, #00D4FF);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, #00D4FF, #2C5F8D);
}

.btn-secondary {
  background: transparent;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.1), rgba(0, 212, 255, 0.1));
  border-color: #00D4FF;
  color: #00D4FF;
}

.btn-link {
  background: transparent;
  color: #2C5F8D;
  padding: 8px 16px;
  font-weight: 600;
}

.btn-link:hover {
  color: #00D4FF;
  text-decoration: underline;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #1A3A52 0%, #2C5F8D 50%, #00D4FF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #00D4FF;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item strong {
  font-size: 32px;
  color: #00D4FF;
  font-weight: 700;
}

.trust-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #00D4FF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
}

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
}

/* === SERVICES GRID === */
.services-grid,
.benefits-grid,
.values-grid,
.categories-grid,
.resources-grid,
.blog-grid,
.tools-grid,
.case-studies-grid,
.contact-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.benefit-card,
.value-card,
.category-card,
.resource-card,
.blog-card,
.tool-card,
.case-study-card,
.contact-method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.benefit-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2C5F8D, #00D4FF);
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.benefit-card:hover,
.value-card:hover,
.category-card:hover,
.resource-card:hover,
.blog-card:hover,
.tool-card:hover,
.case-study-card:hover,
.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.service-card h3,
.benefit-card h3,
.value-card h3,
.category-card h3,
.resource-card h3,
.blog-card h3,
.tool-card h3,
.case-study-card h3,
.contact-method-card h3 {
  margin-top: 0;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #2C5F8D, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0;
}

.count {
  display: inline-block;
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.1), rgba(0, 212, 255, 0.1));
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 12px;
}

.resource-type {
  display: inline-block;
  background: linear-gradient(135deg, #2C5F8D, #00D4FF);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.meta {
  font-size: 14px;
  color: #777;
  margin-top: 12px;
}

/* === PROCESS STEPS === */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2C5F8D, #00D4FF);
  color: #fff;
  border-radius: 50%;
  line-height: 64px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  border: none;
  padding: 0;
  font-style: italic;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.testimonial-card cite strong {
  color: #2C5F8D;
  font-size: 16px;
}

.testimonial-card cite span {
  color: #666;
  font-size: 14px;
}

/* === STATS GRID === */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.1);
  min-width: 180px;
}

.stat-item strong {
  font-size: 36px;
  background: linear-gradient(135deg, #2C5F8D, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span {
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #2C5F8D 0%, #00D4FF 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 20px;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

/* === SERVICE DETAIL === */
.service-detail {
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-price {
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.1), rgba(0, 212, 255, 0.1));
  padding: 16px 24px;
  border-radius: 8px;
  margin: 24px 0;
  display: inline-block;
}

/* === INDUSTRY SOLUTION === */
.industry-solution {
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* === CASE STUDY === */
.case-study-featured {
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* === APPROACH GRID === */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.approach-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.05), rgba(0, 212, 255, 0.05));
  border-radius: 12px;
  border-left: 4px solid #00D4FF;
  margin-bottom: 20px;
}

/* === ACHIEVEMENTS LIST === */
.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
}

.achievements-list li {
  padding: 16px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #00D4FF;
  margin: 0;
}

/* === LOCATION DETAILS === */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.location-details p {
  flex: 1 1 300px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === CONTACT FORM === */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.form-field {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #1A3A52;
  font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #00D4FF;
}

.form-field-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.form-field-checkbox input {
  width: 20px;
  height: 20px;
}

.form-field-checkbox label {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.privacy-notice {
  font-size: 12px;
  color: #777;
  margin-top: 16px;
  text-align: center;
}

/* === OFFICE INFO === */
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.office-column {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === LEGAL PAGES === */
.legal-page {
  background: #fff;
  padding: 60px 20px;
  border-radius: 16px;
  margin: 40px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #00D4FF 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  margin: 0 auto 24px;
  line-height: 1;
}

.thank-you-hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.lead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* === STEPS GRID === */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 20px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #1A3A52 0%, #2C5F8D 100%);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #00D4FF;
  background: none;
  -webkit-text-fill-color: #00D4FF;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00D4FF;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
}

.footer-legal li {
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A3A52, #2C5F8D);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
  color: #fff;
}

.cookie-text h3 {
  color: #00D4FF;
  background: none;
  -webkit-text-fill-color: #00D4FF;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* === COOKIE MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  margin-top: 0;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #00D4FF;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .nav-menu,
  .cta-buttons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    gap: 24px;
  }
  
  /* Cards */
  .service-card,
  .benefit-card,
  .value-card,
  .category-card,
  .resource-card,
  .blog-card,
  .tool-card,
  .case-study-card,
  .contact-method-card {
    flex: 1 1 100%;
  }
  
  /* Process Steps */
  .step {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Approach */
  .approach-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Steps Grid */
  .step-item {
    flex: 1 1 100%;
  }
  
  /* Office Details */
  .office-column {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .benefit-card,
  .value-card {
    padding: 24px;
  }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.benefit-card,
.value-card,
.testimonial-card,
.step {
  animation: fadeIn 0.6s ease forwards;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
}