/* ========================================
   CSS Variables & Design Tokens
   ======================================== */
:root {
  /* Colors */
  --color-primary: #151515;
  --color-primary-light: #D71920;
  --color-primary-dark: #151515;
  --color-accent: #F4C21D;
  --color-accent-hover: #E0B01A;
  --color-white: #FFFFFF;
  --color-bg: #F6F7F9;
  --color-bg-alt: #FFFFFF;
  --color-text: #4B5563;
  --color-text-light: #6B7280;
  --color-text-muted: #9CA3AF;
  --color-border: #E0E0E0;
  --color-shadow: rgba(21, 21, 21, 0.1);
  --color-overlay: rgba(21, 21, 21, 0.85);

  /* Typography */

  --font-fr: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px var(--color-shadow);
  --shadow-md: 0 4px 16px var(--color-shadow);
  --shadow-lg: 0 8px 32px var(--color-shadow);
  --shadow-xl: 0 16px 48px var(--color-shadow);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-fr);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-fast);
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: var(--transition-base);
  white-space: nowrap;
}

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

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

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

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

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

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-phone {
  background: var(--color-primary-light);
  color: var(--color-white);
  font-size: var(--font-size-lg);
}

.btn-phone:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--font-size-lg);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: 800;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm) var(--space-sm);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  color: var(--color-white);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  line-height: 1.5;
}

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

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-num {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Hero Scroll Down Indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero-scroll-down:hover {
  opacity: 1;
}

.hero-scroll-chevron {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ========================================
   About Preview (Home)
   ======================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview-content h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.about-preview-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.stat-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-primary-light);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

/* ========================================
   Services Cards
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border-top: 4px solid var(--color-primary-light);
  position: relative;
  overflow: hidden;
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
}

.service-card h3 {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.service-card p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.service-feature::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.service-card .btn {
  width: 100%;
}

/* ========================================
   Why Choose Us
   ======================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.reason-card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.reason-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-primary-light);
  transition: var(--transition-base);
}

.reason-card:hover .reason-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.reason-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.reason-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: var(--color-primary-light);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

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

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.testimonial-info h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-info p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  text-align: center;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-full);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-full);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary-light);
}

.contact-item h4 {
  font-size: var(--font-size-base);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.contact-item p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-primary-light);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--color-primary);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 400px;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}

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

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

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  opacity: 0.8;
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  transition: var(--transition-fast);
}

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

.footer-col h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary-light);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  font-size: var(--font-size-sm);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  opacity: 1;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-sm);
  opacity: 0.7;
}

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.94) 0%, rgba(21, 21, 21, 0.88) 50%, rgba(21, 21, 21, 0.82) 100%);
  z-index: 1;
}

.page-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -80px;
}

.page-hero-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: -60px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.06em;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

/* ========================================
   Hero Photo (Homepage)
   ======================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.service-detail-content h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.service-detail-content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.service-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
}

.detail-feature::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-visual {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.service-detail-visual .big-icon {
  font-size: 6rem;
  margin-bottom: var(--space-lg);
}

.service-detail-visual h3 {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.audience-tag {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: var(--font-size-xs);
  font-weight: 500;
}

/* ========================================
   Open Day Banner
   ======================================== */
.open-day-banner {
  background: linear-gradient(135deg, var(--color-accent), #F4C21D);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin-top: var(--space-3xl);
}

.open-day-banner h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

.open-day-banner p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.open-day-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.open-day-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
}

/* ========================================
   About Page
   ======================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story-text h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.about-story-text p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.value-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.accreditation-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  margin-top: var(--space-3xl);
}

.accreditation-box .big-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
}

.accreditation-box h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

.accreditation-box p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Testimonials Page
   ======================================== */
.testimonials-masonry {
  columns: 2;
  column-gap: var(--space-xl);
}

.testimonials-masonry .testimonial-card {
  break-inside: avoid;
  margin-bottom: var(--space-xl);
}

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Counter animation */
.counter {
  display: inline-block;
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========================================
   Mobile Navigation Overlay
   ======================================== */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: var(--transition-base);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--font-size-lg);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary-light);
}

.mobile-nav-cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .about-preview,
  .service-detail,
  .contact-grid,
  .about-story {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.2rem;
    --font-size-4xl: 1.8rem;
    --font-size-3xl: 1.5rem;
    --space-4xl: 4rem;
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero h1 {
    font-size: var(--font-size-4xl);
  }

  .hero-stats {
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
  }

  .hero-stat-num {
    font-size: var(--font-size-xl);
  }

  .hero-scroll-down {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-masonry {
    columns: 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .service-detail-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .open-day-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-lg);
  }

  .hero-stat {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  .page-hero-shapes,
  .hero-photo-shapes {
    display: none;
  }

  .page-hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .header, .footer, .whatsapp-float, .mobile-nav {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }

  .section {
    padding: var(--space-xl) 0;
  }
}

/* ========================================
   Real Photos - Image Sections
   ======================================== */

/* Hero with real background */
.hero-photo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.82) 0%, rgba(21, 21, 21, 0.78) 40%, rgba(21, 21, 21, 0.72) 100%);
  z-index: 1;
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  z-index: 3;
}

.hero-photo .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-photo-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-photo-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.hero-photo-shape-1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -80px;
}

.hero-photo-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -120px;
  left: -80px;
}

.hero-photo-shape-3 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 25%;
  background: rgba(244, 194, 29, 0.06);
}

/* Service photo cards */
.service-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition-base);
}

.service-photo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.9) 0%, rgba(21, 21, 21, 0.3) 50%, transparent 100%);
}

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

.service-photo-card .service-photo-content {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl);
  color: var(--color-white);
  width: 100%;
}

.service-photo-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.service-photo-card p {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.service-photo-card .btn {
  width: fit-content;
}

/* Gallery grid */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.photo-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.photo-gallery-item:hover img {
  transform: scale(1.05);
}

.photo-gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.photo-gallery-item:hover::after {
  opacity: 1;
}

/* About photo section */
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.85), rgba(215, 25, 32, 0.7));
}

.about-photo-content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.about-photo-content h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.about-photo-content p {
  opacity: 0.9;
  line-height: 1.8;
}

/* Photo strip / banner */
.photo-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay);
}

.photo-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-xl);
}

.photo-banner-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.photo-banner-content p {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* Responsive for photo sections */
@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .service-photo-card {
    min-height: 280px;
  }

  .photo-banner {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   About Page - Premium Styles
   ======================================== */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
  padding-top: var(--header-height);
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.97) 0%, rgba(21, 21, 21, 0.92) 40%, rgba(21, 21, 21, 0.82) 100%);
}

.about-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.about-hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.about-hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

.about-hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 30%;
  background: rgba(244, 194, 29, 0.08);
}

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

.about-hero-content {
  max-width: 750px;
}

.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 194, 29, 0.15);
  border: 1px solid rgba(244, 194, 29, 0.3);
  color: var(--color-accent);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.about-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
}

.about-hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.8;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 550px;
}

.about-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xl);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-lg);
}

.about-hero-stat {
  text-align: center;
}

.about-hero-stat-num {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.about-hero-stat-label {
  font-size: var(--font-size-xs);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Section Label */
.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-text);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.2;
}

/* About Split Layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-split-content .section-label {
  color: var(--color-primary);
}

.about-split-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.about-split-content p {
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-base);
}

.about-quote {
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(135deg, rgba(244, 194, 29, 0.05) 0%, rgba(244, 194, 29, 0.02) 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--color-text);
  line-height: 1.7;
}

.about-split-visual {
  position: relative;
}

.about-split-photo {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-split-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.1);
}

.about-split-float-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--color-white);
  color: var(--color-text);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about-split-float-card-2 {
  bottom: auto;
  top: -20px;
  right: auto;
  left: -30px;
}

.about-split-float-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.about-split-float-num {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-primary);
}

.about-split-float-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mission & Vision Grid */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.mv-card {
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
}

.mv-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mv-card-mission {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 20px 60px rgba(21, 21, 21, 0.3);
}

.mv-card-mission:hover {
  box-shadow: 0 25px 70px rgba(21, 21, 21, 0.4);
}

.mv-card-mission h3 {
  color: var(--color-white);
}

.mv-card-vision {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.mv-card-vision:hover {
  box-shadow: var(--shadow-lg);
}

.mv-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.mv-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.mv-card p {
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.mv-card-mission p {
  opacity: 0.9;
  color: var(--color-white);
}

.mv-card-vision p {
  color: var(--color-text-light);
}

.mv-card-list {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mv-card-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.mv-card-mission .mv-card-list-item {
  color: rgba(255,255,255,0.9);
}

.mv-card-vision .mv-card-list-item {
  color: var(--color-text);
}

.mv-card-check {
  width: 20px;
  height: 20px;
  background: rgba(244, 194, 29, 0.2);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.mv-card-check-blue {
  background: rgba(215, 25, 32, 0.15);
  color: var(--color-primary-light);
}

/* Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.values-grid .value-card:nth-child(4),
.values-grid .value-card:nth-child(5) {
  grid-column: span 1;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.value-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card:hover .value-card-accent {
  transform: scaleX(1);
}

.value-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.value-card p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

/* Accreditation Card */
.accred-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.accred-card:hover {
  box-shadow: var(--shadow-lg);
}

.accred-card-left {
  text-align: center;
}

.accred-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(244, 194, 29, 0.1) 0%, rgba(244, 194, 29, 0.05) 100%);
  border: 1px solid rgba(244, 194, 29, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
}

.accred-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.accred-card-right h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.accred-card-right p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.accred-features {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.accred-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.accred-feature-icon {
  font-size: 1.2rem;
}

/* About Gallery */
.about-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.about-gallery-main,
.about-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-gallery-main img,
.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-gallery-main {
  min-height: 400px;
}

.about-gallery-main img {
  height: 400px;
}

.about-gallery-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-gallery-item {
  flex: 1;
}

.about-gallery-item img {
  height: 100%;
  min-height: 185px;
}

.about-gallery-main:hover img,
.about-gallery-item:hover img {
  transform: scale(1.05);
}

.about-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about-gallery-main:hover .about-gallery-caption,
.about-gallery-item:hover .about-gallery-caption {
  transform: translateY(0);
}

/* About CTA */
.about-cta {
  position: relative;
  padding: 120px 0;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.96) 0%, rgba(21, 21, 21, 0.93) 100%);
}

.about-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

.about-cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
  font-weight: 800;
}

.about-cta-content p {
  font-size: var(--font-size-lg);
  opacity: 0.85;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.about-cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive for About */
@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
  }

  .about-hero-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
  }

  .about-hero-stat-divider {
    display: none;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-split-visual {
    order: -1;
  }

  .about-split-photo {
    height: 300px;
  }

  .about-split-float-card {
    bottom: -15px;
    right: 10px;
    padding: var(--space-md) var(--space-lg);
  }

  .about-split-float-card-2 {
    top: -10px;
    left: 10px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: var(--space-2xl);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .accred-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .accred-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .accred-features {
    justify-content: center;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery-side {
    flex-direction: row;
  }

  .about-gallery-main img {
    height: 300px;
  }

  .about-cta {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero-stats {
    width: 100%;
  }

  .about-hero-stat {
    flex: 1;
    min-width: 70px;
  }

  .about-hero-stat-num {
    font-size: var(--font-size-lg);
  }

  .about-split-float-card {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    display: inline-block;
    margin-top: var(--space-md);
  }

  .about-split-float-card-2 {
    position: relative;
    top: auto;
    left: auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-side {
    flex-direction: column;
  }

  .about-gallery-main img,
  .about-gallery-item img {
    height: 250px;
  }
}
