/* Variables */
:root {
  /* Main Colors */
  --primary-color: #6a41b4;
  --primary-light: #8a61d4;
  --primary-dark: #4a2194;
  --secondary-color: #41b47c;
  --secondary-light: #61d49c;
  --secondary-dark: #21945c;
  --text-color: #333333;
  --light-text: #ffffff;
  --dark-text: #222222;
  --gray-text: #666666;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #444444;
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-blend: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-dark-overlay: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  --gradient-light-overlay: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  
  /* Glassmorphism */
  --glass-background: rgba(255, 255, 255, 0.15);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --glass-blur: blur(8px);
  --card-border-radius: 16px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  
  /* Animation */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-gray);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

p {
  margin-bottom: 1.5rem;
}

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

.section {
  padding: 5rem 1.5rem;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--dark-text);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  z-index: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Glassmorphism Cards */
.card, 
.research-card, 
.resource-card, 
.news-card, 
.case-study-card, 
.blog-card, 
.service-card {
  background: var(--glass-background);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--card-border-radius);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover, 
.research-card:hover, 
.resource-card:hover, 
.news-card:hover, 
.case-study-card:hover, 
.blog-card:hover, 
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(31, 38, 135, 0.2);
}

/* Card Images */
.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: calc(var(--card-border-radius) - 4px);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

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

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

.card-content {
  width: 100%;
  text-align: center;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: var(--light-text);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px rgba(106, 65, 180, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  z-index: -1;
  transition: opacity var(--transition-fast);
  opacity: 0;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(106, 65, 180, 0.4);
  color: var(--light-text);
}

.button:hover::before {
  opacity: 1;
}

.button.is-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.button.is-light:hover {
  background: rgba(255, 255, 255, 1);
  color: var(--primary-dark);
}

/* Form Elements */
.input, 
.textarea, 
.select select {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(106, 65, 180, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input:focus, 
.textarea:focus, 
.select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(106, 65, 180, 0.2);
  outline: none;
}

.label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--dark-text);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--transition-medium);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-item {
  color: var(--dark-text);
  font-weight: 600;
  transition: color var(--transition-fast);
  margin: 0 0.75rem;
}

.navbar-item:hover {
  color: var(--primary-color);
}

.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
}

.brand-logo span {
  color: var(--secondary-color);
}

.navbar-burger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light-text);
  margin-top: 0;
  overflow: hidden;
}

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

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

.hero-title {
  font-size: var(--font-size-4xl);
  color: var(--light-text);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--light-text);
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-text {
  font-size: var(--font-size-lg);
  max-width: 700px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease-out;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-card h3 {
  color: var(--primary-color);
}

/* Statistics Section */
.statistics-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light-text);
  padding: 6rem 0;
}

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

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

.statistics-section .section-title,
.statistics-section .subtitle {
  color: var(--light-text);
}

.stat-widget {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--card-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition-medium);
}

.stat-widget:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.stat-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--secondary-light);
  margin-bottom: 1rem;
}

.stat-description {
  color: var(--light-text);
  opacity: 0.9;
}

/* Research Section */
.research-section {
  background-color: #f9f9f9;
  position: relative;
}

.research-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.research-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: calc(var(--card-border-radius) - 4px);
  margin-bottom: var(--spacing-md);
}

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

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

.research-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.research-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Resources Section */
.resources-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light-text);
  padding: 6rem 0;
}

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

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

.resources-section .section-title,
.resources-section .subtitle {
  color: var(--light-text);
}

.resource-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--card-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  height: 100%;
  text-align: center;
}

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

.resource-description {
  color: var(--light-text);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Case Studies Section */
.case-studies-section {
  background-color: #f9f9f9;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.timeline-marker {
  position: absolute;
  background: var(--gradient-primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 20px;
  left: 50%;
  margin-left: -15px;
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(106, 65, 180, 0.2);
}

.timeline-content {
  position: relative;
  width: 100%;
}

.case-study-card {
  width: 100%;
  overflow: visible;
}

.case-study-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: calc(var(--card-border-radius) - 4px);
}

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

.case-meta {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-description {
  margin-bottom: 1.5rem;
}

.case-results {
  background: var(--gradient-primary);
  color: var(--light-text);
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

/* Partners Section */
.partners-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light-text);
  padding: 6rem 0;
}

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

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

.partners-section .section-title,
.partners-section .subtitle {
  color: var(--light-text);
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 1rem;
  transition: transform var(--transition-medium);
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-height: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.partner-logo:hover img {
  opacity: 1;
}

/* Blog Section */
.blog-section {
  background-color: #f9f9f9;
  position: relative;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Gallery Section */
.gallery-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light-text);
  padding: 6rem 0;
}

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

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

.gallery-section .section-title,
.gallery-section .subtitle {
  color: var(--light-text);
}

.gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: var(--card-border-radius);
  margin-bottom: 1.5rem;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--light-text);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  width: 80%;
  transform: translateY(20px);
  transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* News Section */
.news-section {
  background-color: #f9f9f9;
  position: relative;
}

.news-card {
  height: 100%;
  padding: 2rem;
}

.news-date {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--light-text);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--dark-text);
  padding: 6rem 0;
}

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

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

.contact-form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--card-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
}

.contact-info {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--card-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  height: 100%;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #333, #222);
  color: var(--light-text);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

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

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

.footer h3 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

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

.newsletter-form .input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light-text);
}

.newsletter-form .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
}

.success-container {
  max-width: 600px;
  background: var(--glass-background);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--card-border-radius);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 3rem;
  animation: fadeInUp 1s ease-out;
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.success-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.page-content h2 {
  color: var(--secondary-color);
  margin: 2rem 0 1rem;
}

/* Cookie Consent */
#cookieConsent {
  background-color: rgba(0,0,0,0.85);
  color: white;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: slideInUp 0.5s ease-out;
}

#acceptCookies {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 10px 30px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

#acceptCookies:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(106, 65, 180, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Particle Animation */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-marker {
    left: 15px;
    margin-left: 0;
  }
  
  .timeline-item {
    padding-left: 70px;
    padding-right: 0;
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: 0.75rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .navbar-burger {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-md);
  }
  
  .hero-text {
    font-size: var(--font-size-md);
  }
  
  .stat-number {
    font-size: var(--font-size-2xl);
  }
  
  .stat-title {
    font-size: var(--font-size-md);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .contact-info, .contact-form-container {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-md);
  }
  
  .button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
}
@media (max-width: 768px) {
  .navbar-brand{
    width: 100%;
  }
}