/*=============== EZ EVENTS PAGE STYLES ===============*/
/*=============== CLEAN BLACK & WHITE DESIGN ===============*/

:root {
  /* Professional Black & White Palette */
  --ez-black: #000000;
  --ez-dark-gray: #1a1a1a;
  --ez-charcoal: #2d2d2d;
  --ez-medium-gray: #666666;
  --ez-gray: #999999;
  --ez-light-gray: #f8f8f8;
  --ez-off-white: #fafafa;
  --ez-white: #ffffff;

  /* Shadows & Effects */
  --ez-border: rgba(0, 0, 0, 0.08);
  --ez-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --ez-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --ez-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --ez-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* Professional Typography Scale */
  --ez-display: 3.5rem;    /* 56px - Hero display */
  --ez-h1: 2.75rem;        /* 44px - Main titles */
  --ez-h2: 2rem;           /* 32px - Section titles */
  --ez-h3: 1.5rem;         /* 24px - Card titles */
  --ez-h4: 1.25rem;        /* 20px - Sub-headings */
  --ez-body-lg: 1.125rem;  /* 18px - Large body */
  --ez-body: 1rem;         /* 16px - Body text */
  --ez-small: 0.875rem;    /* 14px - Small text */
  --ez-tiny: 0.75rem;      /* 12px - Labels */

  /* Professional Spacing System (8px base) */
  --space-1: 0.5rem;    /* 8px */
  --space-2: 1rem;      /* 16px */
  --space-3: 1.5rem;    /* 24px */
  --space-4: 2rem;      /* 32px */
  --space-5: 2.5rem;    /* 40px */
  --space-6: 3rem;      /* 48px */
  --space-8: 4rem;      /* 64px */
  --space-10: 5rem;     /* 80px */
  --space-12: 6rem;     /* 96px */
  --space-16: 8rem;     /* 128px */

  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

body {
  background: transparent;
  color: var(--ez-black);
}

/*=============== HEADER ===============*/
.ez-header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ez-border);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px var(--ez-shadow);
}

.ez-nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ez-black);
  letter-spacing: -0.5px;
}

.ez-nav__cta {
  padding: 0.75rem 1.5rem;
  background: var(--ez-black);
  color: var(--ez-white);
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ez-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--ez-dark-gray);
}

/*=============== HERO SECTION ===============*/
.ez-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-16) 0 var(--space-12);
  background: linear-gradient(180deg, var(--ez-white) 0%, var(--ez-off-white) 50%, var(--ez-light-gray) 100%);
  position: relative;
  overflow: hidden;
}

/* Clean geometric pattern - NO ANIMATIONS */
.ez-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.ez-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ez-hero__badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--ez-black);
  color: var(--ez-white);
  border-radius: 2rem;
  font-size: var(--ez-small);
  font-weight: 600;
  margin-bottom: var(--ez-space-md);
  letter-spacing: 0.5px;
}

.ez-hero__title {
  font-size: var(--ez-display);
  font-weight: 900;
  margin-bottom: var(--space-4);
  line-height: 1.1;
  color: var(--ez-black);
  letter-spacing: -3px;
}

.ez-hero__subtitle {
  font-size: var(--ez-h3);
  font-weight: 600;
  color: var(--ez-charcoal);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.ez-hero__description {
  font-size: var(--ez-body-lg);
  color: var(--ez-medium-gray);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 600px;
}

.ez-hero__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ez-hero__buttons .button {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ez-hero__buttons .button:first-child {
  background: var(--ez-black);
  color: var(--ez-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ez-hero__buttons .button:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: var(--ez-dark-gray);
}

.ez-hero__buttons .button--ghost {
  background: transparent;
  border: 2px solid var(--ez-black);
  color: var(--ez-black);
}

.ez-hero__buttons .button--ghost:hover {
  background: var(--ez-black);
  color: var(--ez-white);
  transform: translateY(-3px);
}

.ez-hero__social {
  display: flex;
  gap: 1rem;
}

.ez-hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--ez-white);
  border: 2px solid var(--ez-border);
  border-radius: 50%;
  color: var(--ez-black);
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 4px 15px var(--ez-shadow);
}

.ez-hero__social-link:hover {
  transform: translateY(-8px) scale(1.1);
  border-color: var(--ez-black);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: var(--ez-black);
  color: var(--ez-white);
}

/* 3D Logo Container */
.ez-hero__logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--ez-white);
  border-radius: 2rem;
  border: 2px solid var(--ez-border);
  padding: 3rem;
  position: relative;
  box-shadow: 0 15px 50px var(--ez-shadow);
}

.ez-hero__logo-container::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--ez-black);
  border-radius: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.ez-hero__logo-container:hover::before {
  opacity: 0.03;
}

.ez-hero__logo {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-20px) rotateY(3deg);
  }
  50% {
    transform: translateY(0px) rotateY(0deg);
  }
  75% {
    transform: translateY(-15px) rotateY(-3deg);
  }
}

/*=============== SECTIONS COMMON ===============*/
.section {
  padding: 5rem 0;
}

.section__subtitle {
  display: block;
  text-align: center;
  font-size: var(--ez-tiny);
  font-weight: 600;
  color: var(--ez-gray) !important;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: var(--space-3);
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

.section__title {
  text-align: center;
  font-size: var(--ez-h1);
  font-weight: 800;
  color: var(--ez-black) !important;
  margin-bottom: var(--space-8);
  letter-spacing: -2px;
  line-height: 1.2;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  transition: none !important;
}

.section__title:hover {
  color: var(--ez-black) !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

/*=============== 3D CARD EFFECT ===============*/
.card-3d {
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-3d:hover {
  transform: translateY(-15px) rotateX(5deg);
}

/*=============== ABOUT SECTION ===============*/
.ez-about {
  background: rgba(245, 245, 245, 0.7);
}

.ez-about__content {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.ez-about__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--ez-medium-gray);
  margin-bottom: 1.5rem;
}

.ez-about__text strong {
  color: var(--ez-black);
  font-weight: 700;
}

.ez-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ez-stats__item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--ez-white);
  border: 2px solid var(--ez-border);
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 4px 15px var(--ez-shadow);
}

.ez-stats__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--ez-black);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.ez-stats__item:hover {
  transform: translateY(-15px) rotateX(5deg);
  border-color: var(--ez-black);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ez-stats__item:hover::before {
  transform: scaleX(1);
}

.ez-stats__item i {
  font-size: 3.5rem;
  color: var(--ez-black);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.ez-stats__item:hover i {
  transform: scale(1.2) translateZ(20px);
}

.ez-stats__item h3 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ez-black);
  margin-bottom: 0.5rem;
}

.ez-stats__item p {
  font-size: 1rem;
  color: var(--ez-medium-gray);
  font-weight: 600;
}

/*=============== SERVICES SECTION ===============*/
.ez-services {
  background: var(--ez-white);
  padding: var(--space-12) 0;
}

.ez-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
}

.ez-service__card {
  background: var(--ez-white);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--ez-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.ez-service__card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ez-service__card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: var(--ez-shadow-lg);
}

.ez-service__card:hover::after {
  opacity: 1;
}

.ez-service__icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ez-light-gray);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

.ez-service__icon i {
  font-size: 1.875rem;
  color: var(--ez-black);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ez-service__card:hover .ez-service__icon {
  transform: translateY(-4px);
  background: var(--ez-black);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.ez-service__card:hover .ez-service__icon i {
  color: var(--ez-white);
}

.ez-service__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ez-service__title {
  font-size: var(--ez-h3);
  font-weight: 700;
  color: var(--ez-black);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.ez-service__description {
  font-size: var(--ez-body);
  line-height: 1.65;
  color: var(--ez-gray);
  position: relative;
  z-index: 1;
}

/*=============== EVENTS SECTION ===============*/
.ez-events {
  background: var(--ez-off-white);
  padding: var(--space-12) 0;
}

.ez-events__intro {
  text-align: center;
  font-size: var(--ez-body-lg);
  color: var(--ez-gray);
  margin-bottom: var(--space-8);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.ez-events__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
}

.ez-event__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--ez-white);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--ez-shadow-sm);
}

.ez-event__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--ez-black);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.ez-event__item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: var(--ez-shadow-md);
}

.ez-event__item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.ez-event__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  min-width: 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ez-light-gray);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ez-event__icon i {
  color: var(--ez-charcoal);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ez-event__item:hover .ez-event__icon {
  transform: scale(1.1);
  background: var(--ez-black);
}

.ez-event__item:hover .ez-event__icon i {
  color: var(--ez-white);
}

.ez-event__content {
  flex: 1;
  min-width: 0;
}

.ez-event__content h3 {
  font-size: var(--ez-body-lg);
  font-weight: 700;
  color: var(--ez-black);
  margin-bottom: var(--space-1);
  line-height: 1.4;
}

.ez-event__content p {
  font-size: var(--ez-small);
  color: var(--ez-gray);
  line-height: 1.6;
}

/*=============== WHY CHOOSE US ===============*/
.ez-why {
  background: rgba(255, 255, 255, 0.7);
}

.ez-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.ez-why__item {
  padding: 2.5rem 2rem;
  background: var(--ez-white);
  border: 2px solid var(--ez-border);
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 0 4px 20px var(--ez-shadow);
}

.ez-why__item:hover {
  transform: translateY(-10px) rotateX(3deg);
  border-color: var(--ez-black);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ez-why__number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--ez-black);
  opacity: 0.1;
  margin-bottom: 1rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.ez-why__item:hover .ez-why__number {
  opacity: 0.2;
  transform: scale(1.1) translateZ(20px);
}

.ez-why__item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ez-black);
  margin-bottom: 1rem;
}

.ez-why__item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ez-medium-gray);
}

/*=============== CTA SECTION ===============*/
.ez-cta {
  background: var(--ez-black);
  position: relative;
  overflow: hidden;
}

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

.ez-cta__title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ez-white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.ez-cta__description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.ez-cta__content .button {
  margin-top: 1.5rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--ez-white);
  color: var(--ez-black);
  border-radius: 0.75rem;
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.ez-cta__content .button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/*=============== CONTACT SECTION ===============*/
.ez-contact {
  background: rgba(245, 245, 245, 0.7);
  padding: var(--space-12) 0;
}

.ez-contact .container {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.ez-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  margin-bottom: var(--space-6);
  max-width: var(--container-lg);
  margin-left: auto;
  margin-right: auto;
}

.ez-contact__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--ez-white);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  box-shadow: var(--ez-shadow-sm);
}

.ez-contact__card:hover {
  transform: translateY(-8px) rotateX(3deg);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: var(--ez-shadow-lg);
}

.ez-contact__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ez-light-gray);
  border: 1px solid var(--ez-border);
  border-radius: 50%;
  margin: 0 auto 1rem;
  transition: all 0.4s ease;
}

.ez-contact__icon i {
  font-size: 2rem;
  color: var(--ez-black);
  transition: transform 0.4s ease;
}

.ez-contact__card:hover .ez-contact__icon {
  transform: scale(1.1) translateZ(20px);
  background: var(--ez-black);
  border-color: var(--ez-black);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ez-contact__card:hover .ez-contact__icon i {
  color: var(--ez-white);
  transform: rotateY(360deg);
}

.ez-contact__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ez-black);
  margin-bottom: 0.4rem;
}

.ez-contact__subtitle {
  font-size: 0.8rem;
  color: var(--ez-medium-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.875rem;
}

.ez-contact__number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ez-black);
  margin-bottom: 1.25rem;
  font-family: 'Courier New', monospace;
}

.ez-contact__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--ez-white);
  border: 1px solid var(--ez-black);
  border-radius: var(--radius-sm);
  color: var(--ez-black);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.ez-contact__button:hover {
  background: var(--ez-black);
  color: var(--ez-white);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ez-contact__button i {
  transition: transform 0.3s ease;
}

.ez-contact__button:hover i {
  transform: translateX(5px);
}

.ez-contact__tagline {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ez-black);
  padding: 2.5rem;
  background: var(--ez-white);
  border-radius: 1.5rem;
  border: 2px solid var(--ez-border);
  box-shadow: 0 4px 20px var(--ez-shadow);
}

/*=============== FOOTER ===============*/
.footer {
  background: var(--ez-white);
  border-top: 2px solid var(--ez-border);
}

.footer__title,
.footer__link,
.footer__copy {
  color: var(--ez-black) !important;
}

.footer__social-link {
  border: 2px solid var(--ez-border);
  color: var(--ez-black) !important;
  background: var(--ez-white);
}

.footer__social-link:hover {
  background: var(--ez-black);
  color: var(--ez-white) !important;
  border-color: var(--ez-black);
}

/*=============== RESPONSIVE - MOBILE-FIRST ===============*/

/* Tablet (768px - 968px) */
@media screen and (max-width: 968px) {
  :root {
    --ez-h1: 2.25rem;
    --ez-h2: 1.875rem;
    --ez-h3: 1.25rem;
    --ez-space-xl: 2.5rem;
    --ez-space-2xl: 3rem;
    --ez-space-3xl: 4rem;
  }

  .ez-hero__container {
    grid-template-columns: 1fr;
    gap: var(--ez-space-xl);
  }

  .ez-hero__title {
    font-size: var(--ez-h1);
  }

  .ez-hero__subtitle {
    font-size: 1.125rem;
  }

  .ez-hero__logo-container {
    order: -1;
    min-height: 300px;
    padding: var(--ez-space-lg);
  }

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

  .section__title {
    font-size: var(--ez-h2);
  }

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

/* Tablet (768px and below) */
@media screen and (max-width: 768px) {
  .ez-services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .ez-events__list {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .ez-contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .section__title {
    font-size: var(--ez-h2);
  }
}

/* Mobile (576px and below) */
@media screen and (max-width: 576px) {
  :root {
    --ez-display: 2.25rem;
    --ez-h1: 1.875rem;
    --ez-h2: 1.5rem;
    --ez-h3: 1.25rem;
    --ez-body-lg: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 2.5rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 5rem;
  }

  /* Header */
  .ez-nav__logo {
    font-size: 1.125rem;
  }

  .ez-nav__cta {
    padding: 0.625rem 1.25rem;
    font-size: var(--ez-small);
  }

  /* Hero Section */
  .ez-hero {
    padding: var(--space-10) 0 var(--space-8);
  }

  .ez-hero__title {
    font-size: var(--ez-display);
    letter-spacing: -2px;
  }

  .ez-hero__subtitle {
    font-size: var(--ez-h4);
  }

  .ez-hero__description {
    font-size: var(--ez-body);
    max-width: 100%;
  }

  .ez-hero__buttons {
    flex-direction: column;
    gap: var(--space-2);
  }

  .ez-hero__buttons .button {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  .ez-hero__logo-container {
    min-height: 240px;
    padding: var(--space-5);
  }

  /* Stats */
  .ez-stats {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  /* Services Section */
  .ez-services {
    padding: var(--space-10) 0;
  }

  .ez-services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-6);
  }

  .ez-service__card {
    padding: var(--space-5);
  }

  /* Events Section */
  .ez-events {
    padding: var(--space-10) 0;
  }

  .ez-events__intro {
    margin-bottom: var(--space-6);
  }

  .ez-events__list {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .ez-event__item {
    padding: var(--space-4);
    gap: var(--space-3);
  }

  .ez-event__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.5rem;
  }

  /* Section Titles */
  .section {
    padding: var(--space-10) 0;
  }

  .section__title {
    font-size: var(--ez-h2);
    margin-bottom: var(--space-6);
    letter-spacing: -1.5px;
  }

  .section__subtitle {
    letter-spacing: 2px;
    margin-bottom: var(--space-2);
  }

  /* Contact Section */
  .ez-contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .ez-contact__card {
    padding: var(--space-5) var(--space-4);
  }
}

/*=============== EZ EVENTS SPECIFIC OVERRIDES ===============*/
/* Black scroll progress bar for EZ Events only */
.scroll-progress {
  background: #000000 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

/* Add white background to html to ensure proper layering */
html {
  background: var(--ez-white);
}
