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

body {
  font-family: 'Bodoni Moda', serif;
  color: #2c2c2c;
  overflow-x: hidden;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #020d48;
  z-index: 1000;
  transition: transform 0.3s ease;
}

header.hide {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 20px 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 60px;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  line-height: 0;
  padding-bottom: 4px;
}

.logo {
  width: 80px;
  height: auto;
  display: block;
  padding: 0;
  margin: 0;
}

nav {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  position: relative;
}

nav a,
nav .nav-link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  line-height: 1;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}

nav a:hover,
nav .nav-link:hover {
  opacity: 0.8;
}

.nav-item {
  display: inline-flex;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  padding-bottom: 0;
  vertical-align: bottom;
  position: relative;
}

.nav-item .nav-link {
  align-self: flex-end;
  vertical-align: bottom;
  padding-bottom: 4px;
}

/* Mega Menu Styles */

.nav-item-mega {
  position: static;
}

.mega-menu-bridge {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.nav-item-mega:hover .mega-menu-bridge {
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  width: 100%;
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.nav-item-mega:hover .mega-menu,
.mega-menu-bridge:hover + .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.5fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
}

.mega-menu-title {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Bodoni Moda', serif;
}

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

.mega-menu-links li {
  margin-bottom: 10px;
}

.mega-menu-links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  display: block;
}

.mega-menu-links a:hover {
  color: #2c2c2c;
}

.mega-menu-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 100%;
  min-height: 300px;
}

.mega-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega-menu-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.mega-menu-btn {
  background: white;
  color: #2c2c2c;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mega-menu-btn:hover {
  background: #2c2c2c;
  color: white;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 200px;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
  list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 25px;
  color: #666;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-menu a:hover {
  color: #2c2c2c;
  background: rgba(0, 0, 0, 0.05);
}

.enquiry-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 12px 16px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0;
  line-height: 1;
  margin-bottom: 4px;
  text-decoration: none;
  display: inline-block;
}

.enquiry-btn:hover {
  background: white;
  color: #020d48;
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 22px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
  position: relative;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #2c2c2c;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 100px);
  overflow-y: hidden;
}

.mobile-menu-nav-items {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-menu-nav-items > .mobile-menu-dropdown:first-child .mobile-menu-dropdown-toggle,
.mobile-menu-nav-items > .mobile-menu-link:first-child {
  padding-top: 0;
  border-top: none;
}

.mobile-menu-nav-items > .mobile-menu-dropdown:last-child,
.mobile-menu-nav-items > .mobile-menu-link:last-child {
  border-bottom: none;
}

.mobile-menu-nav-items .mobile-menu-link,
.mobile-menu-nav-items .mobile-menu-submenu a {
  display: block;
  color: #2c2c2c;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  letter-spacing: 0.5px;
}

.mobile-menu-nav-items .mobile-menu-submenu a {
  font-size: 14px;
  padding: 10px 0 10px 16px;
  text-transform: none;
  letter-spacing: 0.3px;
}

.mobile-menu-dropdown {
  border-bottom: 1px solid #eee;
}

.mobile-menu-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: #2c2c2c;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 0;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.mobile-menu-chevron {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.mobile-menu-dropdown.expanded .mobile-menu-chevron {
  transform: rotate(90deg);
}

.mobile-menu-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.expanded .mobile-menu-submenu {
  max-height: 2000px;
}

.mobile-menu-submenu[hidden] {
  display: block !important;
  max-height: 0;
}

.mobile-menu-dropdown.expanded .mobile-menu-submenu[hidden] {
  hidden: unset;
}

.mobile-menu-content .enquiry-btn {
  margin: 10px 0;
  width: 100%;
  text-align: center;
  color: #2c2c2c;
  border-color: #2c2c2c;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.mobile-menu-content .enquiry-btn:hover {
  background: #2c2c2c;
  color: white;
}

.mobile-menu-social {
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.mobile-menu-social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobile-menu-social-icons a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c2c2c;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-social-icons a:hover {
  opacity: 0.7;
}

.mobile-menu-social-icons svg {
  width: 24px;
  height: 24px;
  fill: #2c2c2c;
}

.menu-overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay-bg.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: auto;
  }
  
  .hero-video {
    object-fit: contain;
    height: auto;
    width: 100%;
    position: relative;
    margin-top: 4rem;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.825rem;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8rem;
  @media screen and (max-width: 768px) {
    padding: 1rem 1.5rem;
  }
}

.hero-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Products Highlight Section */
.products-section {
  padding: 4rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0;
  position: relative;
  max-width: 100%;
}

.products-title {
  padding-left: 0;
}

.products-nav {
  padding-right: 0;
}

.products-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c2c2c;
}

.products-nav {
  display: flex;
  gap: 0;
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.nav-arrow:hover {
  color: #8B7355;
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.products-carousel {
  padding: 20px 0;
}

.products-carousel .slick-list {
  margin: 0 -40px;
}

.product-highlight-item {
  padding: 0 40px;
}

.product-item {
  min-width: 280px;
}

/* Hide default Slick arrows */
.products-highlight-carousel .slick-arrow {
  display: none !important;
}

/* Products Highlight Arrow Styles */
.products-highlight-prev,
.products-highlight-next {
  position: static !important;
  transform: none !important;
}

.products-highlight-prev.slick-disabled,
.products-highlight-next.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product-item img {
  width: 100%;
  height: auto;
  display: block;
}

.product-item small {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #2c2c2c;
  font-family: 'Bodoni Moda', serif;
  text-transform: uppercase;
}

.product-item a {
  text-decoration: none;
  color: inherit;
}

/* Carousel Progression Line */
.carousel-progression {
  padding: 0 40px;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.carousel-progression-line {
  width: 100%;
  max-width: 800px;
  height: 2px;
  background-color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

.carousel-progression-active {
  height: 3px;
  background-color: #2c2c2c;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.3s ease;
  min-width: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 10px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.gallery-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.gallery-address {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.gallery-image {
  width: 100%;
  height: 600px;
  max-width: 1360px;
  object-fit: cover;
  border-radius: 4px;
  @media screen and (max-width: 768px) {
    height: 17rem;
  }
}

.fine-art-section {
  padding: 2rem 40px;
  margin: 2rem 0;
  margin-top: -8rem;
}

.fine-art-image {
  width: 100%;
  height: 1300px;
  max-width: 1360px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  @media screen and (max-width: 768px) {
    height: 22rem;
    margin-bottom: 8rem;
  }
}

/* Press Section */
.press-section {
  padding: 4rem 10px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -16rem;
}

.press-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 3rem;
  @media screen and (max-width: 768px) {
    margin-bottom: 0;
  }
}

.press-coverage {
  max-width: 1200px;
  margin: 0 auto;
}

.press-item {
  margin-bottom: 4rem;
  transition: all 0.3s ease;
}

.press-item:hover {
  transform: translateY(-2px);
}

.press-images {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.magazine-cover-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  max-width: 380px;
  flex: 1.4;
}

.mag-cover {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.magazine-cover-container:hover .mag-cover {
  transform: scale(1.02);
}

.cover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  color: black;
  padding: 1.5rem;
  text-align: center;
}

.magazine-name {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.issue-date {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 300;
}

.article-screenshot-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  max-width: 320px;
  flex: 1;
}

.mag-article {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.article-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.article-screenshot-container:hover .article-overlay {
  opacity: 1;
}

.article-screenshot-container:hover .mag-article {
  transform: scale(1.02);
}

.article-overlay i {
  color: white;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.article-overlay:hover i {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.press-view-all {
  text-align: center;
  margin-top: 3rem;
}

.press-view-all-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 2px solid #8B7355;
  color: #8B7355;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.press-view-all-btn:hover {
  background: #8B7355;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

@media (max-width: 768px) {
  .press-images {
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .magazine-cover-container,
  .article-screenshot-container {
    max-width: 48%;
    flex: 1;
  }
  
  .magazine-cover-container {
    flex: 1.2;
  }
  
  .cover-overlay {
    padding: 0.5rem;
  }
  
  .magazine-name {
    font-size: 0.7rem;
  }
  
  .issue-date {
    font-size: 0.6rem;
  }
  
  .article-overlay i {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 10px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.contact-form h2 {
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  line-height: 1.5;
}

.submit-btn {
  padding: 0.75rem 2rem;
  background: #020d48;
  color: white;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #030f5e;
}

/* Toast Notification */
.v2-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 10000;
  min-width: 300px;
  max-width: 500px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.v2-toast.v2-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.v2-toast-content {
  background: white;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-left: 4px solid #020d48;
}

.v2-toast.v2-toast-error .v2-toast-content {
  border-left-color: #dc3545;
}

.v2-toast-message {
  flex: 1;
  color: #2c2c2c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.v2-toast-close {
  background: none;
  border: none;
  color: #999;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.v2-toast-close:hover {
  color: #2c2c2c;
}

/* Responsive */
@media (max-width: 992px) {
  .header-container {
    padding: 6px 15px;
  }

  .logo {
    width: 70px;
    margin-left: 50px;
  }

  .logo-link {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide desktop nav and button on tablet and below */
  nav,
  .enquiry-btn {
    display: none;
  }

  /* Show hamburger button */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
  }

  .products-header {
    padding: 0;
  }

  .products-carousel .slick-list {
    margin: 0 -20px;
  }

  .product-highlight-item {
    padding: 0 20px;
  }

  .carousel-progression {
    padding: 0 20px;
  }

  .carousel-progression-line {
    max-width: 600px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
  }

  .logo {
    width: 60px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    font-size: 10px;
  }

  .enquiry-btn {
    padding: 4px 10px;
    font-size: 10px;
  }

  .products-title {
    font-size: 1.25rem;
  }

  .product-item {
    flex: 0 0 calc(50% - 20px);
    min-width: 200px;
  }

  .fine-art-section {
    padding: 2rem 20px;
  }
}

@media (max-width: 576px) {
  .products-header {
    padding: 0;
  }

  .products-title {
    font-size: 1.1rem;
  }

  .nav-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .products-carousel .slick-list {
    margin: 0 -10px;
  }

  .product-highlight-item {
    padding: 0 10px;
  }

  .carousel-progression {
    padding: 0 10px;
  }

  .carousel-progression-line {
    max-width: 100%;
  }

  .product-item {
    flex: 0 0 100%;
  }

  .fine-art-section {
    padding: 2rem 15px;
  }
}

/* Footer Styles */
footer {
  background-color: rgba(2, 13, 72, 0.33) !important;
  background-image: url(/assets/v2/images/waves.png);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 2rem 2rem;
}

footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

footer .footer-section {
  flex: 1;
  min-width: 200px;
}

footer .footer-section h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

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

footer .footer-section ul li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

footer .footer-section ul li:last-child {
  margin-bottom: 0;
}

footer .footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer .footer-section ul li a:hover {
  color: white;
  transform: translateX(5px);
}

footer .social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

footer .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social-icons a svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

footer .social-icons a:hover {
  color: white;
}

footer .social-icons a:hover svg {
  transform: translateY(-3px);
}

footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

@media (max-width: 1200px) {
  footer {
    padding: 5rem 2rem 2rem;
  }
  
  footer .footer-section {
    flex-basis: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 1.25rem 1.5rem;
  }
  
  footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  footer .footer-section {
    flex-basis: auto;
    text-align: left;
    min-width: auto;
  }

  footer .footer-section h3 {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
  }

  footer .footer-section ul li {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    line-height: 1.4;
  }

  footer .social-icons {
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 0.25rem;
  }

  footer .social-icons a svg {
    width: 18px;
    height: 18px;
  }

  footer .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    grid-column: 1 / -1;
  }

  footer .footer-bottom p {
    font-size: 0.7rem;
  }
}

/* Mega Menu Responsive */
@media (max-width: 992px) {
  .mega-menu {
    display: none;
  }
  
  .dropdown-menu {
    display: none;
  }
}