:root {
  --bg-color-1: #f7f9f9;
  --primary-color: #7a53ae;
  --secondary-color: #95a0d5;
  --accent-color-1: #75b653;
  --accent-color-2: #6c0396;
  --accent-color-3: #38373c;
  --accent-color-4: #151315;
  --accent-color-5: #fffefe;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--accent-color-4);
  overflow-x: hidden;
}

/* Header Styles */
header {
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* Navigation Bar */
.navbar {
  width: 100vw;
  height: 126px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(247, 249, 249, 0.9);
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(247, 249, 249, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 90px;
}

.navbar.scrolled .logo {
  width: 140px;
  height: 77px;
}

.logo {
  width: 172px;
  height: 95px;
  transition: all 0.3s ease;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--accent-color-4);
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--accent-color-1);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color-1);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: var(--accent-color-4);
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color-1);
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--accent-color-5);
  z-index: 10;
  width: 80%;
}

.hero-content h1 {
  font-family: "Great Vibes", cursive;
  font-size: 5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-color-1);
  color: var(--accent-color-5);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color-1);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent-color-5);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 19, 64, 0.4);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--accent-color-4);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: var(--bg-color-1);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.5s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 2rem 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: var(--accent-color-4);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.mobile-social {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}

.mobile-social a {
  color: var(--accent-color-4);
  font-size: 1.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .nav-menu {
    gap: 1.8rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 0 3%;
  }

  .nav-menu,
  .social-icons {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .mobile-menu {
    width: 80%;
  }

  .mobile-menu ul li a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 320px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .cta-button {
    padding: 0.7rem 1.8rem;
  }
}

/* Hamburger Animation */
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ------------------- About Section --------------------- */

/* About Section Styles */
#about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: var(--bg-color-1);
}

.about-container {
  width: 1410px;
  max-width: 100%;
  height: auto;
  min-height: 1354px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.about-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promise {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color-1);
  height: 16px;
  max-width: 1250px;
}

.heading h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: var(--accent-color-2);
  line-height: 1.2;
  max-width: 1250px;
  margin: 20px 0;
}

.paragraph {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--accent-color-3);
}

.paragraph p {
  max-width: 825px;
  margin: 15px 0;
}

.pipe-divider {
  width: 2px;
  height: 60px;
  background-color: var(--accent-color-1);
  margin: 30px 0;
}

.paragraph em {
  font-style: italic;
  color: var(--accent-color-2);
}

.about-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-color-1);
  color: var(--accent-color-5);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: 30px;
}

.about-cta:hover {
  background-color: transparent;
  color: var(--accent-color-1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(164, 60, 87, 0.3);
}

/* Responsive Styles for About Section */
@media screen and (max-width: 1200px) {
  .about-container {
    gap: 30px;
    padding: 60px 20px;
  }

  .heading h1 {
    font-size: 3rem;
    max-width: 1000px;
  }

  .paragraph p {
    max-width: 700px;
  }
}

@media screen and (max-width: 1024px) {
  .heading h1 {
    font-size: 2.5rem;
  }

  .paragraph {
    font-size: 1rem;
  }

  .pipe-divider {
    height: 40px;
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  #about-section {
    padding: 60px 20px;
  }

  .heading h1 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .paragraph p {
    max-width: 90%;
    padding: 0 10px;
  }

  .promise {
    font-size: 14px;
  }

  .about-cta {
    padding: 0.8rem 2rem;
  }
}

@media screen and (max-width: 480px) {
  #about-section {
    padding: 50px 15px;
  }

  .heading h1 {
    font-size: 1.8rem;
  }

  .paragraph {
    font-size: 0.95rem;
  }

  .pipe-divider {
    height: 30px;
    margin: 15px 0;
  }

  .about-cta {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 320px) {
  .heading h1 {
    font-size: 1.5rem;
  }

  .promise {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .paragraph {
    font-size: 0.9rem;
  }
}

/* ------------- What We Do Section Styles --------------- */
#what-we-do {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 20px;
  background-color: var(--bg-color-1);
}

.wwd-container {
  width: 1410px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

/* Div 1 - Header */
.wwd-header {
  width: 100%;
  height: 14px;
  text-align: left;
  margin-bottom: 20px;
}

.wwd-header span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color-1);
}

/* Div 2 - Subheader */
.wwd-subheader {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.wwd-subheader h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-color-2);
  margin: 0;
}

.wwd-cta {
  display: inline-block;
  width: 160px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-color-4);
  border: 1px solid var(--accent-color-4);
  background-color: var(--bg-color-1);
  transition: all 0.3s ease;
}

.wwd-cta:hover {
  background-color: var(--accent-color-4);
  color: var(--bg-color-1);
}

/* Gap */
.wwd-gap {
  width: 100%;
  height: 130px;
}

/* Div 3 - Content Area */
.wwd-content {
  width: 100vw;
  height: 768px;
  display: flex;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Updated Menu Styles */
.wwd-menu {
  width: 240px;
  height: 59%;
  background-color: var(--accent-color-5);
  padding-top: 101px;
  display: flex;
  justify-content: start;
}

.wwd-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.wwd-menu li {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color-3);
  padding: 15px 20px;
  text-align: end;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.wwd-menu li:hover,
.wwd-menu li.active {
  color: var(--accent-color-1);
  border-left: 3px solid var(--accent-color-1);
}

/* Updated Info Styles */
.wwd-info {
  width: 600px;
  height: 450px;
  position: absolute;
  left: 240px;
  background-color: #fffefe;
  z-index: 10;
}

.info-content {
  display: none;
  flex-direction: column;
  height: 100%;
  padding: 0 40px;
}

.info-content.active {
  display: flex;
}

.info-category {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color-1);
  margin-bottom: 20px;
  padding-top: 117px;
}

.info-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color-2);
  margin: 0 0 30px 0;
  line-height: 1.3;
}

.info-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color-4);
  text-decoration: none;
  position: relative;
  width: fit-content;
}

.info-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color-4);
  transition: all 0.3s ease;
}

.info-link:hover::after {
  width: 0;
}

/* Updated Image Styles */
.wwd-image {
  width: 60%;
  height: 100%;
  position: absolute;
  right: 0;
  margin-top: -75px;
}

.wwd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1440px) {
  .wwd-info {
    width: 550px;
  }
  .info-content h4 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1200px) {
  .wwd-subheader h3 {
    font-size: 2rem;
  }

  .wwd-info {
    width: 500px;
  }

  .info-content h4 {
    font-size: 1.6rem;
  }

  .wwd-menu {
    height: 55%;
  }
}

@media screen and (max-width: 1024px) {
  #what-we-do {
    padding: 100px 20px;
  }

  .wwd-content {
    height: 700px;
  }

  .wwd-menu {
    width: 200px;
  }

  .wwd-info {
    left: 200px;
    width: 450px;
  }

  .info-category {
    padding-top: 100px;
  }
}

@media screen and (max-width: 900px) {
  .wwd-content {
    flex-direction: column;
    height: auto;
    position: static;
    margin: 0;
    left: auto;
    right: auto;
  }

  .wwd-menu {
    width: 100%;
    height: auto;
    padding: 40px 20px 20px;
    justify-content: center;
    overflow-x: auto;
  }

  .wwd-menu ul {
    display: flex;
    gap: 15px;
  }

  .wwd-menu li {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 10px 15px;
    white-space: nowrap;
  }

  .wwd-menu li.active,
  .wwd-menu li:hover {
    border-left: none;
    border-bottom: 3px solid var(--accent-color-1);
  }

  .wwd-info {
    position: static;
    width: 100%;
    height: auto;
    padding: 40px;
    margin: 30px 0;
  }

  .info-category {
    padding-top: 0;
  }

  .wwd-image {
    position: static;
    width: 100%;
    height: 400px;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  #what-we-do {
    padding: 80px 20px;
  }

  .wwd-subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .info-content h4 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  #what-we-do {
    padding: 60px 15px;
  }

  .wwd-subheader h3 {
    font-size: 1.8rem;
  }

  .wwd-cta {
    width: 140px;
    height: 48px;
    line-height: 48px;
  }

  .info-content {
    padding: 0 20px;
  }

  .info-content h4 {
    font-size: 1.2rem;
  }

  .wwd-image {
    height: 300px;
  }
}

@media screen and (max-width: 375px) {
  .wwd-header span {
    font-size: 12px;
  }

  .wwd-subheader h3 {
    font-size: 1.5rem;
  }

  .wwd-menu li {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* ------------ Contact Us Section Styles ------------ */

/* Contact Section Styles */
.contact-section {
  width: 100vw;
  height: 338px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/assets/bg-contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--accent-color-5);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    39,
    19,
    64,
    0.7
  ); /* Using --accent-color-2 with opacity */
}

.contact-container {
  width: 1250px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* 1st Div Styles */
.contact-header {
  width: 100%;
  height: 16px;
  padding: 20px 0 14px 0;
  text-align: center;
}

.contact-header span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 2nd Div Styles */
.contact-subheader {
  width: 100%;
  height: 48px;
  padding-bottom: 65px;
  text-align: center;
}

.contact-subheader h4 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
}

/* 3rd Div Styles */
.contact-info {
  width: 100%;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.phone-number {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

.contact-cta {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-color-2);
  background-color: var(--accent-color-5);
  transition: all 0.3s ease;
}

.contact-cta:hover {
  background-color: var(--accent-color-1);
  color: var(--accent-color-5);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .contact-subheader h4 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1024px) {
  .contact-section {
    height: 300px;
  }

  .contact-header {
    padding: 60px 0 14px 0;
  }

  .contact-subheader h4 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-section {
    height: 280px;
  }

  .contact-header {
    padding: 50px 0 12px 0;
  }

  .contact-header span {
    font-size: 12px;
  }

  .contact-subheader h4 {
    font-size: 1.4rem;
    padding-bottom: 30px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .contact-section {
    height: 250px;
  }

  .contact-header {
    padding: 40px 0 10px 0;
  }

  .contact-subheader h4 {
    font-size: 1.2rem;
    padding-bottom: 25px;
  }

  .contact-cta {
    padding: 10px 25px;
  }
}

@media screen and (max-width: 375px) {
  .contact-header span {
    font-size: 11px;
  }

  .contact-subheader h4 {
    font-size: 1.1rem;
  }
}

/* -------------- Social Media Styles ------------   */

/* Social Media Section Styles */
.social-media-section {
  width: 100%;
  padding: 100px 0;
  background-color: var(--bg-color-1);
}

.sm-container {
  width: 1410px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Div 1 - Header */
.sm-header {
  width: 100%;
  height: 14px;
  text-align: left;
  margin-bottom: 20px;
}

.sm-header span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color-1);
}

/* Div 2 - Subheader */
.sm-subheader {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sm-subheader h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-color-2);
  margin: 0;
}

.sm-cta {
  display: inline-block;
  width: 160px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-color-4);
  border: 1px solid var(--accent-color-4);
  background-color: var(--bg-color-1);
  transition: all 0.3s ease;
}

.sm-cta:hover {
  background-color: var(--accent-color-4);
  color: var(--bg-color-1);
}

/* Gap */
.sm-gap {
  width: 100%;
  height: 158px;
}

/* Div 3 - Carousel */
.sm-carousel-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color-5);
  border: 1px solid var(--accent-color-4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--accent-color-4);
}

.carousel-btn:hover svg path {
  stroke: var(--accent-color-5);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-btn svg path {
  stroke: var(--accent-color-4);
  transition: all 0.3s ease;
}

.prev-btn {
  left: 215px;
}

.next-btn {
  right: 215px;
}

.sm-carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 calc(50vw - 705px);
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 202px;
  height: 202px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

/* Responsive Styles */
@media screen and (max-width: 1440px) {
  .prev-btn {
    left: 100px;
  }

  .next-btn {
    right: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .sm-subheader h3 {
    font-size: 2rem;
  }

  .carousel-track {
    padding: 0 100px;
  }
}

@media screen and (max-width: 1024px) {
  .social-media-section {
    padding: 80px 0;
  }

  .sm-subheader h3 {
    font-size: 1.8rem;
  }

  .sm-gap {
    height: 100px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .sm-subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sm-gap {
    height: 80px;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }

  .carousel-track {
    padding: 0 60px;
  }
}

@media screen and (max-width: 480px) {
  .social-media-section {
    padding: 60px 0;
  }

  .sm-header span {
    font-size: 12px;
  }

  .sm-subheader h3 {
    font-size: 1.5rem;
  }

  .sm-cta {
    width: 140px;
    height: 48px;
    line-height: 48px;
  }

  .sm-gap {
    height: 60px;
  }

  .carousel-item {
    flex: 0 0 150px;
    height: 150px;
  }
}

@media screen and (max-width: 375px) {
  .sm-subheader h3 {
    font-size: 1.3rem;
  }

  .carousel-item {
    flex: 0 0 130px;
    height: 130px;
  }
}

/* --------------- Footer Section ---------------- */

/* Footer Section Styles */
.footer-section {
  width: 100vw;
  min-height: 368px;
  background-color: var(--accent-color-2);
  color: var(--accent-color-5);
  display: flex;
  justify-content: center;
  padding: 70px 0 30px;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  width: 1410px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
}

/* 1st Div - Main Content */
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.footer-column {
  width: 320px;
  height: auto;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--accent-color-5);
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  color: var(--accent-color-5);
  font-size: 18px;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  color: var(--accent-color-1);
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--accent-color-5);
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color-1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 254, 254, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color-1);
  transform: translateX(5px);
}

.contact-info {
  font-size: 14px;
  line-height: 1.6;
}

.contact-info a {
  color: var(--accent-color-5);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--accent-color-1);
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 254, 254, 0.3);
  color: var(--accent-color-5);
  font-family: "Montserrat", sans-serif;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color-1);
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
  color: rgba(255, 254, 254, 0.6);
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: var(--accent-color-1);
  color: var(--accent-color-5);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter-form button:hover {
  background-color: var(--accent-color-5);
  color: var(--accent-color-1);
}

.newsletter-form button i {
  margin-left: 8px;
  font-size: 14px;
}

/* Divider Line */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 254, 254, 0.15);
  margin-bottom: 30px;
}

/* 2nd Div - Copyright */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 254, 254, 0.6);
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
  margin: 10px 0;
}

.legal-links a {
  font-size: 12px;
  color: rgba(255, 254, 254, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-color-1);
}

.credit {
  font-size: 11px;
  letter-spacing: 0.5px;
}

.credit a {
  color: var(--accent-color-5);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.credit a:hover {
  color: var(--accent-color-1);
}

/* Responsive Styles */
@media screen and (max-width: 1350px) {
  .footer-column {
    width: 280px;
  }
}

@media screen and (max-width: 1200px) {
  .footer-main {
    flex-wrap: wrap;
  }

  .footer-column {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer-section {
    padding: 50px 0 30px;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 35px;
  }

  .footer-heading {
    margin-bottom: 20px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .legal-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* ----------------- Back to Top Button Styles ----------------- */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color-1);
  color: var(--accent-color-5);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(164, 60, 87, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent-color-5);
  color: var(--accent-color-1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(164, 60, 87, 0.4);
}

.back-to-top:active {
  transform: translateY(0) scale(0.98);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }
}
