/* ============================================
   DR. SRAVYA BUGGANA - FERTILITY SPECIALIST
   SEO-Optimized, Mobile-First, Medical-Grade UI
   ============================================ */

/* CSS Variables - Medical Color Palette */
:root {
  --color-white: #ffffff;
  --color-bg-soft: #faf8fb;
  --color-bg-alt: #f5f2f8;
  --color-primary: #e78fb3;
  --color-primary-light: #f7d7e5;
  --color-primary-dark: #c25c8c;
  --color-accent: #c3b7ff;
  --color-accent-light: #e8e3ff;
  --color-text: #222222;
  --color-text-soft: #555555;
  --color-text-light: #777777;
  --color-border: #e3dde7;
  --color-border-light: #f0ebf3;
  
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  
  --transition: 0.2s ease-out;
  --transition-slow: 0.3s ease-out;
  
  --container-max: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  margin-bottom: 1em;
  color: var(--color-text-soft);
}

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

a:hover,
a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
  left: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #14a172;
  color: #14315d;
  box-shadow: var(--shadow-md);
   border-color: #14315d;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--color-white);
}

.btn-secondary {
  background: #14a172;
  color: #14315d;
  border-color: #14315d;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--color-primary-light);
  text-decoration: none;
  color: var(--color-primary-dark);
}

.btn-outline {
background: rgba(178, 224, 209, 0.25);

  color: #14315d;
  border-color: #14315d;
}

.btn-outline:hover,
.btn-outline:focus-visible {
background: rgba(178, 224, 209, 0.25);

  text-decoration: none;
  color: #14a172;
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

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

.logo {
 width: 200px;
 height: 100px;
 margin-top: 20px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 0;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin: 0;
}

/* Navigation */
.nav {
  position: relative;
}

.nav-list {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav.active .nav-list {
  display: flex;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  align-items: flex-start;
  gap: 1rem;
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  display: block;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #14a172;
  text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* Sticky Mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
 background: rgba(178, 224, 209, 0.25);

  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.sticky-cta-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}

.sticky-cta-btn.primary {
  background:#14a172;
  color: #14315d;
}

.sticky-cta-btn:not(.primary) {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #fce5f1 0%, #f9f4f8 50%, #ffffff 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 background: rgba(178, 224, 209, 0.25);

  z-index: 1;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  /* Entrance animation */
  animation: heroImageFadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  /* Smooth transitions for hover */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Entrance animation keyframes */
@keyframes heroImageFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hover animations */
.hero-image-wrapper:hover .hero-image {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
              0 0 0 4px rgba(231, 143, 179, 0.1);
  filter: brightness(1.05);
}

/* Subtle floating animation on hover (optional) */
.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(231, 143, 179, 0.1), rgba(195, 183, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
  z-index: -1;
}

.hero-image-wrapper:hover::before {
  opacity: 1;
}

.hero-title {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-soft);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-description {
  font-size: 1rem;
  color: var(--color-text-soft);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Trust & EEAT Section */
.trust-section {
  padding: 3rem 0;
  background: var(--color-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
 background: rgba(178, 224, 209, 0.25);

  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.trust-icon {
  font-size: 2rem;
  font-weight: 700;
  color: #14315d;
  margin-bottom: 0.5rem;
}

.trust-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.trust-text {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin: 0;
}

/* About Section */
.about-section {
  position: relative;
  padding: 4rem 0;
  background: var(--color-bg-soft);
  background-image: url('https://via.placeholder.com/1920x900/faf8fb/ffffff?text=Subtle+Pattern');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
background: rgba(178, 224, 209, 0.25);

  z-index: 1;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
  order: -1;
}

.about-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
}

.lead-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  position: relative;
  padding: 4rem 0;
  background: var(--color-white);
  background-image: url('https://via.placeholder.com/1920x1000/ffffff/ffffff?text=Light+Pattern');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
  
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
 background: rgba(178, 224, 209, 0.25);

  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.2rem;
  color: #14315d;
  margin-bottom: 1rem;
}

.service-title {
  margin: 0 0 0.75rem;
}

.service-description {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.service-link {
  margin-top: auto;
}

.service-title {
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.service-description {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
}

.service-link {
  color: #14315d;
  font-weight: 500;
  font-size: 0.9rem;
}

.service-link:hover {
  text-decoration: none;
}

/* Why Choose Section */
.why-choose-section {
  position: relative;
  padding: 4rem 0;
  background: var(--color-bg-soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 251, 0.92);
  z-index: 1;
}

.why-choose-section .container {
  position: relative;
  z-index: 2;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-choose-item {
  padding: 1.5rem;
 background: rgba(178, 224, 209, 0.25);

  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.why-choose-title {
  color: #14315d;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.why-choose-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* Education Section */
.education-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.education-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.education-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(178, 224, 209, 0.25);

  border-radius: var(--radius-lg);
  border-left: 4px solid #14315d;
  transition: transform var(--transition), box-shadow var(--transition);
}

.education-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.education-item.highlight {
 
  border-left-color: #14315d;
}

.education-year,
.education-badge {
  font-weight: 600;
  font-size: 0.9rem;
  color: #14315d;
  min-width: 100px;
  flex-shrink: 0;
}

.education-badge {

  color: #14315d;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.education-title {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1.1rem;
}

.education-institution {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin: 0;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 background: rgba(178, 224, 209, 0.25);

  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-text-wrapper {
  text-align: center;
}

.cta-image-wrapper {
  display: flex;
  justify-content: center;
}

.cta-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.cta-title {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.cta-text {
  font-size: 1.05rem;
  color: var(--color-text-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* FAQ Section */
.faq-section {
  position: relative;
  padding: 4rem 0;
  background: var(--color-bg-soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 251, 0.94);
  z-index: 1;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color var(--transition);
}

.faq-question:hover {
  background: var(--color-bg-soft);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
  margin-bottom: 80px; /* Space for sticky CTA */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer-location a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-heading {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-white);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(236, 230, 230, 0.6);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .about-section {
    background-attachment: scroll;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-list {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  
  .nav.active .nav-list {
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .sticky-cta {
    display: none;
  }
  
  .footer {
    margin-bottom: 0;
  }
  
  .footer-content {
      grid-template-columns: repeat(4, 1fr);
  }
  
  .hero {
    padding: 5rem 0 4rem;
  }
  
  .hero-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-cta {
    justify-content: flex-start;
  }
  
  .about-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    order: 0;
  }
  
  .cta-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .cta-text-wrapper {
    text-align: left;
  }
  
  .cta-buttons {
    justify-content: flex-start;
  }
  
  .section-header {
    text-align: left;
  }
  
  .section-subtitle {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Print Styles */
@media print {
  .header,
  .sticky-cta,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    background: white;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
