/* File: css/style.css */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/* ========================================
   CSS VARIABLES - NEW COLOR SCHEME
======================================== */

:root {
  /* Color Palette - Medical Professional */
  --color-primary: #0B4DA2;
  --color-primary-dark: #083A7A;
  --color-primary-light: #E6F0FF;
  
  --color-secondary: #D62828;
  --color-secondary-dark: #B02020;
  --color-secondary-light: #FFE8E8;
  
  --color-accent: #2F80ED;
  --color-accent-dark: #2668C9;
  --color-accent-light: #E8F3FF;
  
  --color-text-primary: #1F2A44;
  --color-text-secondary: #6B7280;
  --color-text-light: #9CA3AF;
  
  --color-background: #FFFFFF;
  --color-background-light: #F5F7FA;
  --color-background-dark: #1F2A44;
  
  --color-border: #E0E6ED;
  
  --color-success: #10B981;
  --color-error: #EF4444;
  --color-warning: #F59E0B;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Nunito', 'Inter', sans-serif;
  
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-base: 1.6;
  --line-height-heading: 1.3;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 77, 162, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 77, 162, 0.1);
  --shadow-lg: 0 10px 30px rgba(11, 77, 162, 0.12);
  --shadow-xl: 0 20px 50px rgba(11, 77, 162, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;
}

/* ========================================
   BASE STYLES
======================================== */

* {
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: var(--spacing-md);
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* ========================================
   PAGE LOADER
======================================== */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: var(--spacing-md);
  animation: pulse 2s ease-in-out infinite;
}

.loader-logo img {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--spacing-md);
  border: 4px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-content p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ========================================
   COOKIE CONSENT
======================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-background);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: var(--spacing-lg) var(--spacing-md);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-consent.hidden {
  display: none;
}

.cookie-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  flex: 1;
}

.cookie-text i {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cookie-text strong {
  display: block;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.cookie-text p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.cookie-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-decoration: underline;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

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

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

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

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--font-size-sm);
}

.btn-block {
  width: 100%;
}

/* ========================================
   FORMS
======================================== */

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-sm);
  cursor: pointer;
}

.form-intro,
.form-note {
  margin-top: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

.form-intro {
  text-align: left;
  justify-content: flex-start;
  margin-bottom: var(--spacing-md);
}

/* ========================================
   HEADER
======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-sm) 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.logo:hover {
  opacity: 0.85;
}

.logo-image {
  height: 45px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  transition: color var(--transition-base);
}

.nav-list a:hover {
  color: var(--color-primary);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  background-color: var(--color-primary);
  color: white !important;
  border-radius: var(--radius-md);
}

.nav-cta:hover {
  background-color: var(--color-primary-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ========================================
   HERO SECTION WITH VIDEO
======================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

.hero-fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #D4E9EE 100%);
  background-image: 
    linear-gradient(135deg, rgba(11, 77, 162, 0.85) 0%, rgba(47, 128, 237, 0.7) 100%),
    url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 77, 162, 0.8) 0%, rgba(47, 128, 237, 0.6) 100%);
  z-index: 1;
}

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

.hero-title {
  color: white;
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: white;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.hero-trust-badges {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: white;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.trust-badge i {
  font-size: 1.5rem;
  color: white;
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: var(--radius-full);
  color: white;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ========================================
   SERVICES SECTION
======================================== */

.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

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

.service-title {
  font-size: 1.375rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
}

.service-description {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.service-link:hover {
  color: var(--color-primary-dark);
}

.services-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--color-background-light);
  border-radius: var(--radius-lg);
}

.services-cta h3 {
  margin-bottom: var(--spacing-sm);
}

.services-cta p {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

/* ========================================
   PROCESS SECTION
======================================== */

.process {
  background-color: var(--color-background-light);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.step-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-light);
  font-family: var(--font-secondary);
  line-height: 1;
}

.step-title {
  font-size: 1.375rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-primary);
}

.step-description {
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-sm) 0;
}

.step-details {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.step-details span {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.step-details i {
  color: var(--color-success);
  font-size: 1rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.process-cta {
  margin-top: var(--spacing-2xl);
}

.process-cta-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.process-cta-content i {
  font-size: 3rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.process-cta-content h3 {
  margin-bottom: 0.25rem;
}

.process-cta-content p {
  margin: 0;
  color: var(--color-text-secondary);
}

/* ========================================
   WHY US SECTION
======================================== */

.why-us {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.why-us .section-title,
.why-us .section-subtitle {
  color: white;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.4);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 2.5rem;
  color: white;
}

.why-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.why-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-item {
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-secondary);
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

/* ========================================
   TEAM SECTION
======================================== */

.team {
  background-color: white;
}

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

.team-member {
  text-align: center;
  transition: transform var(--transition-base);
}

.team-member:hover {
  transform: translateY(-8px);
}

.member-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 5px solid var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border: 3px solid white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-badge i {
  color: white;
  font-size: 1.25rem;
}

.member-name {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-primary);
}

.member-role {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
}

.member-bio {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.member-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.member-credentials span {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.member-credentials i {
  color: var(--color-accent);
}

.member-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.member-contact a:hover {
  background: var(--color-primary);
  color: white;
}

.team-cta {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-background-light);
  border-radius: var(--radius-lg);
}

.team-cta p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials {
  background-color: var(--color-background-light);
}

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

.testimonial-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

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

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--spacing-md);
  color: #F59E0B;
  font-size: 1.125rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-size: var(--font-size-base);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.testimonial-author strong {
  display: block;
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.testimonials-cta {
  text-align: center;
  padding: var(--spacing-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonials-cta h3 {
  margin-bottom: var(--spacing-sm);
}

.testimonials-cta p {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, white 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.contact-intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.contact-method {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-method strong {
  display: block;
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.25rem;
}

.contact-method a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-note {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.emergency-contact {
  padding: var(--spacing-lg);
  background: var(--color-secondary-light);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.emergency-icon {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-icon i {
  color: white;
  font-size: 1.5rem;
}

.emergency-contact strong {
  display: block;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.emergency-contact p {
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-sm) 0;
  font-size: var(--font-size-sm);
}

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

.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
}

/* ========================================
   FOOTER
======================================== */

.footer {
  background-color: var(--color-background-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  margin-bottom: var(--spacing-md);
  transition: opacity var(--transition-base);
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  font-size: var(--font-size-sm);
}

.footer-col-brand {
  max-width: 350px;
}

.footer-col h4,
.footer-col h5 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

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

.footer-col ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.footer-contact i {
  color: var(--color-accent);
  font-size: 1.125rem;
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-newsletter {
  margin-top: var(--spacing-md);
}

.footer-newsletter p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-sm);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-xs);
}

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.newsletter-form button {
  padding: 0.625rem 1rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-base);
}

.newsletter-form button:hover {
  background: var(--color-primary-dark);
}

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

.footer-bottom-left p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: var(--font-size-sm);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  transition: color var(--transition-base);
}

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

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-4px);
}

.back-to-top i {
  font-size: 1.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    grid-template-columns: auto 1fr;
    gap: var(--spacing-md);
  }
  
  .step-icon {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .process-cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-2xl) 0;
  }
  
  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }
  
  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .logo-image {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .hero {
    min-height: 70vh;
    text-align: center;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto var(--spacing-sm);
  }
  
  .step-icon {
    margin: 0 auto;
    grid-column: auto;
    grid-row: auto;
  }

  .step-details {
    justify-content: center;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .footer-logo-image {
    height: 40px;
  }
  
  .footer-logo-text {
    font-size: 1.25rem;
  }
  
  .footer-col-brand {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --container-padding: 1rem;
  }
  
  section {
    padding: var(--spacing-xl) 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .services-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: var(--spacing-md);
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
  .logo-image {
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }

  .scroll-indicator {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 400px) {
  .logo-text {
    display: none;
  }
  
  .logo-image {
    height: 40px;
  }
}

/* ========================================
   ACCESSIBILITY & PREFERENCES
======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  .btn-primary {
    border: 3px solid currentColor;
  }
  
  .service-card,
  .why-card,
  .testimonial-card {
    border-width: 3px;
  }
}

@media print {
  .header,
  .nav,
  .hero,
  .back-to-top,
  .contact-form-wrapper,
  .cookie-consent,
  .page-loader {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}