/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}


/* === TON CODE D'ORIGINE - NE PAS TOUCHER === */
/* HEADER ULTRA PREMIUM */
.premium-header {
  background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  }
  
  /* CONTAINER */
  .container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  
  /* LOGO */
  .logo img {
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
  }
  
  .logo img:hover {
  transform: scale(1.05);
  }
  
  /* NAVBAR PREMIUM VISIBILITÉ MAXIMUM */
  .navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  }
  
  .navbar ul li {
  position: relative;
  }
  
  .navbar ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  letter-spacing: 0.7px;
  padding: 10px 15px;
  border-radius: 10px;
  }
  
  .navbar ul li a span {
  font-size: 24px;
  margin-bottom: 6px;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFD700;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
  }
  
  .navbar ul li a:hover span {
  transform: scale(1.3);
  color: #ffffff;
  }
  
  .navbar ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s ease;
  }
  
  .navbar ul li a:hover::after {
  width: 50%;
  }
  
  
  
  /* ==== RESPONSIVE ULTRA PREMIUM ++++ ==== */
  @media (max-width: 992px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #111;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
  }
  
  .navbar ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .navbar ul li a {
    justify-content: flex-start;
    font-size: 16px;
  }
  
  .navbar ul li a span {
    font-size: 20px;
  }
  
  
  
  /* Hamburger Icon */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }
  
  .hamburger div {
    width: 28px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .navbar.show {
    display: flex;
  }
  }
  
  @media (max-width: 500px) {
  .logo img {
    height: 55px;
  }
  
  
  }

/* SECTION HERO ULTRA PREMIUM */
.hero {
  position: relative;
  background: url('../../img/qsm.jpg') no-repeat center center/cover;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Overlay noir pour bien lire */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero h1 .gold {
  color: #FFD700; /* Mot clé doré */
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Animation d'entrée douce */
@keyframes fadeInUp {
  0% {
      transform: translateY(30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .hero {
      height: 70vh; /* Réduit la hauteur sur mobile */
  }

  .hero h1 {
      font-size: 2.5rem; /* Ajuste la taille du titre */
      margin-bottom: 15px;
  }

  .hero p {
      font-size: 1.2rem; /* Ajuste la taille du texte */
      margin-bottom: 20px;
  }

  .hero-content {
      max-width: 90%; /* Réduit la largeur du contenu */
      padding: 20px;
  }
}

/* Responsive très petit écran (smartphones en mode portrait) */
@media (max-width: 480px) {
  .hero {
      height: 60vh; /* Réduit encore plus la hauteur sur les petits écrans */
  }

  .hero h1 {
      font-size: 1.8rem; /* Encore plus petit pour les petits écrans */
      margin-bottom: 10px;
  }

  .hero p {
      font-size: 1rem; /* Ajuste la taille du texte */
      margin-bottom: 15px;
  }

  .hero-content {
      max-width: 95%; /* Plus large pour petits écrans */
      padding: 15px;
  }
}


/* SECTION SERVICES ULTRA PREMIUM */
.services {
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-header {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.services-header h2 .gold {
  color: #d4af37;
  font-style: italic;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.services-header p {
  font-size: 1.4rem;
  color: #777;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
  font-weight: 400;
  /* Modification ici */
  text-transform: none; /* Supprimé la capitalisation */
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.service-card .btn-secondary {
  background: linear-gradient(90deg, #ffd700 0%, #ffc300 100%);
  color: #0a0a0a;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  margin-top: 30px;
  display: inline-block;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-card .btn-secondary:hover {
  background: linear-gradient(90deg, #ffc300 0%, #ffd700 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card .btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Gradient Background Overlay for Extra Luxury Effect */
.services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
  z-index: 1;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .services-header h2 {
      font-size: 2.5rem; /* Ajuste la taille du titre */
      letter-spacing: 2px;
  }

  .services-header p {
      font-size: 1.2rem; /* Ajuste la taille du texte */
      margin-bottom: 40px;
  }

  .services-grid {
      gap: 40px; /* Réduit l'espacement entre les cartes */
  }

  .service-card {
      padding: 30px 20px; /* Ajuste le padding des cartes */
  }

  .service-card h3 {
      font-size: 1.5rem; /* Ajuste la taille des titres des cartes */
      margin-bottom: 15px;
  }

  .service-card p {
      font-size: 1rem; /* Réduit la taille du texte dans les cartes */
  }
}

/* Responsive très petit écran (smartphones en mode portrait) */
@media (max-width: 480px) {
  .services {
      padding: 80px 0; /* Réduit le padding */
  }

  .services-header h2 {
      font-size: 2rem; /* Taille encore plus petite pour petits écrans */
  }

  .services-header p {
      font-size: 1rem; /* Taille encore plus petite pour petits écrans */
      margin-bottom: 20px;
  }

  .services-grid {
      gap: 30px; /* Réduit l'espacement entre les cartes */
  }

  .service-card {
      padding: 20px 15px; /* Réduit le padding */
  }

  .service-card h3 {
      font-size: 1.3rem; /* Ajuste la taille des titres des cartes */
      margin-bottom: 10px;
  }

  .service-card p {
      font-size: 0.9rem; /* Réduit la taille du texte dans les cartes */
  }
}


/* SECTION PHOTO CAROUSEL ULTRA PREMIUM */
.photo-carousel {
  padding: 80px 0;
  background-color: #111;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.photo-carousel h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.photo-carousel h2 .gold {
  color: #d4af37;
  font-style: italic;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.carousel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  transition: transform 0.5s ease;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel-slide {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.carousel-item {
  width: 100%;
  max-width: 600px;
  max-height: 60vh;
  height: auto;
  border-radius: 15px;
  margin: 0;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.carousel-controls .prev,
.carousel-controls .next {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 2.5rem;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  pointer-events: auto;
}

.carousel-controls .prev:hover,
.carousel-controls .next:hover {
  background: #d4af37;
  transform: scale(1.1);
}

/* Responsive Design Mobile Ultra Premium */
@media screen and (max-width: 768px) {
  .photo-carousel {
      padding: 60px 0;
  }

  .photo-carousel h2 {
      font-size: 2rem;
      letter-spacing: 1px;
  }

  .carousel-slide {
      gap: 10px;
  }

  .carousel-item {
      max-width: 90%;
      max-height: 250px;
      margin: 0 auto;
  }

  .carousel-controls {
      top: auto;
      bottom: 10px;
  }

  .carousel-controls .prev,
  .carousel-controls .next {
      font-size: 2rem;
      padding: 8px 16px;
  }
}





.section-gestion-location {
  background: linear-gradient(to bottom right, #f5f7fa, #e9ecf3);
  color: #1a1a1a;
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
}

.gestion-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.gestion-texte {
  flex: 1 1 600px;
}

.gestion-texte h2 {
  font-size: 38px;
  margin-bottom: 30px;
  color: #d4af37;
  font-weight: 700;
  line-height: 1.3;
}

.gestion-texte p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.75;
}

.liste-avantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.liste-avantages li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
  border-radius: 16px;
  font-size: 16.5px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.liste-avantages li:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.liste-avantages i {
  color: #d4af37;
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.accent-gold {
  color: #d4af37;
  font-weight: 600;
}

/* -------------------------- */
/*         MOBILE ONLY        */
/* -------------------------- */
@media (max-width: 768px) {
  .section-gestion-location {
    padding: 60px 20px;
  }

  .gestion-content {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .gestion-texte {
    flex: 1 1 100%;
  }

  .gestion-texte h2 {
    font-size: 26px;
    text-align: center;
    line-height: 1.4;
  }

  .gestion-texte p {
    font-size: 16px;
    text-align: justify;
  }

  .liste-avantages {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }

  .liste-avantages li {
    font-size: 15.5px;
    padding: 18px 20px;
    border-radius: 12px;
  }

  .liste-avantages i {
    font-size: 18px;
    margin-right: 10px;
  }
}

  
  
  /* SECTION IMAGE */
.section-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px; /* Ajuste cette valeur selon votre besoin */
  margin-top: 50px;
  margin-bottom: 50px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%) contrast(1.2);
  transition: transform 0.2s ease-out, filter 0.4s ease-in;
}

.image-hero:hover {
  transform: scale(1.03);  /* Réduction de l'agrandissement */
  filter: brightness(80%) contrast(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease-in-out;
}

.image-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  z-index: 10;
  max-width: 80%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-in, transform 0.5s ease-out;
}

.image-container:hover .image-text {
  opacity: 1;
  transform: translateY(0);
}

.image-text h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.image-text p {
  font-size: 22px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 30px;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .section-image {
      height: 400px; /* Réduit la hauteur de la section pour les écrans plus petits */
  }

  .image-text h2 {
      font-size: 36px; /* Taille du titre réduite pour mobile */
  }

  .image-text p {
      font-size: 18px; /* Taille du sous-titre réduite pour mobile */
  }

  .image-container {
      align-items: flex-end; /* Aligne le texte vers le bas de l'image pour les petits écrans */
      justify-content: flex-start;
  }

  .image-text {
      left: 20px; /* Réduit l'espace à gauche */
      bottom: 20px; /* Réduit l'espace en bas */
      max-width: 90%; /* Augmente la largeur du texte pour mieux s'adapter aux petits écrans */
  }
}

/* Responsive très petit écran (smartphones en mode portrait) */
@media (max-width: 480px) {
  .section-image {
      height: 300px; /* Encore plus petit pour les très petits écrans */
  }

  .image-text h2 {
      font-size: 28px; /* Taille du titre encore réduite pour les très petits écrans */
  }

  .image-text p {
      font-size: 16px; /* Taille du sous-titre encore réduite */
  }

  .image-text {
      left: 10px; /* Réduit encore l'espace à gauche */
      bottom: 10px; /* Réduit encore l'espace en bas */
  }
}

  
  
  /* Galerie vidéo ultra premium */
.video-gallery-ultra {
  padding: 100px 5%;
  background: linear-gradient(to bottom right, #f5f7fa, #e9ecf3);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 300px;
  gap: 30px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease-in-out;
}

.gallery-item:hover {
  transform: scale(1.01);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9);
}

.gallery-text {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  backdrop-filter: blur(2px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.gallery-text h2 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.gallery-text p {
  font-size: 1rem;
  line-height: 1.4em;
}

/* Tailles personnalisées pour effet grille */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.small {
  grid-row: span 1;
  grid-column: span 1;
}

/* RESPONSIVE MOBILE ULTRA PREMIUM */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.small {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 250px;
  }

  .gallery-text {
    padding: 15px;
  }

  .gallery-text h2 {
    font-size: 1.1rem;
  }

  .gallery-text p {
    font-size: 0.9rem;
  }
}



/* SECTION FAQ ULTRA PREMIUM */
.faq-ultra-premium {
  padding: 100px 5%;
  background: #fff;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 3.5rem;
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-header h2 .gold {
  color: #d4af37;
  font-style: italic;
}

.faq-header p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 15px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* ✅ ULTRA RESPONSIVE PREMIUM+++ MOBILE */
@media (max-width: 768px) {
  .faq-ultra-premium {
      padding: 60px 6%;
  }

  .faq-header h2 {
      font-size: 2rem;
      letter-spacing: 1px;
  }

  .faq-header p {
      font-size: 1rem;
      max-width: 90%;
  }

  .faq-container {
      padding: 0 5px;
  }

  .faq-question {
      font-size: 1.1rem;
      padding-right: 30px;
  }

  .faq-question::after {
      font-size: 1.5rem;
  }

  .faq-answer {
      font-size: 0.95rem;
      line-height: 1.5;
  }
}


.footer {
    background-color: #111;
    color: #ddd;
    padding: 60px 20px 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  
  .footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }
  
  .footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-col p,
  .footer-col a {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: none;
    line-height: 1.8;
  }
  
  .footer-col a:hover {
    color: #fff;
  }
  
  .social-icons a {
    color: #bbb;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #007bff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.85rem;
  }
  
  .footer-bottom a {
    color: #888;
    margin: 0 10px;
  }
  
  .footer-bottom a:hover {
    color: #fff;
  }
  