/* Variables CSS pour les couleurs Marseille */
:root {
  --primary-blue: #499adf;
  --secondary-gold: #aca24c;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --shadow: rgba(73, 154, 223, 0.15);
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-circle:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-circle:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.floating-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.floating-star:nth-child(4) {
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

.floating-star:nth-child(5) {
  bottom: 40%;
  right: 10%;
  animation-delay: 3s;
}

/* Background Carousel */
.background-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0.2;
}

.background-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.background-carousel .carousel-item.active {
  opacity: 1;
}

.background-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(73, 154, 223, 0.1);
  padding: 1rem 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-gray) !important;
}

.logo-img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}

.logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-blue);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: var(--primary-blue);
  color: white;
  border-radius: 8px;
}

.nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.cart-container .btn {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Mobile Menu */
.offcanvas {
  background: linear-gradient(135deg, var(--primary-blue), rgba(73, 154, 223, 0.9));
  color: white;
}

.mobile-header {
  display: flex;
  align-items: center;
}

.mobile-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateX(5px);
}

.mobile-nav-link i {
  margin-right: 12px;
  font-size: 1.2rem;
}

.mobile-cart {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  /* min-height: 100vh; */
  min-height: 500px;
  display: flex;
  align-items: center;
  /*  linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));*/
  background:linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0));
  overflow: hidden;
}

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

.marseille-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.marseille-carousel .carousel-item.active {
  opacity: 1;
}

.marseille-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-gold);
  font-weight: 600;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-btn {
  background: var(--primary-blue);
  border: none;
  /* padding: 1rem 2rem; */
  font-size: 0.9rem;
  font-weight: 600;
  /* border-radius: 50px; */
  transition: all 0.3s ease;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-btn:hover {
  background: #3a8bc8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow);
}

/* Cards Section */
.cards-section {
  padding: 4rem 0;
  /* background: linear-gradient(135deg, rgba(73, 154, 223, 0.05), rgba(248, 249, 250, 0.8)); */
  position: relative;
}

.cards-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  /* background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.1) 100%); */
  background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.1) 100%);
  clip-path: polygon(
    0% 100%,
    0% 70%,
    15% 65%,
    25% 75%,
    35% 60%,
    45% 70%,
    55% 55%,
    65% 65%,
    75% 50%,
    85% 60%,
    95% 45%,
    100% 55%,
    100% 100%
  );
}

/* Generator Section */
.generator-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}

.generator-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  /* background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.1) 100%); */
  background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.35) 100%);
  clip-path: polygon(
    0% 100%,
    0% 70%,
    15% 65%,
    25% 75%,
    35% 60%,
    45% 70%,
    55% 55%,
    65% 65%,
    75% 50%,
    85% 60%,
    95% 45%,
    100% 55%,
    100% 100%
  );
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.generator-form {
  background: var(--white);
  border: 1px solid rgba(73, 154, 223, 0.1);
  box-shadow: 0 10px 40px rgba(73, 154, 223, 0.1);
  border-radius: 16px;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(73, 154, 223, 0.25);
}

.upload-zone {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-zone:hover {
  border-color: var(--primary-blue);
  background: rgba(73, 154, 223, 0.05);
}

.upload-zone i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

/* Card Preview */
.card-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.marseille-card {
  width: 400px;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-blue), #3a8bc8);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(73, 154, 223, 0.3);
  overflow: hidden;
  position: relative;
}

.card-header {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  text-align: center;
  padding: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.card-content {
  display: flex;
  height: calc(100% - 60px);
  padding: 1rem;
}

.card-left {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.vip-section {
  background: var(--primary-blue);
  color: white;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 0.5rem 0.3rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.photo-container {
  flex: 1;
  border: 2px solid white;
  border-radius: 4px;
  overflow: hidden;
}

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-right {
  width: 60%;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-section {
  color: white;
}

.prenom,
.nom {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.poste,
.slogan {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card-footer {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  text-align: center;
  padding: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Client Gallery */
.clients-section {
  padding: 5rem 0;
  /* background: linear-gradient(135deg, rgba(73, 154, 223, 0.05), rgba(248, 249, 250, 0.8)); */
  position: relative;
}

.clients-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.1) 100%);
  clip-path: polygon(
    0% 100%,
    0% 70%,
    15% 65%,
    25% 75%,
    35% 60%,
    45% 70%,
    55% 55%,
    65% 65%,
    75% 50%,
    85% 60%,
    95% 45%,
    100% 55%,
    100% 100%
  );
}

.client-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(73, 154, 223, 0.2);
  transition: all 0.3s ease;
  background: white;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(73, 154, 223, 0.3);
}

.client-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.client-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem 1rem 1rem;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.client-overlay h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.client-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}

.blog-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  /* background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.1) 100%);
   */
   
  background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.35) 100%);
  clip-path: polygon(
    0% 100%,
    0% 70%,
    15% 65%,
    25% 75%,
    35% 60%,
    45% 70%,
    55% 55%,
    65% 65%,
    75% 50%,
    85% 60%,
    95% 45%,
    100% 55%,
    100% 100%
  );
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(73, 154, 223, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(73, 154, 223, 0.2);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--secondary-gold);
  font-size: 1.2rem;
  font-weight: 600;
  border-color : var(--secondary-gold);
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0.5rem 0;
}

.blog-excerpt {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #3a8bc8;
}

/* Media Section */
.media-section {
  padding: 3rem 0;
  /* background: linear-gradient(135deg, rgba(73, 154, 223, 0.05), rgba(248, 249, 250, 0.8)); */
  position: relative;
}

.media-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.1) 100%);
  clip-path: polygon(
    0% 100%,
    0% 70%,
    15% 65%,
    25% 75%,
    35% 60%,
    45% 70%,
    55% 55%,
    65% 65%,
    75% 50%,
    85% 60%,
    95% 45%,
    100% 55%,
    100% 100%
  );
}

.media-logos img {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(73, 154, 223, 0.15);
}

.video-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(73, 154, 223, 0.2);
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(73, 154, 223, 0.3);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(73, 154, 223, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: var(--primary-blue);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

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

.video-info p {
  color: #6c757d;
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}

.features-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(73, 154, 223, 0.1) 100%);
  clip-path: polygon(
    0% 100%,
    0% 70%,
    15% 65%,
    25% 75%,
    35% 60%,
    45% 70%,
    55% 55%,
    65% 65%,
    75% 50%,
    85% 60%,
    95% 45%,
    100% 55%,
    100% 100%
  );
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(73, 154, 223, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(73, 154, 223, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-blue), #3a8bc8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.feature-card h3 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #6c757d;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(73, 154, 223, 0.05), rgba(248, 249, 250, 0.8));
  padding: 3rem 0;
  border-top: 1px solid rgba(73, 154, 223, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.footer-logo-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.footer-text {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.footer-subtext {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(73, 154, 223, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(73, 154, 223, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 412px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0));
  overflow: hidden;
}
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .marseille-card {
    width: 100%;
    max-width: 350px;
    height: 220px;
  }

  .client-card img {
    /* height: 200px; */
    height: 600px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: -20px;
  }

  .carousel-control-next {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .marseille-card {
    height: 200px;
  }

  .card-content {
    padding: 0.8rem;
  }

  .prenom,
  .nom {
    font-size: 1rem;
  }

  .poste,
  .slogan {
    font-size: 0.8rem;
  }
}

/* Sections Alternées et Carrousel Marseillais */
.section-blue {
  background: linear-gradient(135deg, rgba(73, 154, 223, 0.1), rgba(73, 154, 223, 0.05));
  position: relative;
}

.section-blue::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23499adf' fill-opacity='0.1'/%3E%3C/svg%3E")
    no-repeat center bottom;
  background-size: cover;
}

.btn-carousel {
  font-size: 36px;
  z-index: 999;
  color: blue;
  border: 11px;
  font-weight: 10000;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 33%;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(73, 154, 223, 0.48);
  color: white;
}


/* CONTACT */

/* Contact Page Specific Styles */
.contact-page {
  padding-top: 100px;
}

.contact-hero {
  background: linear-gradient(135deg, #499adf 0%, #aca24c 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-section {
  padding: 80px 0;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #499adf;
  box-shadow: 0 0 0 0.2rem rgba(73, 154, 223, 0.25);
}

.contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

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

.contact-info {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  height: fit-content;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  background: #499adf;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
}

.contact-details h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-details p {
  color: #666;
  margin-bottom: 4px;
}

.contact-details a {
  color: #499adf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #aca24c;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #499adf;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #aca24c;
  color: white;
  transform: translateY(-2px);
}

.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.faq-section {
  padding: 80px 0;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: white;
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  background: #499adf;
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 20px 25px;
  background: #f8f9fa;
  color: #666;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-hero .hero-title {
    font-size: 2rem;
  }

  .contact-form-container,
  .contact-info {
    padding: 25px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .map-section {
    padding: 40px 0;
  }

  .faq-section {
    padding: 40px 0;
  }
}
