* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --brown-dark: #6f4e37;
  --brown-light: #8b6b4d;
  --wheat: #f5deb3;
  --cream: #fff8f0;
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-color: #1f2937;
  --background-light: #f9fafb;
  --background-dark: #111827;
  --accent-color: #e11d48;
  --white: #ffffff;
  --coffee-dark: #3e2723;
  --coffee-medium: #5d4037;
  --coffee-light: #8d6e63;
  --cream: #efebe9;
  --light-cream: #f9f5f0;
  --latte: #d7ccc8;
  --accent: #a1887f;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --primary-light: #f8f4ee;
  --primary-dark: #5e4932;
  --accent-gold: #d4b483;
  --beige: #e8d9c5;
  --light-beige: #f8f4ee;
  --accent-light-gold: #e8d9c5;
  --rich-black: #0a0a0a;
  --dark-chocolate: #1a120b;
  --espresso: #3e2723;
  --coffee-brown: #5d4037;
  --cappuccino: #d7ccc8;
  --gold-accent: #d4af37;
  --transition-speed: 0.4s;
}

.navbar {
  background-color: rgb(255, 225, 194);
  opacity: 0.85;
}
.nav-item a {
  color: rgb(119, 33, 33);
}

.navbar .felo-nav {
  position: relative;
  padding-right: 25px;
}

.navbar .felo-nav::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  height: 55px;
  width: 2px;
  background-color: #333;
}

.dropdown-toggle:hover span {
  color: rgb(220, 39, 39);
  font-size: 24px;
}

.dropdown-toggle {
  display: inline-block;
  border: 2px solid #8b6b4d;
  padding: 8px 12px;
  border-radius: 4px;
}
/* /////////////////////////////////////////////////// */

.search-input-lg {
  transition: all 0.3s ease;
}
.search-input-lg:focus {
  border-color: #8b6b4d !important;
  box-shadow: 0 0 0 0.25rem rgba(139, 107, 77, 0.25) !important;
  cursor: pointer;
}

.search-btn {
  background-color: #8b6b4d;
  color: white;
  border-radius: 18px;
  border: none;
  transition: all 0.3s ease;
}
.search-btn:hover {
  background-color: #6f4e37;
  color: white;
  transform: translateY(-2px);
}

.login-btn {
  background-color: transparent;
  color: #8b6b4d;
  border: 2px solid #8b6b4d;
  border-radius: 18px;
  transition: all 0.3s ease;
}
.login-btn:hover {
  background-color: #8b6b4d;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  form.d-flex {
    flex-direction: column;
    gap: 12px !important;
  }
  .search-input-lg {
    width: 100% !important;
    height: 45px !important;
  }
  .search-btn,
  .login-btn {
    width: 100%;
    height: 40px !important;
  }
}

/* /////////////////////////////////////// */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1040;
}

.login-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  width: 90%;
  max-width: 400px;
}

.login-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #8b6b4d;
}

.form-control {
  margin-bottom: 15px;
  height: 45px;
}

.login-submit {
  background-color: #8b6b4d;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.login-submit:hover {
  background-color: #6f4e37;
}

.cancel-btn {
  background-color: transparent;
  color: #8b6b4d;
  border: 1px solid #8b6b4d;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.cancel-btn:hover {
  background-color: #f8f9fa;
}

/* /////////////end navbar////////////////////////////// */
/*/////////// start icon-coulm////////////////////////// */

.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1) translateX(-5px);
}

.facebook {
  background-color: #1877f2;
}
.whatsapp {
  background-color: #25d366;
}
.twitter {
  background-color: #1da1f2;
}
.linkedin {
  background-color: #0077b5;
}
.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

@media (max-width: 768px) {
  .social-icons {
    flex-direction: row;
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    justify-content: center;
    border-radius: 10px 10px 0 0;
  }

  .social-icon:hover {
    transform: scale(1.1) translateY(-5px);
  }
}
/* ///////////////////////////////////end icon-coulm//////////////////////// */
/*/////////////////////// end all navbar//////////////////////////////////// */
/* /////////////////////////////////start section 1 /////////////////////////*/

/* .carousel-caption {
  background-color: rgba(251, 241, 231, 0.6);
} */

.carousel-item {
  height: 100vh;
  min-height: 500px;
}

.carousel-item img {
  /* object-fit: cover; */
  height: 100%;
  width: 100%;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 20px;
  bottom: 6%;
  left: 10%;
  right: 10%;
}

.carousel-caption h5 {
  font-size: 2rem;
  color: #8b6b4d;
  font-weight: bold;
  margin-bottom: 20px;
}

.carousel-caption p {
  font-size: 1.1rem;
}

.carousel-caption button {
  background-color: #8b6b4d;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1.1rem;
  margin-top: 15px;
  transition: all 0.3s;
}

.carousel-caption button:hover {
  background-color: #6f4e37;
  transform: translateY(-3px);
}

.carousel-indicators {
  bottom: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
.carousel-control-next {
  right: 4%;
}
/* ////////////////////////////////end section 1//////////// */
/* ///////start section 2//////////////////////////////// */
.welcome-section {
  background-color: rgb(254, 239, 223);
  height: 40vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--brown-light);
  position: relative;
  overflow: hidden;
}

.welcome-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 200px;
  background-image: radial-gradient(circle, var(--wheat) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.3;
  z-index: 1;
}

.welcome-heading {
  font-weight: 700;
  color: var(--brown-dark);
}

.welcome-text {
  color: #555;
  line-height: 1.6;
  max-width: 800px;
}

.btn-welcome {
  background-color: var(--brown-light);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
}

.btn-welcome:hover {
  background-color: var(--brown-dark);
  transform: translateY(-2px);
}

.service-badge {
  background-color: var(--wheat);
  color: var(--brown-dark);
  border-radius: 20px;
  font-weight: 600;
}

.products-heading {
  color: var(--brown-dark);
  position: relative;
}

.products-heading:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--brown-light);
  margin: 15px auto;
}

@media (max-width: 768px) {
  .welcome-section {
    height: auto;
    padding: 60px 0;
    min-height: auto;
  }
  .welcome-heading {
    font-size: 1.8rem !important;
  }
  .welcome-text {
    font-size: 1rem !important;
  }
}
/* /////////////////////////////////////////////////////////// */
.products-section {
  background-color: #6f4e37;
  color: var(--wheat);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .products-section {
    height: auto !important;
    padding: 40px 0 !important;
  }
}
/* /////////////////////////////// */

.accordion-button:not(.collapsed) {
  background-color: #8b6b4d !important;
  color: white !important;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 107, 77, 0.25);
}
.accordion-item {
  border: 1px solid #d2b48c;
  margin-bottom: 8px;
  border-radius: 5px !important;
  overflow: hidden;
}
/* /////////////////////////////////////////////////////////////// */

.translation-card {
  background-color: var(--cream);
  border: 2px solid var(--wheat);
  width: 100%;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(111, 78, 55, 0.1);
  margin: 0;
  border-radius: 0;
}

.translation-header {
  background-color: var(--brown-light);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
}

.translation-body {
  padding: 20px;
}

.btn-translate {
  background-color: var(--brown-light);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 20%;
  height: 40px;
}

.btn-translate:hover {
  background-color: var(--brown-dark) !important;
  transform: translateY(-2px);
}

.btn-copy {
  background-color: var(--wheat);
  color: var(--brown-dark);
  border: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}

.btn-copy:hover {
  background-color: var(--brown-light);
  color: white;
}

.copy-hint {
  font-size: 0.85rem;
  color: gray;
  margin-top: 5px;
  text-align: center;
}

.translation-result {
  background-color: white;
  border: 1px solid var(--wheat);
  border-radius: 10px;
  padding: 15px;
  min-height: 100px;
  margin-top: 20px;
  direction: ltr;
  text-align: left;
}
/* ///////////////////////////end translate////////////////////// */
/* ////////////////////////////////////////////////////////////// */

.parallax-container {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.parallax-img {
  background-image: url(../images/test1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-attachment: fixed;
}

/* //////////////////////////////////////////////////// */

.product-header {
  background-color: var(--brown-light);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
}

/* /////////////////////////////////////////////////////////////////// */

.coffee-gallery {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f9f5f0 0%, #f0e6d8 100%);
  position: relative;
  overflow: hidden;
}

.coffee-gallery::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 107, 77, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.coffee-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.coffee-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.coffee-row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.coffee-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.coffee-card::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: rgba(20, 20, 20, 0.1);
  z-index: 2;
  transition: all 0.8s ease;
  pointer-events: none;
  border-radius: 16px;
}

.coffee-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  bottom: 0;
  right: 0;
  background-color: rgba(20, 20, 20, 0.1);
  z-index: 2;
  transition: all 0.8s ease;
  pointer-events: none;
  border-radius: 16px;
}

.coffee-card:hover::after,
.coffee-card:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.coffee-card:nth-child(1) {
  animation-delay: 0.1s;
}
.coffee-card:nth-child(2) {
  animation-delay: 0.2s;
}
.coffee-card:nth-child(3) {
  animation-delay: 0.3s;
}
.coffee-card:nth-child(4) {
  animation-delay: 0.4s;
}
.coffee-card:nth-child(5) {
  animation-delay: 0.5s;
}
.coffee-card:nth-child(6) {
  animation-delay: 0.6s;
}
.coffee-card:nth-child(7) {
  animation-delay: 0.7s;
}
.coffee-card:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.coffee-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.coffee-img-container {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.coffee-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.coffee-card:hover .coffee-img {
  transform: scale(1.1);
}

.coffee-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5a3c28;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.coffee-content {
  padding: 1.5rem;
  position: relative;
  z-index: 3;
}

.coffee-name {
  color: #5a3c28;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.coffee-desc {
  color: #6e6e6e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.coffee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #8b6b4d, #6f4e37);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(139, 107, 77, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.coffee-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s;
}

.coffee-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 107, 77, 0.4);
}

.coffee-btn:hover::after {
  left: 100%;
}

@media (max-width: 1024px) {
  .coffee-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .coffee-row-2 {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .coffee-gallery {
    padding: 3rem 0;
  }

  .coffee-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .coffee-img-container {
    height: 200px;
  }

  .coffee-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .coffee-content {
    padding: 1.25rem;
  }

  .coffee-btn {
    width: 100%;
  }
}
/* ///////////////////////////////////////////////////////////////// */

.parallax-container2 {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.parallax-img2 {
  background-image: url(../images/test3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-attachment: fixed;
}
/* /////////////////////////////////////////// */

.thanks-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
  position: relative;
  overflow: hidden;
}

.thanks-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(111, 78, 55, 0.05);
  border-radius: 50%;
}

.thanks-section::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(139, 107, 77, 0.05);
  border-radius: 50%;
}

.thanks-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.thanks-header h2 {
  font-size: 2.8rem;
  color: #6f4e37;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.thanks-header p {
  color: #8b6b4d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.thanks-cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.thanks-card {
  width: 100%;
  max-width: 380px;
  min-width: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
}

.thanks-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.thanks-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.background-section {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.thanks-card:hover .background-image {
  transform: scale(1.1);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.5)
  );
}

.profile-image-container {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
}

.thanks-card:hover .profile-image-container {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.thanks-card:hover .profile-image {
  transform: scale(1.1);
}

.card-content {
  padding: 80px 30px 30px;
  text-align: center;
  background: white;
  position: relative;
}

.card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #8b6b4d, #6f4e37);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thanks-card:hover .card-content::before {
  opacity: 1;
}

.thanks-text {
  font-style: italic;
  color: #8b6b4d;
  margin-bottom: 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.date-text {
  color: #8b6b4d;
  font-size: 0.95rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.name-text {
  color: #6f4e37;
  margin: 15px 0;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.thanks-card:hover .name-text {
  color: #5a3c28;
}

.position-text {
  color: #8b6b4d;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .thanks-header h2 {
    font-size: 2.3rem;
  }

  .thanks-card {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .thanks-section {
    padding: 60px 0;
  }

  .thanks-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .thanks-card {
    max-width: 100%;
    margin-bottom: 0;
  }

  .profile-image-container {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 576px) {
  .thanks-header h2 {
    font-size: 2rem;
  }

  .background-section {
    height: 180px;
  }

  .profile-image-container {
    top: 130px;
    width: 100px;
    height: 100px;
  }

  .card-content {
    padding: 70px 20px 25px;
  }
}
/* /////////////////////////////////////////////////////////////////////////// */

.coffee-gradient {
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-medium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coffee-bg {
  background-color: var(--coffee-medium);
  color: white;
}

.cream-bg {
  background-color: var(--cream);
}

.latte-bg {
  background-color: var(--latte);
}

.coffee-border {
  border: 2px solid var(--coffee-light);
}

.btn-coffee {
  background-color: var(--coffee-dark);
  color: white;
  border: none;
}

.btn-coffee:hover {
  background-color: var(--coffee-medium);
  color: white;
}

.btn-cream {
  background-color: var(--latte);
  color: var(--coffee-dark);
  border: none;
}

.btn-cream:hover {
  background-color: var(--cream);
  color: var(--coffee-dark);
}

.coffee-card-news {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  border: none;
}

.coffee-card-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.clipped-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.coffee-divider {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--coffee-dark),
    var(--coffee-light),
    var(--coffee-dark)
  );
  margin: 20px 0;
}

.felocoffe-logo {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coffee-dark);
}

@media (max-width: 768px) {
  .clipped-img {
    clip-path: none;
    height: 250px;
  }

  .felocoffe-logo {
    font-size: 2rem;
  }
}
/* ////////////////////////////////////////////////////////// */

.social-engagement-card-wrapper {
  perspective: 1500px;
  margin-bottom: 30px;
}

.social-media-engagement-card-container {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-light);
  transform-style: preserve-3d;
  position: relative;
}

.social-media-engagement-card-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(212, 180, 131, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.social-media-engagement-card-container:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.social-media-engagement-card-container:hover::before {
  opacity: 1;
}

.card-image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.social-media-engagement-card-container:hover .card-image-container img {
  transform: scale(1.1);
}

.social-media-card-image-overlay-content {
  background: linear-gradient(
    to bottom,
    rgba(255, 253, 250, 0.9) 0%,
    rgba(248, 244, 238, 0.95) 100%
  );
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.social-media-engagement-main-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.social-media-engagement-main-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  transition: width var(--transition-speed);
}

.social-media-engagement-card-container:hover
  .social-media-engagement-main-title::after {
  width: 100%;
}

.social-media-action-subtitle {
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.social-media-action-subtitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold), transparent);
  transition: width var(--transition-speed);
}

.social-media-engagement-card-container:hover
  .social-media-action-subtitle::before {
  width: 100%;
}

.social-media-action-list-container {
  list-style: none;
  padding-left: 0;
  position: relative;
}

.social-media-action-list-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  opacity: 0.5;
}

.social-media-action-list-item {
  background-color: transparent;
  color: var(--primary-dark);
  border: none;
  padding: 0.7rem 0;
  position: relative;
  transition: all var(--transition-speed);
  padding-right: 25px;
}

.social-media-action-list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all var(--transition-speed);
}

.social-media-action-list-item:hover {
  padding-right: 30px;
}

.social-media-action-list-item:hover::before {
  transform: translateY(-50%) scale(1.5);
  background: var(--primary-dark);
}

.social-media-action-link {
  color: var(--primary-dark);
  text-decoration: none;
  transition: all var(--transition-speed);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.social-media-action-link:hover {
  color: var(--accent-gold);
}

.social-media-link-arrow-icon {
  font-size: 0.9rem;
  color: var(--accent-light-gold);
  transition: all var(--transition-speed);
}

.social-media-action-link:hover .social-media-link-arrow-icon {
  color: var(--accent-gold);
  transform: translateX(-5px);
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  color: rgba(212, 180, 131, 0.3);
  font-size: 1.2rem;
  animation: float 15s infinite linear;
  opacity: 0;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(100%) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-20%) rotate(360deg);
    opacity: 0;
  }
}
.card-1 .social-media-action-subtitle {
  color: #c7a17a;
}

.card-2 .social-media-action-subtitle {
  color: #a38b76;
}

.card-3 .social-media-action-subtitle {
  color: #8c6e5a;
}

.card-4 .social-media-action-subtitle {
  color: #d4b483;
}
/* /////////////////////////////////////////////////////////////////////////////////////// */

:root {
  --felocaffe-primary-dark: #0a0a0a;
  --felocaffe-secondary-dark: #1a120b;
  --felocaffe-accent-gold: #d4af37;
  --felocaffe-light-text: #d7ccc8;
  --felocaffe-border-light: rgba(212, 175, 55, 0.2);
}

.felocaffe-global-footer-container {
  background-color: var(--felocaffe-primary-dark);
  color: var(--felocaffe-light-text);
  padding: 3rem 0 0;
  border-top: 1px solid var(--felocaffe-accent-gold);
  font-size: 1rem;
  line-height: 1.6;
}

.felocaffe-brand-logo-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.felocaffe-brand-logo-element {
  max-height: 80px;
  width: auto;
  border-radius: 20px;
}

.felocaffe-footer-section-heading {
  color: var(--felocaffe-accent-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.felocaffe-footer-section-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--felocaffe-accent-gold);
}

.felocaffe-contact-info-item {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-size: 1rem;
}

.felocaffe-contact-info-icon {
  margin-right: 0.6rem;
  color: var(--felocaffe-accent-gold);
  width: 18px;
  text-align: center;
  font-size: 1rem;
}

.felocaffe-navigation-list-container {
  list-style: none;
  padding: 0;
  margin: 0;
}

.felocaffe-navigation-list-item {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.felocaffe-navigation-list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--felocaffe-accent-gold);
  font-size: 1rem;
}

.felocaffe-navigation-link {
  color: var(--felocaffe-light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.felocaffe-navigation-link:hover {
  color: var(--felocaffe-accent-gold);
}

.felocaffe-footer-bottom-container {
  background-color: var(--felocaffe-secondary-dark);
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--felocaffe-border-light);
  font-size: 0.9rem;
}

.felocaffe-audio-player-component {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  width: fit-content;
  font-size: 1rem;
}

.felocaffe-audio-player-icon {
  color: var(--felocaffe-accent-gold);
  margin-right: 0.6rem;
  font-size: 1rem;
}

.felocaffe-newsletter-form-container .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--felocaffe-coffee-brown);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.felocaffe-newsletter-form-container .btn-outline-light {
  border: 1px solid var(--felocaffe-accent-gold);
  color: var(--felocaffe-accent-gold);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.felocaffe-payment-method-icon {
  color: var(--felocaffe-light-text);
  margin-right: 15px;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .felocaffe-footer-col {
    margin-bottom: 2rem;
    text-align: center;
  }

  .felocaffe-footer-section-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
