/* Base CSS for TurkCoach - Modern Design System with Volumetric UI Elements */

:root {
  /* Primary Colors */
  --primary-color: #6772E5;
  --primary-dark: #4E57B9;
  --primary-light: #8C94F7;
  
  /* Secondary Colors */
  --secondary-color: #FF9F7F;
  --secondary-dark: #E58168;
  --secondary-light: #FFB99F;
  
  /* Accent Colors */
  --accent-color: #9C6AFF;
  --accent-dark: #7F4FE5;
  --accent-light: #B98DFF;
  
  /* Neutral Colors */
  --dark: #2A2F45;
  --dark-light: #4A5172;
  --light: #F5F7FF;
  --light-dark: #E1E5F2;
  
  /* UI Colors */
  --success: #66CFB0;
  --warning: #FFCD4F;
  --error: #FF6B6B;
  --info: #5CBCFF;
  
  /* Background Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-light), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  
  /* Box Shadows */
  --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
  
  /* 3D Effects */
  --shadow-3d: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.12);
  --shadow-3d-hover: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
  
  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-nav: 1000;
  --z-dropdown: 900;
  --z-modal: 800;
  --z-tooltip: 700;
}

/* Base Styles */
html, body {
  font-family: var(--body-font);
  color: var(--dark);
  background-color: var(--light);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

p {
  line-height: 1.6;
  margin-bottom: var(--space-md);
  color: var(--dark-light);
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: none;
  font-family: var(--heading-font);
  box-shadow: var(--shadow-small);
  border: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.button:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-small);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: white;
}

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

.button.is-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
}

.button.is-light {
  background-color: var(--light);
  color: var(--primary-color);
  border: 1px solid var(--light-dark);
}

.button.is-light:hover {
  background-color: var(--light-dark);
  color: var(--primary-dark);
}

.button.is-link {
  background-color: transparent;
  color: var(--primary-color);
  box-shadow: none;
  padding: 0.5rem 1rem;
}

.button.is-link:hover {
  background-color: rgba(103, 114, 229, 0.1);
  transform: none;
}

.button.is-rounded {
  border-radius: 2rem;
}

.button.is-medium {
  font-size: 1.1rem;
  padding: 0.85rem 1.75rem;
}

.button.is-large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.button.is-fullwidth {
  width: 100%;
  display: block;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-small);
  z-index: var(--z-nav);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand h1 {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.navbar-menu {
  display: flex;
}

.navbar-end {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.navbar-item {
  padding: 0.5rem 1rem;
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.navbar-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

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

.navbar-item:hover:after {
  width: 30%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  position: relative;
}

.navbar-burger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--dark);
  position: absolute;
  left: 50%;
  margin-left: -0.75rem;
  transition: all var(--transition-fast);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50%);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero.is-fullheight {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-body {
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 2;
}

.hero .title,
.hero .subtitle,
.hero .hero-text {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .title {
  margin-bottom: var(--space-md);
  font-size: 3.5rem;
  line-height: 1.1;
}

.hero .subtitle {
  margin-bottom: var(--space-lg);
  font-size: 2rem;
  opacity: 0.9;
}

.hero .hero-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto var(--space-lg) auto;
  opacity: 0.9;
}

.hero .buttons {
  margin-top: var(--space-lg);
}

/* Features Section */
.features {
  padding: var(--space-xxl) 0;
}

.feature-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  border: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.feature-card .card-image {
  position: relative;
  overflow: hidden;
}

.feature-card .image-container {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-card .title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

/* Instructors Section */
.instructors {
  padding: var(--space-xxl) 0;
  background-color: var(--light-dark);
}

.instructor-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  border: none;
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.instructor-card .card-image {
  position: relative;
  overflow: hidden;
}

.instructor-card .image-container {
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.instructor-card:hover img {
  transform: scale(1.05);
}

.instructor-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instructor-card .title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.instructor-card .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

/* Workshops Section */
.workshops {
  padding: var(--space-xxl) 0;
}

.workshop-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  border: none;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.workshop-card .card-image {
  position: relative;
  overflow: hidden;
}

.workshop-card .image-container {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.workshop-card:hover img {
  transform: scale(1.05);
}

.workshop-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.workshop-card .title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.workshop-card .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-content {
  display: flex;
  transition: transform var(--transition-normal);
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.carousel-prev,
.carousel-next {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-round);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 var(--space-sm);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-small);
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* Accolades Section */
.accolades {
  padding: var(--space-xxl) 0;
  background-color: var(--light-dark);
}

.stat-widget {
  text-align: center;
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-normal);
}

.stat-widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-family: var(--heading-font);
}

.stat-title {
  font-size: 1.1rem;
  color: var(--dark-light);
  font-weight: 500;
}

.testimonial-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  background-color: white;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card .content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-light);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  color: var(--dark);
  font-weight: 600;
  text-align: right;
}

/* Blog Section */
.blog {
  padding: var(--space-xxl) 0;
}

.blog-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  border: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.blog-card .card-image {
  position: relative;
  overflow: hidden;
}

.blog-card .image-container {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.blog-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

/* Team Section */
.team {
  padding: var(--space-xxl) 0;
  background-color: var(--light-dark);
}

.team-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  border: none;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.team-card .card-image {
  position: relative;
  overflow: hidden;
}

.team-card .image-container {
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.team-card .card-content {
  padding: var(--space-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card .title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.team-card .subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Research Section */
.research {
  padding: var(--space-xxl) 0;
}

.research-accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: white;
  box-shadow: var(--shadow-medium);
}

.accordion-header {
  padding: var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  transition: background-color var(--transition-normal);
}

.accordion-header:hover {
  background-color: var(--light-dark);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.accordion-content {
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  display: none;
}

.accordion-content.active {
  display: block;
}

/* News Section */
.news {
  padding: var(--space-xxl) 0;
  background-color: var(--light-dark);
}

.news-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  border: none;
  padding: var(--space-lg);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.news-card .title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.news-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: var(--space-xxl) 0;
}

.contact-info {
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  height: 100%;
}

.info-item {
  margin-bottom: var(--space-lg);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.contact-form {
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.field {
  margin-bottom: var(--space-md);
}

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

.input,
.textarea,
.select select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--light-dark);
  border-radius: var(--radius-md);
  font-family: var(--body-font);
  transition: all var(--transition-normal);
  outline: none;
  box-shadow: none;
}

.input:focus,
.textarea:focus,
.select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(103, 114, 229, 0.2);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.select {
  position: relative;
  display: block;
  width: 100%;
}

.select:after {
  content: '▼';
  font-size: 0.8rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--dark-light);
}

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

.footer .title {
  color: white;
  margin-bottom: var(--space-md);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  padding-left: var(--space-sm);
}

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

.footer-social li {
  margin-bottom: var(--space-sm);
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  color: white;
}

.footer-social a:before {
  margin-right: var(--space-sm);
  font-size: 1.2rem;
}

.copyright {
  margin-top: var(--space-xl);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Resource Cards */
.resource-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  border: none;
  padding: var(--space-lg);
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.resource-card .title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: var(--space-lg);
}

/* Privacy & Terms Pages */
.privacy-content, 
.terms-content {
  padding-top: 100px;
  min-height: 100vh;
}

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

.animated {
  animation: fadeIn 0.8s ease forwards;
}

/* Utilities */
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-xxl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-xxl); }

.has-text-centered { text-align: center; }
.has-text-white { color: white !important; }

/* Media Queries */
@media (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-medium);
    padding: var(--space-md) 0;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
    align-items: center;
  }
  
  .navbar-item {
    padding: var(--space-sm) 0;
    width: 100%;
    text-align: center;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .hero .hero-text {
    font-size: 1rem;
  }
  
  .hero .buttons {
    flex-direction: column;
  }
  
  .hero .button {
    margin: 0.5rem 0;
  }
  
  .stat-widget {
    margin-bottom: var(--space-lg);
  }
  
  .contact-info {
    margin-bottom: var(--space-lg);
  }
}