/* ====================
   CSS Variables
   ==================== */
:root {
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Colors */
  --primary: #2A5298;
  --primary-dark: #1E3E76;
  --primary-light: #4B6CB7;
  --secondary: #e17f93;
  --secondary-dark: #C35F73;
  --secondary-light: #FF9FB2;
  --accent: #6DD5FA;
  --accent-dark: #4BB8DD;
  --accent-light: #8EEAFF;
  
  /* Neutrals */
  --dark: #222831;
  --dark-medium: #393E46;
  --medium: #5C636E;
  --light-medium: #9DA3AF;
  --light: #F2F2F2;
  --white: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-light), var(--primary));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--accent-light), var(--accent));
  --gradient-hero: linear-gradient(to right, rgba(32, 40, 119, 0.9), rgba(55, 71, 133, 0.8), rgba(83, 105, 161, 0.7));
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  
  /* Shadows */
  --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  
  /* Container Width */
  --container-width: 1200px;
  
  /* Transitions */
  --transition-short: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-long: 0.5s ease;
}

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

html, body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  scroll-behavior: smooth;
}

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

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

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

ul, ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ====================
   Buttons
   ==================== */
.btn, button, input[type='submit'] {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-small);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-small);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: var(--gradient-secondary);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-small);
}

.btn-primary {
  background: var(--gradient-primary);
}

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

.btn-accent {
  background: var(--gradient-accent);
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding-bottom: 2px;
  overflow: hidden;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  transform: translateX(0);
}

/* ====================
   Header / Navigation
   ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-small);
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: background-color var(--transition-medium), padding var(--transition-medium);
}

.header.scrolled {
  padding: var(--space-sm) 0;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: var(--space-xl);
}

.nav-menu li a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.nav-menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  transition: all var(--transition-medium);
}

/* ====================
   Hero Section
   ==================== */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 150px 0 100px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-content .btn {
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================
   Vision Section
   ==================== */
.vision-section {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

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

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-md);
  color: var(--dark);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--medium);
  max-width: 700px;
  margin: var(--space-md) auto 0;
}

.vision-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
}

.vision-text {
  flex: 1;
  min-width: 300px;
}

.vision-text p {
  color: var(--dark-medium);
  margin-bottom: var(--space-lg);
}

.vision-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.vision-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
  object-fit: cover;
}

/* ====================
   Case Studies Section
   ==================== */
.case-studies-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light);
}

.case-studies-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.case-study-card {
  background: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.card-content p {
  color: var(--medium);
  margin-bottom: 0;
}

/* ====================
   Resources Section
   ==================== */
.resources-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(to bottom, var(--light), var(--white));
}

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

.resource-card {
  background: var(--white);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.resource-card h3 a {
  color: var(--primary);
  transition: color var(--transition-short);
}

.resource-card h3 a:hover {
  color: var(--primary-light);
}

.resource-card p {
  color: var(--medium);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ====================
   Testimonials Section
   ==================== */
.testimonials-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonials-section .section-header h2::after {
  background: var(--white);
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-medium);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
  display: none;
}

.testimonial-content {
  text-align: center;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--space-xl);
  color: var(--white);
  position: relative;
  padding: 0 var(--space-lg);
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  line-height: 0;
}

.quote::before {
  top: 0;
  left: 0;
}

.quote::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

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

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.author-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.prev-btn,
.next-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: all var(--transition-short);
  font-weight: 500;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ====================
   Blog Section
   ==================== */
.blog-section {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.blog-card .card-image {
  width: 100%;
  height: 200px;
}

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

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

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

.blog-card .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.blog-date {
  font-size: 0.9rem;
  color: var(--light-medium);
  margin-bottom: var(--space-md);
}

.blog-card .card-content p {
  color: var(--medium);
  margin-bottom: var(--space-lg);
}

.blog-card .read-more {
  margin-top: auto;
  align-self: flex-start;
}

/* ====================
   Contact Section
   ==================== */
.contact-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(to right, var(--light) 0%, var(--white) 100%);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.contact-info p {
  color: var(--medium);
  margin-bottom: var(--space-lg);
}

.contact-info ul {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.contact-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  color: var(--dark-medium);
}

.contact-info ul li i {
  margin-right: var(--space-md);
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-social {
  display: flex;
  gap: var(--space-lg);
}

.contact-social a {
  color: var(--primary);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition-short);
}

.contact-social a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

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

.contact-social a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--light-medium);
  border-radius: var(--radius-small);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  transition: border-color var(--transition-short), box-shadow var(--transition-short);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.1);
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  flex: 1;
  min-width: 300px;
}

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

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxl);
}

.footer-links-column {
  min-width: 160px;
}

.footer-links-column h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  position: relative;
  padding-bottom: var(--space-sm);
}

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

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

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

.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-short), transform var(--transition-short);
  display: inline-block;
}

.footer-links-column ul li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.social-links li a {
  display: flex;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ====================
   Cookie Popup
   ==================== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  box-shadow: var(--shadow-large);
  max-width: 400px;
  width: 90%;
  z-index: 1000;
}

.cookie-content {
  text-align: center;
}

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

.cookie-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-small);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-short);
}

.cookie-btn:hover {
  background: var(--gradient-secondary);
}

/* ====================
   Success Page
   ==================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  padding: var(--space-xxl) 0;
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.success-content h1 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.success-content p {
  color: var(--medium);
  margin-bottom: var(--space-xl);
}

/* ====================
   Privacy & Terms Pages
   ==================== */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xxl);
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
}

.privacy-content h1, .terms-content h1 {
  color: var(--primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

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

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

.privacy-content ul li, .terms-content ul li {
  margin-bottom: var(--space-sm);
  color: var(--medium);
}

/* ====================
   Media Queries
   ==================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .vision-content {
    flex-direction: column;
  }
  
  .vision-image {
    margin-top: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--space-xl);
    transition: left var(--transition-medium);
    box-shadow: var(--shadow-medium);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 0 0 var(--space-lg);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .case-studies-container,
  .blog-container {
    grid-template-columns: 1fr;
  }
  
  .case-study-card,
  .blog-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-info,
  .contact-form-container {
    flex: 100%;
  }
  
  .contact-info {
    margin-bottom: var(--space-xl);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  .quote {
    font-size: 1rem;
    padding: 0;
  }
  
  .quote::before,
  .quote::after {
    display: none;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    gap: var(--space-lg);
    flex-direction: column;
  }
  
  .footer-links-column {
    width: 100%;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Icon Font Classes (placeholders) */
.icon-location, .icon-phone, .icon-email {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: var(--space-sm);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232A5298'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232A5298'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232A5298'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.my-1 {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.my-2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.my-3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.my-4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.my-5 {
  margin-top: var(--space-xxl);
  margin-bottom: var(--space-xxl);
}

.py-1 {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.py-2 {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-3 {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.py-4 {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.py-5 {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}