/* =========== DESIGN SYSTEM VARIABLES =========== */
:root {
  /* Color Palette - Tetrad Scheme with Neo-brutalism influences */
  --primary-color: #ff5722; /* Vibrant Orange - Primary */
  --primary-dark: #e64a19; /* Darker shade of primary */
  --primary-light: #ffab91; /* Lighter shade of primary */
  
  --secondary-color: #2196f3; /* Vibrant Blue - Secondary */
  --secondary-dark: #1976d2;
  --secondary-light: #bbdefb;
  
  --accent-1: #8bc34a; /* Green accent */
  --accent-1-dark: #689f38;
  --accent-1-light: #dcedc8;
  
  --accent-2: #9c27b0; /* Purple accent */
  --accent-2-dark: #7b1fa2;
  --accent-2-light: #e1bee7;
  
  /* Neutral colors */
  --dark: #212121;
  --dark-gray: #424242;
  --medium-gray: #757575;
  --light-gray: #bdbdbd;
  --very-light-gray: #f5f5f5;
  --white: #ffffff;
  
  /* Neo-brutalism specifics */
  --box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
  --box-shadow-hover: 8px 8px 0px 0px rgba(0, 0, 0, 0.85);
  --border-radius: 4px;
  --brutalism-offset: 3px;
  
  /* Typography */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  --base-font-size: 16px;
  --heading-1: 3.5rem;
  --heading-2: 2.5rem;
  --heading-3: 1.75rem;
  --heading-4: 1.25rem;
  --line-height: 1.6;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Layout */
  --container-padding: 5%;
  --container-max-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* =========== BASE STYLES =========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

 footer, section{
  overflow: hidden;
}
html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: var(--heading-1);
}

h2 {
  font-size: var(--heading-2);
}

h3 {
  font-size: var(--heading-3);
}

h4 {
  font-size: var(--heading-4);
}

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

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

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

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

ul {
  list-style-type: none;
}

/* =========== LAYOUT & CONTAINERS =========== */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: var(--space-lg) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
  color: var(--dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--dark-gray);
}

/* =========== BUTTON STYLES =========== */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-medium);
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--box-shadow);
  top: 0;
  left: 0;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--box-shadow-hover);
  top: -2px;
  left: -2px;
}

.btn:active,
button:active,
input[type="submit"]:active {
  top: var(--brutalism-offset);
  left: var(--brutalism-offset);
  box-shadow: none;
}

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

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

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

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

/* =========== HEADER & NAVIGATION =========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all var(--transition-medium);
}

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

.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.desktop-nav ul {
  display: flex;
}

.desktop-nav li {
  margin-left: 1.5rem;
}

.desktop-nav a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  transition: all var(--transition-medium);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}

.mobile-menu li {
  margin: 0.5rem 0;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--dark);
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--primary-color);
}

/* =========== HERO SECTION =========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: var(--space-xl) 0;
  margin-top: 0;
  position: relative;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--space-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

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

/* =========== SERVICES SECTION =========== */
.services-section {
  background-color: var(--very-light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.service-card:hover .card-image img {
  transform: scale(1.1);
}

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

.card-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.card-content p {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

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

.duration {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* =========== STATISTICS SECTION =========== */
.statistics-section {
  color: var(--white);
  text-align: center;
  padding: var(--space-xl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.statistics-section .section-title {
  color: var(--white);
}

.statistics-section .section-title::after {
  background-color: var(--white);
}

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

.stat-box {
  padding: var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--accent-1);
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.stat-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* =========== RESOURCES SECTION =========== */
.resources-section {
  background-color: var(--white);
}

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

.resource-card {
  background-color: var(--very-light-gray);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
}

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

.resource-card h3 {
  color: var(--dark);
  margin-bottom: var(--space-md);
  text-align: center;
}

.resource-card ul {
  padding-left: var(--space-md);
}

.resource-card li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.resource-card li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.resource-card a {
  color: var(--secondary-color);
  transition: color var(--transition-fast);
}

.resource-card a:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

/* =========== TEAM SECTION =========== */
.team-section {
  background-color: var(--very-light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.team-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.team-card .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

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

.team-card .card-content {
  padding: var(--space-md);
  text-align: center;
  width: 100%;
}

.team-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.team-card .position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-card .description {
  color: var(--dark-gray);
}

/* =========== CALENDAR SECTION =========== */
.calendar-section {
  background-color: var(--white);
  padding: var(--space-xl) 0;
}

.calendar-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

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

.carousel-slide {
  display: none;
  padding: var(--space-md);
}

.carousel-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.event-card {
  background-color: var(--white);
  border: 3px solid var(--dark);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
  text-align: center;
}

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

.event-date {
  background-color: var(--accent-2);
  color: var(--white);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.event-title {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.event-description {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-md);
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 var(--space-sm);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-dark);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 0 var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  background-color: var(--light-gray);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* =========== PRESS SECTION =========== */
.press-section {
  color: var(--white);
  padding: var(--space-xl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.press-section .section-title {
  color: var(--white);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.press-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.press-logo {
  width: 150px;
  height: 80px;
  margin-bottom: var(--space-md);
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-xs);
  display: flex;
  justify-content: center;
  align-items: center;
}

.press-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-quote {
  font-style: italic;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white);
}

.press-author {
  font-weight: 700;
  color: var(--accent-1-light);
}

/* =========== CONTACT SECTION =========== */
.contact-section {
  background-color: var(--very-light-gray);
  padding: var(--space-xl) 0;
}

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

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

.info-block {
  margin-bottom: var(--space-sm);
}

.info-block h3 {
  color: var(--dark);
  margin-bottom: var(--space-xs);
  border-left: 4px solid var(--primary-color);
  padding-left: var(--space-sm);
}

.info-block p {
  color: var(--dark-gray);
  margin-left: calc(var(--space-sm) + 4px);
}

.map-container {
  margin-top: var(--space-md);
  border: 3px solid var(--dark);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--dark);
  border-radius: var(--border-radius);
  background-color: var(--white);
  transition: border-color var(--transition-fast);
  font-family: var(--body-font);
}

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

.submit-btn {
  margin-top: var(--space-sm);
  width: 100%;
}

/* =========== FOOTER =========== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-sm);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-md);
}

.footer-logo h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.footer-logo p {
  color: var(--light-gray);
}

.footer h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  color: var(--light-gray);
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.social-links a:hover {
  color: var(--primary-color);
}

.social-links a:hover::after {
  width: 100%;
}

.footer-newsletter p {
  color: var(--light-gray);
  margin-bottom: var(--space-sm);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--dark-gray);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: var(--light-gray);
}

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

.newsletter-form .btn {
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.875rem;
}

/* =========== SUCCESS PAGE =========== */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-md);
}

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

.success-icon {
  font-size: 4rem;
  color: var(--accent-1);
  margin-bottom: var(--space-md);
}

.success-title {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.success-message {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* =========== PRIVACY & TERMS PAGES =========== */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-content h2,
.terms-content h2 {
  color: var(--dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: var(--space-xs);
}

.privacy-content h3,
.terms-content h3 {
  color: var(--dark);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.privacy-content p,
.terms-content p,
.privacy-content ul,
.terms-content ul {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
}

.privacy-content ul,
.terms-content ul {
  padding-left: var(--space-md);
}

.privacy-content li,
.terms-content li {
  margin-bottom: var(--space-xs);
  position: relative;
  list-style-type: disc;
}

/* =========== ANIMATIONS =========== */
[data-aos="custom-fade"] {
  opacity: 0;
  transform: translateY(50px);
  transition-property: transform, opacity;
}

[data-aos="custom-fade"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="zoom-fade"] {
  opacity: 0;
  transform: scale(0.8);
  transition-property: transform, opacity;
}

[data-aos="zoom-fade"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

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

.floating {
  animation: floatAnimation 3s ease-in-out infinite;
}

/* =========== RESPONSIVE STYLES =========== */
@media (max-width: 992px) {
  :root {
    --heading-1: 2.75rem;
    --heading-2: 2.25rem;
    --heading-3: 1.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 80%;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  .container {
    width: 95%;
  }
  
  .services-grid,
  .team-grid,
  .statistics-grid,
  .press-grid {
    gap: var(--space-md);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --heading-1: 2.25rem;
    --heading-2: 2rem;
    --heading-3: 1.35rem;
    --base-font-size: 14px;
  }
  
  .hero-section {
    padding-top: 80px;
  }
  
  .section-title {
    margin-bottom: var(--space-sm);
  }
  
  .section-subtitle {
    margin-bottom: var(--space-md);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}