:root {
  --blush-pink: #d7ccc8;
  --rose-gold: #a1887f;
  --deep-rose: #8b6b61;
  --soft-ivory: hsl(36, 33%, 96%);
  --charcoal: hsl(210, 10%, 15%);
  --ash-gray: hsl(0, 0%, 60%);
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(0, 0%, 95%);
  --dark-rose: #5d4037;

  /* Semantic mapping */
  --primary: var(--rose-gold);
  --secondary: var(--deep-rose);
  --light: var(--soft-ivory);
  --dark: var(--charcoal);
  --text-muted: var(--ash-gray);

  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  color: var(--ash-gray);
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Poppins", sans-serif;
   overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Syne", sans-serif !important;
  font-weight: 600;
  line-height: 1.2;
}
p,
a,
li,
span,
strong {
  font-family: "Syne", sans-serif !important;
}
a {
  text-decoration: none !important;
}
/* ===========================================
   LAYOUT & CONTAINERS
=========================================== */

.container {
  padding-inline: 15px;
}

.section {
  padding-block: 75px;
}

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* ===========================================
   TYPOGRAPHY
=========================================== */

.h1 {
  color: var(--charcoal);
  font-family: "League Spartan", sans-serif;
  line-height: 1;
  font-weight: 600;
  font-size: 4.2rem;
}

.span {
  color: var(--deep-rose);
}

.view-course {
  color: var(--soft-ivory);
}

/* ===========================================
   BUTTONS (ALL BUTTON STYLES)
=========================================== */

.btn {
  background-color: var(--deep-rose);
  color: var(--white);
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px !important;
  overflow: hidden;
  text-transform: uppercase;
}

.has-before {
  position: relative;
  z-index: 1;
}

.has-before::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(-90deg, var(--dark-rose) 0%, var(--deep-rose));
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: 0.5s ease;
}

.btn:is(:hover, :focus)::before {
  transform: translateX(0);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--deep-rose);
  color: var(--deep-rose);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "League Spartan", sans-serif;
}

.btn-outline:hover {
  background-color: var(--deep-rose);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-rose), var(--rose-gold));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "League Spartan", sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-view-all {
  background: transparent;
  color: var(--deep-rose);
  border: 2px solid var(--deep-rose);
  padding: 10px 20px;
  font-size: 14px;
  font-family: "League Spartan", sans-serif;
}

.btn-view-all:hover {
  background-color: var(--deep-rose);
  color: var(--white);
}



/* ===========================================
   HEADER & NAVIGATION (COMPLETE)
=========================================== */

/* Subheader */
.subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--deep-rose) 100%
  );
  padding: 10px 46px;
  font-size: 14px;
}

.subheader-left,
.subheader-right {
  display: flex;
  align-items: center;
}

.subheader-left p {
  margin: 0;
  margin-right: 15px;
  font-weight: bold;
  color: var(--soft-ivory);
}

.subheader-left a,
.subheader-right a {
  margin-right: 15px;
  text-decoration: none;
  color: var(--soft-ivory);
  transition: color 0.3s ease;
}

.subheader-left a i,
.subheader-right a i {
  margin-right: 5px;
}

.subheader-right a:last-child {
  margin-right: 0;
}

.subheader-left a:hover,
.subheader-right a:hover {
  color: var(--rose-gold);
}

/* Main Header */
.main-header {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  /* New code to change the color to black */
  filter: brightness(0) invert(0);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--deep-rose), var(--rose-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  opacity: 0;
}

.nav-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-link:hover {
  color: var(--deep-rose);
}

/* Navigation Items & Dropdown */
.nav-item {
  position: relative;
}

.nav-link.has-dropdown::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 5px;
}

.nav-link {
  display: block;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--secondary);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -50%;
  transform: translateX(-50%) translateY(20px);
  width: 1100px;
  background: var(--white);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 30px 25px -10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mega Menu Columns */
.mega-menu-column h4,
.mega-menu-featured h4 {
  font-size: 16px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d9cdc0;
  display: flex;
  align-items: center;
}

.mega-menu-column h4 i,
.mega-menu-featured h4 i {
  margin-right: 8px;
}

/* Course Links */
.mega-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-links li {
  margin-bottom: 12px;
}

.mega-menu-links a {
  color: var(--ash-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-left: 12px;
  border-left: 2px solid transparent;
  background: linear-gradient(135deg, #e1d7cb 100%, #ffffff 0%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s ease, padding-left 0.3s ease,
    border-color 0.3s ease, color 0.3s ease;
}

.mega-menu-links a i {
  color: #d9cdc0;
  margin-right: 10px;
  font-size: 16px;
}

.mega-menu-links a:hover i {
  color: var(--charcoal);
}

.mega-menu-links a:hover {
  background-size: 100% 100%;
  color: var(--charcoal);
  padding-left: 18px;
  border-left: 2px solid var(--deep-rose);
}

/* Featured Courses */
.mega-menu-featured {
  background: linear-gradient(135deg, #e1d7cb 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  padding: 20px;
  border-radius: 10px;
}

.featured-service {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.featured-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.featured-service h5 {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 5px;
}

.featured-service h5 i {
  margin-right: 8px;
}

.featured-service p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

/* Founder Image/Video */
.mega-menu-founder-img video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

#course-title,
#course-subtitle,
#course-desc,
#course-video {
  transition: opacity 0.3s ease;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.more-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-gray);
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "League Spartan", sans-serif;
}

.more-toggle:hover {
  background: var(--deep-rose);
  transform: translateY(-2px);
}

.more-toggle:hover span {
  color: var(--soft-ivory);
}

/* Mobile Toggle Button Styles */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--charcoal);
  background: var(--light-gray);
  border-radius: 5px;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: var(--deep-rose);
  color: var(--white);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  /* Ensure mobile navigation works */
  .main-nav {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: calc(100vh - 120px);
    overflow-y: auto;
    gap: 10px;
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
  }

  /* Mega menu on mobile */
  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    transform: none;
    padding: 15px;
    background-color: #f9f9f9;
    box-shadow: none;
    margin-top: 10px;
  }

  .nav-item:hover .mega-menu,
  .nav-item.active .mega-menu {
    display: block;
  }
}
/* ===========================================
   MORE PANEL (COMPLETE)
=========================================== */

.more-panel {
  position: fixed;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  z-index: 1001;
  padding: 30px 20px;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.more-panel.active {
  right: 0;
}

.more-panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-panel-close:hover {
  color: var(--deep-rose);
  background: var(--light-gray);
  transform: rotate(90deg);
}

.more-panel-title {
  color: var(--charcoal);
  font-size: 22px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--deep-rose);
  display: flex;
  align-items: center;
  font-family: "League Spartan", sans-serif;
}

.more-panel-title i {
  margin-right: 10px;
  color: var(--deep-rose);
}

.more-panel-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.more-panel-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background-color: var(--light-gray);
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.more-panel-link i {
  font-size: 14px;
  margin-right: 12px;
  color: var(--deep-rose);
}

.more-panel-link:hover {
  background-color: var(--deep-rose);
  color: var(--white);
  transform: translateX(5px);
}

.more-panel-link:hover i {
  color: var(--white);
}

.more-image-box {
  display: block;
  height: 180px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 10px;
}

.more-image-box:last-child {
  margin-bottom: 0;
}

.more-image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.more-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.more-image-box:hover img {
  transform: scale(1.05);
}

.more-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  border-radius: 0 0 10px 10px;
}

.more-image-title h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
  font-family: "League Spartan", sans-serif;
}

.more-image-desc {
  font-size: 13px;
  opacity: 0.9;
}

.more-panel-social {
  display: flex;
  justify-content: start;
  gap: 8px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.social-icon {
  font-size: 18px;
  color: var(--white);
  background-color: var(--deep-rose);
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.social-icon:hover {
  color: var(--white);
  background-color: var(--charcoal);
  transform: scale(1.1);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Hide close button by default (desktop) */
.mobile-nav-close {
  display: none;
}
/* ===========================================
   MOBILE NAVIGATION FIXES - MEGA MENU SPECIFIC
=========================================== */

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  /* Show close button only on mobile */
  .mobile-nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--deep-rose);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-nav-close:hover {
    background: var(--dark-rose);
    transform: rotate(90deg);
  }
  /* Fixed Mobile Navigation */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 20px 30px;
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    gap: 0;
    z-index: 998;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  /* Navigation Links */
  .nav-link {
    padding: 18px 15px;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link:hover {
    background-color: var(--soft-ivory);
    color: var(--deep-rose);
    transform: none;
  }

  .nav-link::after {
    display: none;
  }

  /* Navigation Items */
  .nav-item {
    width: 100%;
    position: relative;
  }

  /* Dropdown Arrows */
  .nav-link.has-dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .nav-item.active .nav-link.has-dropdown::after {
    transform: rotate(180deg);
  }

  /* MEGA MENU MOBILE FIX - NO OVERFLOW */
  .mega-menu {
    position: static !important;
    display: none;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    grid-template-columns: 1fr;
    padding: 0;
    background-color: var(--soft-ivory);
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    border: none;
    max-width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-item.active .mega-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 1000px;
    }
  }

  /* Mega Menu Columns Mobile - FIXED WIDTH */
  .mega-menu-column {
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .mega-menu-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--rose-gold);
    width: 100%;
  }

  /* Course Links Mobile - NO OVERFLOW */
  .mega-menu-links {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .mega-menu-links li {
    margin-bottom: 8px;
    width: 100%;
  }

  .mega-menu-links a {
    padding: 12px 15px;
    font-size: 14px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 5px;
    border-left: 3px solid var(--deep-rose);
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .mega-menu-links a:hover {
    background: var(--white);
    transform: none;
    padding-left: 15px;
  }

  /* Featured Section Mobile */
  .mega-menu-featured {
    padding: 20px 15px;
    background: var(--white);
    margin: 10px 15px;
    border-radius: 10px;
    width: calc(100% - 30px);
    box-sizing: border-box;
  }

  .featured-service {
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
  }

  /* Video Section Mobile */
  .mega-menu-founder-img {
    padding: 0 15px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .mega-menu-founder-img video {
    height: 200px;
    border-radius: 10px;
    width: 100%;
  }

  /* Hide the original mega menu hover effects on mobile */
  .nav-item:hover .mega-menu {
    display: none;
  }

  /* Only show mega menu when active class is added via JavaScript */
  .nav-item.active .mega-menu {
    display: block;
  }

  /* Hide header buttons on mobile */
  .header-actions .btn {
    display: none;
  }

  /* More panel mobile */
  .more-panel {
    width: 85%;
    right: -85%;
  }

  /* Subheader hide on mobile */
  .subheader {
    display: none;
  }

  /* Header height adjustment for mobile */
  .main-header {
    position: relative;
  }

  .header-content {
    padding: 12px 0;
  }

  .logo-img {
    width: 120px;
  }
}

/* Small Mobile Improvements */
@media (max-width: 576px) {
  .main-nav {
    padding: 70px 15px 20px;
  }

  .nav-link {
    padding: 16px 12px;
    font-size: 15px;
  }

  .mega-menu-column {
    padding: 15px 12px;
  }

  .mega-menu-links a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .mega-menu-featured {
    margin: 8px 12px;
    padding: 15px 12px;
    width: calc(100% - 24px);
  }

  .mega-menu-founder-img {
    padding: 0 12px 15px;
  }

  .mega-menu-founder-img video {
    height: 180px;
  }

  .logo-img {
    width: 100px;
  }

  .more-panel {
    width: 90%;
    right: -90%;
  }

  .more-image-box {
    height: 140px;
  }
}

/* DISABLE HOVER EFFECTS ON MOBILE COMPLETELY */
@media (max-width: 768px) {
  .nav-item:hover .mega-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .mega-menu {
    display: none !important;
  }

  .nav-item.active .mega-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
} /* Completely disable hover effects for mega menu on mobile */
@media (max-width: 768px) {
  .nav-dropdown {
    pointer-events: auto;
  }

  .nav-dropdown:hover .mega-menu {
    display: none !important;
  }

  /* Force the mega menu to only show with JavaScript */
  .mega-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
  }

  .nav-item.active .mega-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}



















.footer {
  background-color: #0e0e0e;
  background-image: url(images/footer-bg.png);
  color: #333;
  padding: 5rem 0 2rem;
  position: relative;
  width: 100%;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #928575, #c3922e);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.footer-about .logo a img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-logo a {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.footer-logo i {
  color: #ffffff;
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.footer-about p {
  color: #ededed;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(207, 207, 207, 0.05);
  border-radius: 50%;
  color: #dcdcdc;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social a:hover {
  background-color: #ff6b6b31;
  color: #c3922e;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #928575;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #e9e9e9;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
}

.footer-links a:hover {
  color: #c3922e;
  transform: translateX(5px);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  color: #c4c4c4;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer-contact a {
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  padding-left: 5px;
}

.footer-contact i {
  color: #928575;
  margin-right: 0.8rem;
  margin-top: 10px;
  font-size: 1rem;
  font-size: 1.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #ffffff47;
  color: #e4e4e4;
  max-width: 1200px;
  margin: 10px auto;
  font-size: 1.4rem;
}
.footer-bottom a {
  color: #e4e4e4;

  &:hover {
    color: #928575;
  }
}

.service-tag {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
  margin-bottom: 25px;
  display: inline-block;
  text-transform: uppercase;
}

.service-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 2px;
}
