:root {
  --primary-color: #1a2332;
  --secondary-color: #4a9eff;
  --secondary-hover: #2980b9;
  --accent-color: #00d4ff;
  --accent-hover: #00b8e6;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a2332;
  --border-color: #ddd;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --font-family: 'Poppins', sans-serif;
  --gradient-bg: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  --tech-gradient: linear-gradient(135deg, #4a9eff 0%, #00d4ff 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 0.25rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}





.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(44, 62, 80, 0.9) 100%),
    radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(74, 158, 255, 0.2) 0%, transparent 50%);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74,158,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  animation: slideInLeft 1s ease-out;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffffff 0%, #4a9eff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(74, 158, 255, 0.3); }
  100% { text-shadow: 0 0 40px rgba(74, 158, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.3); }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  animation: slideInRight 1s ease-out 0.5s both;
  position: relative;
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(74, 158, 255, 0.2),
    0 0 30px rgba(74, 158, 255, 0.2);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  object-fit: cover;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(74, 158, 255, 0.4),
    0 0 50px rgba(74, 158, 255, 0.4);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services */
.services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

/* Responsive breakpoints pour la grille des services */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem 3.5rem 1.5rem;
  }
}

.service-card {
  background: var(--bg-color);
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  margin-bottom: 1.5rem;
}

.service-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  margin: 0 auto;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-learn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 1;
  margin-top: auto;
  padding-top: 1rem;
  transition: var(--transition);
}

.service-learn-more:hover {
  color: var(--secondary-hover);
  transform: translateY(-2px);
}

/* About */
.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-features {
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.about-image {
  flex: 1;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  object-fit: cover;
}


/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background: var(--bg-color);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 350px;
  flex: 1;
  min-width: 300px;
  transition: var(--transition);
}

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

.testimonial-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.author-info h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-rating {
  color: #ffd700;
  font-size: 0.9rem;
  white-space: nowrap;
  display: flex;
  gap: 2px;
}

/* Contact */
.contact {
  background: var(--bg-color);
}

.contact-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-item a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--secondary-hover);
  text-decoration: underline;
}

.contact-image {
  margin-top: 2rem;
}

.location-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  object-fit: cover;
}

.contact-form-container {
  flex: 1;
}

.contact-form {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: var(--transition);
  background: var(--bg-color);
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 16px;
  margin: 0 auto;
  display: block;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 1rem 0 0.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  image-rendering: crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
}

.footer-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
}

.footer-contact p,
.footer-hours p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #bbb;
  margin-bottom: 0.5rem;
}

.dev-credit {
  font-size: 0.9rem;
  opacity: 0.8;
}

.dev-credit a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.dev-credit a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 820px) {
  /* Increase base font size for better readability */
  body {
    font-size: 1.1rem;
  }
  
  /* Navigation */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--primary-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 0 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-menu::before {
    content: '✕';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
  }
  
  .nav-link:hover {
    background: var(--secondary-color);
    color: var(--text-white);
  }
  
  .nav-menu .nav-link {
    color: var(--text-white);
  }
  
  /* Hero Section */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 60px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  /* Sections */
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  /* Services */
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* About */
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
  }
  
  .about-text p {
    font-size: 1.2rem;
  }
  
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Contact */
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form-container {
    width: 100%;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-section {
    min-width: auto;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-contact p,
  .footer-hours p {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
  }
  

  /* Service Modal Mobile */
  .modal-content {
    width: 95%;
    max-height: 85vh;
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .modal-content h3 {
    font-size: 1.3rem;
  }
  
  .service-list li {
    font-size: 0.9rem;
  }
}

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

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

/* Smooth animations for elements */
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Service Modals */
.service-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.service-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}


.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.modal-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-content h3 i {
  color: var(--secondary-color);
}

.modal-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.5;
}

.service-list li i {
  color: var(--secondary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  padding: 6rem 0;
}

.success-content {
  text-align: center;
  background: var(--bg-color);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  max-width: 600px;
}

.success-icon {
  margin-bottom: 2rem;
}

.success-icon i {
  font-size: 4rem;
  color: #10b981;
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.success-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.success-message {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-weight: 500;
}

.info-item i {
  color: var(--secondary-color);
}

.info-item a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--secondary-hover);
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Success Page */
@media (max-width: 820px) {
  .success-content {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }
  
  .success-title {
    font-size: 1.6rem;
  }
  
  .success-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .success-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-color);
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  flex-grow: 1;
  padding-right: 1rem;
}

.faq-icon {
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

.faq-content p {
  margin: 0;
}

.faq-content ul {
  margin: 0;
  padding-left: 1rem;
}

.faq-content li {
  margin-bottom: 0.5rem;
}

.faq-content a {
  color: var(--secondary-color);
  text-decoration: none;
  word-break: break-all;
}

.faq-content a:hover {
  text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-content {
    padding: 0 1rem 1rem 1rem;
  }
}

/* Language Switch */
.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.lang-btn {
  padding: 6px 10px;
  border: 2px solid var(--secondary-color);
  background: transparent;
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 36px;
  text-align: center;
}

.lang-btn:hover {
  background: var(--secondary-color);
  color: var(--text-white);
}

.lang-btn.active {
  background: var(--secondary-color);
  color: var(--text-white);
}

/* Responsive Language Switch */
@media (max-width: 768px) {
  .language-switch {
    margin-left: 0.5rem;
    margin-right: 0.25rem;
    gap: 4px;
  }
  
  .lang-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-width: 36px;
  }
}

@media (max-width: 480px) {
  .language-switch {
    margin-left: 0.5rem;
    margin-right: 0.25rem;
    gap: 4px;
  }
  
  .lang-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-width: 36px;
  }
  
  .hero {
    padding-top: 120px;
  }
}

/* Logo sizing */
.logo {
  height: 100px;
  width: auto;
}

.footer-logo {
  height: 100px;
  width: auto;
}





