:root {
  /* Color Palette - Pastel */
  --primary-color: #6a98d0;
  --primary-dark: #5684bc;
  --primary-light: #8fb1df;
  --secondary-color: #a2d1c5;
  --secondary-dark: #8abdb0;
  --accent-color: #f4a698;
  --accent-dark: #e08d7f;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --text-dark: #333333;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --border-color: #e9ecef;
  --success-color: #86c3a5;
  --danger-color: #e5817d;
  --warning-color: #f9d798;
  --info-color: #89a9e0;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --section-spacing: 5rem 0;
  --container-padding: 2rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-full: 50%;
}

/* Base Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--light-bg);
  line-height: 1.6;
}

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

p {
  margin-bottom: 1rem;
}

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

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

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

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.text-white {
  color: var(--text-light) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Buttons */
.btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-outline-light {
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.btn-white {
  background-color: var(--text-light);
  border-color: var(--text-light);
}

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

.btn-sm {
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
}

.btn-rounded {
  border-radius: 50px;
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all var(--transition-fast);
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-scroll {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  background-color: var(--text-light) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1);
  transition: transform 10s ease;
}

.hero-section:hover .hero-bg {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  padding: 2rem 0;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  display: block;
  color: var(--text-light);
  font-size: 1.5rem;
}

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

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

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

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

.card-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img-top {
  transition: transform var(--transition-normal);
  object-fit: cover;
  width: 100%;
  height: 250px;
}

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

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

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: transform var(--transition-fast);
}

.card:hover .feature-icon {
  transform: scale(1.2);
}

.progress {
  height: 5px;
  background-color: var(--border-color);
  margin-top: 1rem;
  border-radius: var(--radius-full);
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
}

/* About Us Section */
.about-image {
  position: relative;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-normal);
}

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

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.experience-badge .h2 {
  margin-bottom: 0;
}

.icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.icon-box:hover {
  transform: scale(1.1);
}

/* Innovation Section */
.innovation-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.innovation-image img {
  transition: transform var(--transition-normal);
}

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

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem;
  background-color: var(--text-light);
  color: var(--text-dark);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--text-dark);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--text-light);
}

/* Resources Section */
#resources .card {
  background-color: var(--text-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

#resources .card-body {
  padding: 2rem;
}

#resources .btn-outline-primary {
  margin-top: auto;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-info {
  text-align: center;
  color: var(--text-light);
  padding: 1rem;
}

.gallery-info h3 {
  margin-bottom: 0.5rem;
}

.gallery-info p {
  margin-bottom: 1rem;
}

.gallery-popup {
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  transition: background-color var(--transition-fast);
}

.gallery-popup:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Pricing Section */
.pricing-card {
  position: relative;
  background-color: var(--text-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.pricing-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  z-index: 1;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 2rem 0;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.pricing-price .price {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
}

/* Press Section */
.press-item {
  background-color: var(--text-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.press-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.blockquote {
  font-size: 1.1rem;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}

.blockquote::before {
  content: """;
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 1;
  font-family: serif;
}

.blockquote-footer {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Contact Section */
.contact-info {
  background-color: var(--text-light);
  border-radius: var(--radius-md);
}

.contact-form {
  background-color: var(--text-light);
  border-radius: var(--radius-md);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(106, 152, 208, 0.25);
}

.form-select {
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  height: auto;
  background-position: right 1rem center;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

.social-links a {
  color: var(--text-muted);
  margin-right: 1rem;
  transition: color var(--transition-fast);
}

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

/* Map Section */
.map-container {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

.footer h5 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer p {
  color: var(--text-muted);
}

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

.footer .list-unstyled a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer .social-links {
  margin-top: 1.5rem;
}

.footer .social-links a {
  color: var(--text-muted);
  margin-right: 1.5rem;
  transition: color var(--transition-fast);
  font-size: 1rem;
  text-decoration: none;
}

.footer .social-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  background-color: var(--text-light);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease;
}

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

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.privacy-container, .terms-container {
  background-color: var(--text-light);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--text-light);
  padding: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
}

#cookie-consent p {
  margin-bottom: 0.5rem;
}

#accept-cookies {
  background-color: var(--success-color);
  color: var(--text-light);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: #4a9d77;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content h2 {
    font-size: 1.1rem;
  }
  
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .experience-badge {
    bottom: 10px;
    right: 10px;
    padding: 0.75rem;
  }
}

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

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

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

.fade-in-right {
  animation: fadeInRight 1s ease 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);
  }
}

/* Utility classes */
.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow-hover {
  transition: box-shadow var(--transition-normal);
}

.shadow-hover:hover {
  box-shadow: var(--shadow-lg);
}

.read-more {
  position: relative;
  font-weight: 500;
  color: var(--primary-color);
  display: inline-block;
  padding-right: 25px;
  transition: all var(--transition-fast);
}

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

.read-more:hover {
  color: var(--primary-dark);
  padding-right: 30px;
}

.read-more:hover:after {
  transform: translateY(-50%) translateX(5px);
}