/* Variables */
:root {
  /* Primary Colors */
  --primary-100: #1a1aff;
  --primary-200: #4d4dff;
  --primary-300: #8080ff;
  --primary-400: #b3b3ff;
  --primary-500: #e6e6ff;
  
  /* Secondary Colors */
  --secondary-100: #ff1a8c;
  --secondary-200: #ff4da6;
  --secondary-300: #ff80c0;
  --secondary-400: #ffb3d9;
  --secondary-500: #ffe6f2;
  
  /* Accent Colors */
  --accent-100: #00e6ac;
  --accent-200: #33ffbe;
  --accent-300: #66ffcf;
  --accent-400: #99ffe0;
  --accent-500: #ccfff0;
  
  /* Neutral Colors */
  --neutral-100: #0a0a1a;
  --neutral-200: #1a1a3d;
  --neutral-300: #333366;
  --neutral-400: #5c5c8a;
  --neutral-500: #8686b3;
  --neutral-600: #b3b3cc;
  --neutral-700: #e0e0eb;
  --neutral-800: #f5f5fa;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-100), var(--primary-300));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-100), var(--secondary-300));
  --gradient-accent: linear-gradient(135deg, var(--accent-100), var(--accent-300));
  --gradient-neutral: linear-gradient(135deg, var(--neutral-300), var(--neutral-500));
  --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-inset: inset 0 2px 8px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: var(--space-md);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--neutral-200);
  line-height: 1.6;
  background-color: var(--neutral-800);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

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

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

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

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

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

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

/* Section Styles */
section {
  padding: var(--space-xl) 0;
  position: relative;
}

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

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--neutral-400);
}

/* Button Styles */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  background-color: var(--primary-100);
  color: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after, 
button::after, 
input[type="submit"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width var(--transition-normal);
  z-index: -1;
}

.btn:hover::after, 
button:hover::after, 
input[type="submit"]:hover::after {
  width: 100%;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-100);
  color: var(--primary-100);
}

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

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

.main-header.scrolled {
  padding: var(--space-xs) 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

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

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

.logo a {
  display: block;
}

.logo img {
  max-height: 60px;
  transition: all var(--transition-normal);
}

.scrolled .logo img {
  max-height: 50px;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-links li {
  margin-left: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--neutral-300);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

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

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

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: var(--neutral-300);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

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

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideUp 1.2s ease-out;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: slideUp 1.4s ease-out;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  animation: slideUp 1.6s ease-out;
}

/* Services Section */
.services-section {
  background-color: white;
}

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

.service-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
  border-radius: var(--radius-lg);
}

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

.service-card:hover::before {
  opacity: 0.05;
}

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

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

.service-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 {
  color: var(--neutral-200);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.card-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--gradient-accent);
}

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

.card-content a {
  margin-top: auto;
  align-self: center;
}

/* History Section */
.history-section {
  background-color: var(--neutral-700);
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/pattern-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.history-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.history-image:hover img {
  transform: scale(1.03);
}

.history-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.timeline {
  position: relative;
  max-width: 1000px;
  margin: var(--space-xxl) auto 0;
  padding: var(--space-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: var(--space-md) var(--space-lg);
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-year {
  position: absolute;
  top: 0;
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-weight: bold;
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -70px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -70px;
}

.timeline-content {
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Resources Section */
.resources-section {
  background-color: white;
}

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

.resource-card {
  background-color: var(--neutral-800);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.resource-card h3 {
  color: var(--primary-100);
  margin-bottom: var(--space-md);
}

.resource-card p {
  color: var(--neutral-400);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.resource-link {
  display: inline-block;
  color: var(--accent-100);
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
  padding-right: 20px;
}

.resource-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.resource-link:hover {
  color: var(--accent-200);
}

.resource-link:hover::after {
  transform: translate(5px, -50%);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--neutral-800);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/pricing-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

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

.pricing-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary-200);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  text-align: center;
  background: var(--gradient-primary);
  color: white;
}

.featured .pricing-header {
  background: var(--gradient-secondary);
}

.pricing-header h3 {
  color: white;
  margin-bottom: var(--space-md);
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: var(--font-heading);
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 5px;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1rem;
  margin-left: 5px;
  opacity: 0.8;
}

.pricing-features {
  padding: var(--space-lg);
  flex-grow: 1;
}

.pricing-features ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  position: relative;
  padding-left: 30px;
  color: var(--neutral-400);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-100);
  font-weight: bold;
}

.pricing-footer {
  padding: 0 var(--space-lg) var(--space-lg);
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--neutral-400);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Section */
.testimonials-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/testimonial-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: white transparent transparent;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-300);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: block;
}

.testimonial-content p {
  font-style: italic;
  color: var(--neutral-400);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-lg);
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-md);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-info h4 {
  color: var(--neutral-200);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--neutral-500);
  margin: 0;
  font-size: 0.9rem;
}

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

.testimonial-controls button {
  background-color: transparent;
  border: 2px solid var(--primary-100);
  color: var(--primary-100);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.testimonial-controls button:hover {
  background-color: var(--primary-100);
  color: white;
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-800);
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

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

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--neutral-300);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--neutral-600);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral-300);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

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

.info-card {
  display: flex;
  align-items: center;
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
}

.info-icon img {
  max-width: 30px;
  max-height: 30px;
}

.info-content h3 {
  margin-bottom: 5px;
  color: var(--neutral-200);
}

.info-content p {
  margin: 0;
  color: var(--neutral-400);
}

.office-image {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.office-image:hover img {
  transform: scale(1.03);
}

.office-hours {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-lg);
}

.office-hours h3 {
  color: var(--neutral-200);
  margin-bottom: var(--space-md);
}

.office-hours ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.office-hours li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  color: var(--neutral-400);
}

.office-hours li span:first-child {
  font-weight: 500;
  color: var(--neutral-300);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  color: var(--neutral-600);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-100);
}

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

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

.footer-column a {
  color: var(--neutral-600);
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-100);
  transition: width var(--transition-normal);
}

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

.footer-column a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  flex-direction: column;
}

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

.social-links a::before {
  margin-right: 10px;
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.social-links a[href*="facebook"]::before {
  content: "FB";
  color: #1877F2;
}

.social-links a[href*="twitter"]::before,
.social-links a[href*="x.com"]::before {
  content: "TW";
  color: #1DA1F2;
}

.social-links a[href*="instagram"]::before {
  content: "IG";
  color: #E4405F;
}

.social-links a[href*="linkedin"]::before {
  content: "LI";
  color: #0A66C2;
}

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

.footer-bottom p {
  color: var(--neutral-600);
  margin: 0;
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 90%;
  transform: translateY(50px);
  transition: transform var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: var(--neutral-400);
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 1;
}

.close-modal:hover {
  color: var(--neutral-200);
}

.modal-body {
  padding: var(--space-xl);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-100);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  margin: 0 auto var(--space-lg);
}

.modal-body h3 {
  color: var(--neutral-200);
  margin-bottom: var(--space-md);
}

.modal-body p {
  color: var(--neutral-400);
  margin-bottom: var(--space-lg);
}

.close-btn {
  display: inline-block;
}

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

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

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

.success-container {
  max-width: 600px;
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.privacy-page,
.terms-page {
  padding-top: 100px;
}

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

/* Media Queries */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .history-content {
    grid-template-columns: 1fr;
  }
  
  .history-image {
    margin-bottom: var(--space-lg);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-logo {
    align-items: center;
    margin-bottom: var(--space-lg);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 var(--space-lg);
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: var(--space-md) 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: -30px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .services-grid,
  .resources-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .timeline-year {
    position: relative;
    left: 0 !important;
    right: auto !important;
    margin-bottom: var(--space-sm);
    display: inline-block;
  }
  
  .timeline-item {
    padding-left: var(--space-lg);
  }
  
  .modal-content {
    width: 95%;
  }
}