/* ========== CSS Variables ========== */
:root {
  --primary-color: #00b0ff;
  --primary-light: #69e2ff;
  --primary-dark: #0081cb;
  --secondary-color: #2962ff;
  --secondary-light: #768fff;
  --secondary-dark: #0039cb;
  --accent-color: #00e5ff;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #8a8a8a;
  --bg-dark: #1a1a1a;
  --bg-light: #ffffff;
  --bg-muted: #f5f5f5;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --danger-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --container-padding: 1.5rem;
}

/* ========== Global Styles ========== */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--primary-color);
  transition: color var(--transition-normal);
}

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

.container {
  padding: var(--container-padding);
}

.section {
  padding: 3rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .section {
    padding: 5rem 1.5rem;
  }
}

/* ========== Button Styles ========== */
.button {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.button:hover::after {
  transform: translateY(0);
}

.button:active {
  transform: scale(0.98);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: white;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-primary.is-outlined {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.button.is-primary.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.button.is-light:hover {
  background-color: #e8e8e8;
}

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

.navbar {
  min-height: 70px;
}

.navbar-brand h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.navbar-brand h1 span {
  color: var(--primary-color);
}

.navbar-item {
  font-family: var(--font-heading);
  font-weight: 500;
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 50%;
}

.navbar-burger {
  height: 70px;
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

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

.hero-content {
  max-width: 800px;
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-content h1, .hero-content h2, .hero-content p {
  color: var(--text-light) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .title {
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-content .subtitle {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-content p {
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.8;
}

/* ========== Services Section ========== */
.service-card {
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  border: none;
}

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

.service-card .card-image {
  width: 100%;
  overflow: hidden;
}

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

.service-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

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

/* ========== Pricing Section ========== */
.pricing-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 176, 255, 0.2);
  z-index: 2;
}

.pricing-card .ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  background-color: var(--primary-color);
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.pricing-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.pricing-card .title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-dark);
}

.pricing-card .price {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card .currency {
  font-size: 1.5rem;
  vertical-align: top;
  position: relative;
  top: 0.5rem;
  color: var(--text-dark);
}

.pricing-card .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.pricing-card .period {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.pricing-card .features {
  margin-bottom: 2rem;
  width: 100%;
}

.pricing-card .feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.pricing-card .feature:last-child {
  border-bottom: none;
}

.pricing-card .feature .icon {
  margin-right: 10px;
  color: var(--success-color);
  font-weight: bold;
}

.pricing-card .feature.disabled .icon {
  color: var(--text-muted);
}

.pricing-card .feature.disabled span {
  color: var(--text-muted);
  text-decoration: line-through;
}

.additional-info {
  margin-top: 4rem;
}

.price-list {
  list-style: none;
  padding: 0;
}

.price-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-list li:last-child {
  border-bottom: none;
}

/* ========== Vision Section ========== */
.vision-section {
  position: relative;
  background-color: #f9f9f9;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle at 30% 30%, var(--primary-light) 0%, transparent 10%), 
                      radial-gradient(circle at 70% 70%, var(--secondary-light) 0%, transparent 10%);
  opacity: 0.1;
  z-index: 0;
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.vision-content {
  position: relative;
  z-index: 1;
}

.vision-text {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.vision-image {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

.vision-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.vision-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== Resources Section ========== */
.resource-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.resource-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.resource-card p {
  margin-bottom: 1.5rem;
}

/* ========== Projects Section ========== */
.project-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.project-card .card-image {
  width: 100%;
  overflow: hidden;
}

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

.project-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.project-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card .title {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.project-card .subtitle {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ========== News Section ========== */
.news-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.news-card .card-image {
  width: 100%;
  overflow: hidden;
}

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

.news-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.news-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card .date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

.news-card p {
  margin-bottom: 1.5rem;
}

/* ========== Events Section ========== */
.event-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

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

.event-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.event-date {
  min-width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: var(--shadow-sm);
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-details {
  flex-grow: 1;
}

.event-details .title {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.event-details .location,
.event-details .time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.event-details .description {
  margin: 1rem 0;
  line-height: 1.6;
}

/* ========== Community Section ========== */
.testimonial-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: var(--shadow-md);
  position: relative;
}

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

.testimonial-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating .star {
  color: var(--warning-color);
  font-size: 1.2rem;
}

.testimonial-text {
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  position: absolute;
  font-size: 3rem;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-text::before {
  top: -1.5rem;
  left: -0.5rem;
}

.testimonial-text::after {
  bottom: -2.5rem;
  right: -0.5rem;
  transform: rotate(180deg);
}

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

.testimonial-author .name {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.testimonial-author .position {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.community-cta {
  margin-top: 3rem;
}

/* ========== Awards Section ========== */
.awards-section {
  background-color: #f9f9f9;
}

.awards-gallery {
  margin-top: 3rem;
}

.award-item {
  text-align: center;
  margin-bottom: 2rem;
}

.award-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal);
}

.award-item:hover .award-image {
  transform: scale(1.05) rotate(5deg);
}

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

.award-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.award-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  margin: 0 auto;
}

/* ========== Partners Section ========== */
.partners-section {
  background-color: white;
}

.partners-grid {
  margin-top: 3rem;
}

.partner-item {
  text-align: center;
  margin-bottom: 2rem;
}

.partner-logo {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-normal);
}

.partner-item:hover .partner-logo {
  transform: translateY(-5px);
}

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

.partner-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.partner-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  margin: 0 auto;
}

/* ========== Contact Section ========== */
.contact-section {
  background-color: #f9f9f9;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  color: white;
  flex-shrink: 0;
}

.contact-item .content {
  flex-grow: 1;
}

.contact-item .title {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-form-container .card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-md);
}

.contact-form-container .card-content {
  padding: 2rem;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-color: var(--border-color);
  box-shadow: none;
  transition: all var(--transition-normal);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 176, 255, 0.2);
}

.contact-form .checkbox {
  cursor: pointer;
}

.contact-form .checkbox a {
  color: var(--primary-color);
}

/* ========== Footer Section ========== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 1.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 90%, var(--primary-dark) 0%, transparent 25%), 
                    radial-gradient(circle at 90% 10%, var(--secondary-dark) 0%, transparent 25%);
  opacity: 0.05;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand h2 {
  color: var(--text-light);
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  font-family: var(--font-heading);
}

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

.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 2px 0;
}

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

.footer-links a:hover,
.footer-social a:hover {
  color: var(--text-light);
}

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

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

.footer-social a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social li:nth-child(1) a::before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z"/></svg>');
}

.footer-social li:nth-child(2) a::before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z"/></svg>');
}

.footer-social li:nth-child(3) a::before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0 2c-4.411 0-8 3.589-8 8s3.589 8 8 8 8-3.589 8-8-3.589-8-8-8zm3.21 10.096c-.125.287-.394.566-.743.84-1.075.971-2.656 1.064-2.656 1.064-1.731 0-2.941-.642-2.941-.642-1.52-1.022-1.491-3.038-1.491-3.038 0-2.362 1.411-3.307 1.411-3.307 1.339-1.01 2.556-.502 2.556-.502l.063.041c-1.155.361-1.347 1.731-1.347 1.731l.126-.041c.444-.15.883-.226 1.327-.226h.136c.414.008.821.075 1.2.226 0 0-.192-1.37-1.347-1.731l.062-.041s1.217-.508 2.557.502c0 0 1.41.945 1.41 3.307 0 0 .029 2.015-1.487 3.038v-.021z"/></svg>');
}

.footer-social li:nth-child(4) a::before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z"/></svg>');
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-align: center;
}

/* ========== Additional Pages ========== */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.success-page .icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.success-page .title {
  margin-bottom: 1rem;
}

.success-page .subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.privacy-page .container,
.terms-page .container {
  max-width: 800px;
}

.privacy-page h1,
.terms-page h1 {
  margin-bottom: 2rem;
}

.privacy-page h2,
.terms-page h2 {
  margin: 2rem 0 1rem;
}

.privacy-page p,
.terms-page p {
  margin-bottom: 1rem;
}

/* ========== Media Queries ========== */
@media screen and (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-content .title {
    font-size: 2rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.25rem;
  }
  
  .event-card .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .stat-item {
    min-width: 100px;
    padding: 1rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .pricing-card .card-content {
    padding: 1.5rem;
  }
  
  .pricing-card .amount {
    font-size: 2.5rem;
  }
  
  .contact-form-container {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-content .buttons {
    flex-direction: column;
  }
  
  .hero-content .button {
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}

/* ========== Animations ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.bounce {
  animation: bounce 1s ease infinite;
  animation-delay: 2s;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}