/* Fonts */
:root {
  --default-font: "Kedebideri", system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Kedebideri", sans-serif;
  --nav-font: "Kedebideri", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #f8fffe;
--default-color: #2d5a4a;
--heading-color: #1a3d32;
--accent-color: #22c55e;
--surface-color: #ffffff;
--contrast-color: #ffffff;
--bg-color: #f0fdf4;
--nav-color: #2d5a4a;
--nav-hover-color: #22c55e;
--nav-mobile-background-color: #ffffff;
--nav-dropdown-background-color: #f8fffe;
--nav-dropdown-color: #2d5a4a;
--nav-dropdown-hover-color: #22c55e;
--light-text: #059669;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--transition: all 0.3s ease;
}

/* Color Presets */

.light-background {
  --background-color: #fef5e7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2d1b3d;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #3d1b5c;
  --contrast-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  padding-top: 0;
}

body.has-header {
  padding-top: 120px;
}

@media (max-width: 991px) {
  body.has-header {
    padding-top: 80px;
  }
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Premium Header Design
--------------------------------------------------------------*/
.header-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #2d1b3d 0%, #3d1b5c 50%, #2d1b3d 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.header-premium.scrolled {
  background: linear-gradient(135deg, rgba(45, 27, 61, 0.98) 0%, rgba(61, 27, 92, 0.98) 50%, rgba(45, 27, 61, 0.98) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

/* Header Info Bar */
.header-info-bar {
  background: rgba(0, 0, 0, 0.3);
  padding:0;
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.header-info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.header-info-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-link i {
  color: #ff69b4;
  font-size: 14px;
}

.info-link:hover {
  color: #ff69b4;
  transform: translateY(-2px);
}

.header-info-right {
  display: flex;
  align-items: center;
}

.header-social-premium {
  display: flex;
  gap: 10px;
}

.social-premium {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-premium:hover {
  background: #ff69b4;
  border-color: #ff69b4;
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

/* Main Header */
.header-main-premium {
  background: transparent;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.header-inner-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Navigation Premium */
.nav-premium {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-menu-premium {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item-premium {
  position: relative;
}

.nav-link-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.nav-link-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(255, 20, 147, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.nav-link-underline {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-text {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nav-link-premium:hover .nav-link-text,
.nav-link-premium.active .nav-link-text {
  color: #ff69b4;
  transform: translateY(-2px);
}

.nav-link-premium:hover::before,
.nav-link-premium.active::before {
  opacity: 1;
}

.nav-link-premium:hover .nav-link-underline,
.nav-link-premium.active .nav-link-underline {
  width: 80%;
}

.nav-link-premium:hover {
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.nav-link-premium.active {
  border-color: rgba(255, 105, 180, 0.4);
  background: rgba(255, 105, 180, 0.1);
}

.nav-link-btn {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%) !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
  position: relative;
  overflow: hidden;
}

.nav-link-btn::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
  opacity: 0;
}

.nav-link-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.nav-link-btn:hover::after {
  width: 300px;
  height: 300px;
}

.nav-link-btn:hover {
  background: linear-gradient(135deg, #ff1493 0%, #c71585 100%) !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 105, 180, 0.5);
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.nav-link-btn .nav-link-text {
  color: #fff !important;
}

.nav-link-btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.nav-link-btn:hover i {
  transform: translateX(4px);
}

.nav-link-btn .nav-link-underline {
  display: none;
}

/* Mobile Menu Button */
.mobile-btn-premium {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-btn-premium:hover {
  background: rgba(255, 105, 180, 0.2);
  border-color: #ff69b4;
}

.mobile-btn-line {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-btn-premium.active .mobile-btn-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-btn-premium.active .mobile-btn-line:nth-child(2) {
  opacity: 0;
}

.mobile-btn-premium.active .mobile-btn-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Premium */
.mobile-menu-premium {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #2d1b3d 0%, #1a0d2e 100%);
  box-shadow: -5px 0 40px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  overflow-y: auto;
}

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

.mobile-menu-wrapper {
  padding: 100px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-premium {
  flex: 1;
}

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

.mobile-menu-list li {
  margin-bottom: 8px;
}

.mobile-link-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.mobile-link-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.mobile-link-premium:hover::before,
.mobile-link-premium.active::before {
  opacity: 1;
}

.mobile-link-premium:hover,
.mobile-link-premium.active {
  background: rgba(255, 105, 180, 0.15);
  color: #ff69b4;
  padding-left: 28px;
  border-left-color: #ff69b4;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.mobile-social-premium {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-item {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social-item:hover {
  background: #ff69b4;
  border-color: #ff69b4;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.mobile-menu-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(210, 105, 30, 0.1);
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 105, 30, 0.1);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

/* Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

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

/* Responsive Header */
@media (max-width: 1200px) {
  .nav-menu-premium {
    gap: 2px;
  }
  
  .nav-link-premium {
    padding: 12px 18px;
    font-size: 13px;
  }
  
  .nav-link-btn {
    padding: 12px 22px !important;
  }
}

@media (max-width: 991px) {
  .header-main-premium {
    padding: 12px 0;
  }
  
  .header-inner-premium {
    justify-content: space-between;
  }
  
  .nav-premium {
    display: none;
  }
  
  .mobile-btn-premium {
    display: flex;
  }
}

/* Old header styles removed */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 11px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li a {
    border: none;
    border-radius: 0;
    margin: 0 0.5rem;
    position: relative;
    padding: 10px 15px;
  }

  .navmenu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
  }

  .navmenu li:hover>a::after,
  .navmenu .active::after {
    width: 80%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;

    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Premium Footer Design
--------------------------------------------------------------*/
.footer-premium {
  background: linear-gradient(180deg, #2d1b3d 0%, #1a0d2e 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff69b4, transparent);
}

.footer-top-premium {
  padding: 70px 0 50px;
  position: relative;
}

.footer-grid-premium {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* Footer Brand */
.footer-brand-premium {
  max-width: 100%;
}

.footer-logo-premium {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

.footer-brand-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.footer-brand-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social-premium {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: #ff69b4;
  border-color: #ff69b4;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

/* Footer Columns */
.footer-column-premium {
  max-width: 100%;
}

.footer-title-premium {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
}

.footer-title-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: #ff69b4;
  border-radius: 2px;
}

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

.footer-list-premium li {
  margin-bottom: 14px;
}

.footer-link-premium {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.footer-link-premium::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-link-premium:hover {
  color: #ff69b4;
  padding-left: 5px;
}

.footer-link-premium:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Contact */
.footer-contact-premium {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item-premium {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item-premium i {
  color: #ff69b4;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item-premium a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item-premium a:hover {
  color: #ff69b4;
}

/* Footer Bottom */
.footer-bottom-premium {
  background: rgba(0, 0, 0, 0.3);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright-premium {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-copyright-premium strong {
  color: #ff69b4;
}

.footer-legal-premium {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.legal-link-premium {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.legal-link-premium::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ff69b4;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.legal-link-premium:hover {
  color: #ff69b4;
}

.legal-link-premium:hover::after {
  transform: scaleX(1);
}

/* Footer Responsive */
@media (max-width: 1200px) {
  .footer-grid-premium {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-column-premium:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .footer-grid-premium {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand-premium {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-top-premium {
    padding: 50px 0 40px;
  }
  
  .footer-grid-premium {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-premium {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Premium Hero/Welcome Section
--------------------------------------------------------------*/
.hero-premium {
  position: relative;
  padding: 140px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1b3d 0%, #3d1b5c 50%, #2d1b3d 100%);
}

.hero-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 105, 180, 0.5);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 30%;
  top: 60%;
  animation-delay: 2s;
  width: 6px;
  height: 6px;
}

.particle:nth-child(3) {
  left: 60%;
  top: 30%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 80%;
  top: 70%;
  animation-delay: 6s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(5) {
  left: 50%;
  top: 80%;
  animation-delay: 8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
    opacity: 1;
  }
}

.hero-content-premium {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 105, 180, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 105, 180, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  color: #ff69b4;
}

.badge-icon {
  font-size: 16px;
}

.hero-title-premium {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: -1px;
}

.title-gradient {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-premium {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
  max-width: 95%;
}

.hero-stats-premium {
  display: flex;
  gap: 50px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.hero-stat-premium {
  text-align: left;
}

.stat-number-premium {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff69b4;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Arial', sans-serif;
}

.stat-label-premium {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions-premium {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.5);
  color: #fff;
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 105, 180, 0.5);
  transform: translateY(-3px);
  color: #fff;
}

.hero-visual-premium {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  background: rgba(255, 105, 180, 0.1);
  padding: 8px;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-image-wrapper:hover .hero-image-glow {
  opacity: 1;
}

.hero-shape-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.1);
  z-index: -1;
}

.hero-shape-decoration.shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  animation: pulse 4s ease-in-out infinite;
}

.hero-shape-decoration.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  animation: pulse 5s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 24px;
  background: rgba(10, 25, 41, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 105, 180, 0.3);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

.hero-floating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 105, 180, 0.4);
  border-color: rgba(255, 105, 180, 0.6);
}

.floating-card-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.floating-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-card-content strong {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.floating-card-content span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card.card-2 {
  bottom: 20%;
  right: -5%;
  animation: floatCard 7s ease-in-out infinite 1s;
}

.hero-floating-card.card-3 {
  top: 50%;
  left: -10%;
  animation: floatCard 8s ease-in-out infinite 2s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*--------------------------------------------------------------
# Premium Features/Benefits Section
--------------------------------------------------------------*/
.features-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.features-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.3), transparent);
}

.features-header-premium {
  margin-bottom: 70px;
}

.features-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ff1493;
}

.features-badge-premium i {
  font-size: 16px;
  color: #ff69b4;
}

.features-title-premium {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.features-subtitle-premium {
  font-size: 1.2rem;
  color: rgba(10, 25, 41, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid-premium {
  margin-top: 60px;
}

.feature-card-premium {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card-premium:hover::before {
  transform: scaleX(1);
}

.feature-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
  border-color: rgba(255, 105, 180, 0.3);
}

.feature-card-highlight-premium {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
  border-color: rgba(255, 105, 180, 0.3);
}

.feature-icon-premium {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 18px;
  transition: all 0.4s ease;
}

.feature-card-premium:hover .icon-bg-premium {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-premium i {
  position: relative;
  z-index: 1;
  font-size: 32px;
  color: #ff69b4;
  transition: all 0.4s ease;
}

.feature-card-premium:hover .feature-icon-premium i {
  transform: scale(1.1);
  color: #ff1493;
}

.feature-title-premium {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description-premium {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 25, 41, 0.7);
  margin-bottom: 25px;
}

.feature-list-premium {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-premium li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(10, 25, 41, 0.8);
}

.feature-list-premium li:last-child {
  margin-bottom: 0;
}

.feature-list-premium i {
  color: #ff69b4;
  font-size: 16px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Premium Approach/Learning Path Section
--------------------------------------------------------------*/
.approach-premium {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.approach-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.approach-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
}

.approach-content-premium {
  position: relative;
  z-index: 2;
}

.approach-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #ff1493;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #ff69b4;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.approach-title-premium {
  font-size: 3rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.approach-description-premium {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.7);
  margin-bottom: 35px;
}

.approach-features-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.approach-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.approach-feature-item:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateX(5px);
}

.feature-check-premium {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.approach-feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: #2d1b3d;
}

.approach-actions-premium {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-approach-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.btn-approach-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
  color: #fff;
}

.btn-approach-primary i {
  transition: transform 0.3s ease;
}

.btn-approach-primary:hover i {
  transform: translateX(5px);
}

.btn-approach-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #fff;
  color: #2d1b3d;
  border: 2px solid rgba(255, 105, 180, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-approach-secondary:hover {
  background: rgba(255, 105, 180, 0.05);
  border-color: #ff69b4;
  transform: translateY(-3px);
  color: #2d1b3d;
}

.approach-stats-premium {
  position: relative;
  z-index: 2;
}

.stats-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card-premium {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 105, 180, 0.15);
  border-color: rgba(255, 105, 180, 0.3);
}

.stat-icon-premium {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 15px;
  color: #ff69b4;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.stat-card-premium:hover .stat-icon-premium {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.stat-content-premium {
  flex: 1;
}

.stat-number-premium {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d1b3d;
  line-height: 1;
  margin-bottom: 5px;
  font-family: 'Arial', sans-serif;
}

.stat-label-premium {
  font-size: 13px;
  color: rgba(10, 25, 41, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-card-premium {
  background: linear-gradient(135deg, #2d1b3d 0%, #3d1b5c 100%);
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
}

.testimonial-quote-premium {
  font-size: 48px;
  color: rgba(255, 105, 180, 0.2);
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text-premium {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author-premium {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author-premium strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author-premium span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/*--------------------------------------------------------------
# Premium Solutions/Courses Overview Section
--------------------------------------------------------------*/
.solutions-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.solutions-header-premium {
  margin-bottom: 80px;
}

.solutions-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ff1493;
}

.solutions-badge-premium i {
  font-size: 16px;
  color: #ff69b4;
}

.solutions-title-premium {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.solutions-subtitle-premium {
  font-size: 1.2rem;
  color: rgba(10, 25, 41, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.solutions-timeline-premium {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 60px;
}

.solution-step-premium {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 40px;
}

.solution-step-final {
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-connector-premium {
  position: absolute;
  left: -60px;
  top: 80px;
  bottom: -60px;
  width: 3px;
  background: linear-gradient(180deg, #ff69b4 0%, rgba(255, 105, 180, 0.3) 50%, transparent 100%);
  z-index: 0;
}

.solution-step-final .step-connector-premium {
  display: none;
}

.step-content-premium {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  z-index: 1;
}

.step-content-premium:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
  border-color: rgba(255, 105, 180, 0.3);
}

.step-number-premium {
  position: absolute;
  left: -80px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
  z-index: 2;
}

.step-icon-premium {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 18px;
  transition: all 0.4s ease;
}

.step-content-premium:hover .step-icon-bg {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.step-icon-premium i {
  position: relative;
  z-index: 1;
  font-size: 32px;
  color: #ff69b4;
  transition: all 0.4s ease;
}

.step-content-premium:hover .step-icon-premium i {
  transform: scale(1.1);
  color: #ff1493;
}

.step-body-premium {
  position: relative;
}

.step-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}

.step-title-premium {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d1b3d;
  margin: 0;
  line-height: 1.3;
}

.step-meta-premium {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.step-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-realtime {
  background: rgba(255, 105, 180, 0.1);
  color: #ff1493;
  border: 1px solid rgba(255, 105, 180, 0.2);
}

.badge-level {
  background: rgba(10, 25, 41, 0.1);
  color: #2d1b3d;
  border: 1px solid rgba(10, 25, 41, 0.2);
}

.badge-critical {
  background: rgba(255, 77, 77, 0.1);
  color: #cc0000;
  border: 1px solid rgba(255, 77, 77, 0.2);
}

.badge-regulatory {
  background: rgba(255, 193, 7, 0.1);
  color: #c71585;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.badge-optimization {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.badge-complete {
  background: rgba(255, 105, 180, 0.15);
  color: #ff1493;
  border: 1px solid rgba(255, 105, 180, 0.3);
}

.step-description-premium {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 25, 41, 0.7);
  margin-bottom: 25px;
}

.step-tags-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.tag-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(10, 25, 41, 0.8);
  transition: all 0.3s ease;
}

.tag-premium:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateY(-2px);
}

.tag-premium i {
  color: #ff69b4;
  font-size: 14px;
}

.step-cta-premium {
  margin-top: 25px;
}

.btn-solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.btn-solution-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
  color: #fff;
}

.btn-solution-cta i {
  transition: transform 0.3s ease;
}

.btn-solution-cta:hover i {
  transform: translateX(5px);
}

/* Approach & Solutions Responsive */
@media (max-width: 1200px) {
  .approach-title-premium {
    font-size: 2.6rem;
  }
  
  .solutions-title-premium {
    font-size: 2.8rem;
  }
  
  .solutions-timeline-premium {
    padding-left: 50px;
  }
  
  .step-number-premium {
    left: -70px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .approach-premium {
    padding: 80px 0;
  }
  
  .approach-features-premium {
    grid-template-columns: 1fr;
  }
  
  .stats-grid-premium {
    grid-template-columns: 1fr;
  }
  
  .solutions-premium {
    padding: 80px 0;
  }
  
  .solutions-timeline-premium {
    padding-left: 0;
  }
  
  .step-connector-premium {
    display: none;
  }
  
  .step-number-premium {
    position: static;
    margin-bottom: 20px;
  }
  
  .step-content-premium:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .approach-title-premium {
    font-size: 2rem;
  }
  
  .approach-description-premium {
    font-size: 1rem;
  }
  
  .approach-actions-premium {
    flex-direction: column;
  }
  
  .btn-approach-primary,
  .btn-approach-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .solutions-title-premium {
    font-size: 2rem;
  }
  
  .solutions-subtitle-premium {
    font-size: 1rem;
  }
  
  .step-content-premium {
    padding: 25px 20px;
  }
  
  .step-header-premium {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-title-premium {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Premium Technologies Section
--------------------------------------------------------------*/
.technologies-premium {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.technologies-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.technologies-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
}

.technologies-header-premium {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.technologies-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ff1493;
}

.technologies-badge-premium i {
  font-size: 16px;
  color: #ff69b4;
}

.technologies-title-premium {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.technologies-subtitle-premium {
  font-size: 1.2rem;
  color: rgba(10, 25, 41, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.technologies-grid-premium {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.technology-card-premium {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.technology-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.3);
}

.technology-featured-premium {
  border-color: rgba(255, 105, 180, 0.3);
  box-shadow: 0 15px 50px rgba(255, 105, 180, 0.15);
}

.featured-badge-premium {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.technology-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.technology-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.technology-card-premium:hover .technology-image-wrapper img {
  transform: scale(1.1);
}

.technology-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.technology-card-premium:hover .technology-overlay-premium {
  opacity: 1;
}

.overlay-icon-premium {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 105, 180, 0.9);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.technology-card-premium:hover .overlay-icon-premium {
  transform: scale(1);
}

.technology-content-premium {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.technology-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  width: fit-content;
}

.badge-fundamental {
  background: rgba(255, 193, 7, 0.1);
  color: #c71585;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.badge-advanced {
  background: rgba(255, 105, 180, 0.15);
  color: #ff1493;
  border: 1px solid rgba(255, 105, 180, 0.3);
}

.badge-complete {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.technology-title-premium {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 15px;
  line-height: 1.3;
}

.technology-description-premium {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 25, 41, 0.7);
  margin-bottom: 25px;
  flex: 1;
}

.technology-stats-premium {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tech-stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 18px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  border-radius: 12px;
  flex: 1;
  min-width: 80px;
}

.tech-stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d1b3d;
  line-height: 1;
}

.tech-stat-label {
  font-size: 11px;
  color: rgba(10, 25, 41, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.technology-link-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff69b4;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.technology-link-premium:hover {
  color: #ff1493;
  gap: 12px;
}

.technology-link-premium i {
  transition: transform 0.3s ease;
}

.technology-link-premium:hover i {
  transform: translateX(5px);
}

.technologies-cta-premium {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.cta-card-premium {
  background: linear-gradient(135deg, #2d1b3d 0%, #3d1b5c 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.cta-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
}

.cta-icon-premium {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  border-radius: 50%;
  color: #ff69b4;
  font-size: 36px;
}

.cta-title-premium {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-description-premium {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-premium {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.btn-cta-primary-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
  color: #fff;
}

.btn-cta-secondary-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary-premium:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Premium Testimonials Section
--------------------------------------------------------------*/
.testimonials-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.testimonials-header-premium {
  margin-bottom: 70px;
}

.testimonials-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ff1493;
}

.testimonials-badge-premium i {
  font-size: 16px;
  color: #ff69b4;
}

.testimonials-title-premium {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.testimonials-subtitle-premium {
  font-size: 1.2rem;
  color: rgba(10, 25, 41, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-slider-premium {
  position: relative;
}

.testimonial-card-premium-new {
  background: #fff;
  border-radius: 24px;
  padding: 40px 35px;
  height: 100%;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card-premium-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
  border-color: rgba(255, 105, 180, 0.3);
}

.testimonial-card-premium-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card-premium-new:hover::before {
  transform: scaleX(1);
}

.testimonial-quote-premium-new {
  font-size: 48px;
  color: rgba(255, 105, 180, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-rating-premium-new {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating-premium-new i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text-premium-new {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.8);
  margin-bottom: 30px;
  flex: 1;
  font-style: italic;
}

.testimonial-author-premium-new {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.author-avatar-premium {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 105, 180, 0.2);
  flex-shrink: 0;
}

.author-avatar-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info-premium {
  flex: 1;
}

.author-name-premium {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d1b3d;
  margin: 0 0 5px 0;
}

.author-role-premium {
  font-size: 0.9rem;
  color: rgba(10, 25, 41, 0.6);
  font-weight: 500;
}

.testimonials-slider-premium .swiper-button-next,
.testimonials-slider-premium .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid rgba(255, 105, 180, 0.2);
  border-radius: 50%;
  color: #ff69b4;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}

.testimonials-slider-premium .swiper-button-next:hover,
.testimonials-slider-premium .swiper-button-prev:hover {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
  transform: scale(1.1);
}

.testimonials-slider-premium .swiper-button-next::after,
.testimonials-slider-premium .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

.testimonials-slider-premium .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.testimonials-slider-premium .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 105, 180, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-slider-premium .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  width: 30px;
  border-radius: 6px;
}

/* Technologies & Testimonials Responsive */
@media (max-width: 1200px) {
  .technologies-title-premium,
  .testimonials-title-premium {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .technologies-premium,
  .testimonials-premium {
    padding: 80px 0;
  }
  
  .cta-card-premium {
    padding: 40px 30px;
  }
  
  .cta-title-premium {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .technologies-title-premium,
  .testimonials-title-premium {
    font-size: 2rem;
  }
  
  .technologies-subtitle-premium,
  .testimonials-subtitle-premium {
    font-size: 1rem;
  }
  
  .technology-content-premium {
    padding: 25px 20px;
  }
  
  .technology-stats-premium {
    flex-direction: column;
  }
  
  .tech-stat-item {
    width: 100%;
  }
  
  .cta-buttons-premium {
    flex-direction: column;
  }
  
  .btn-cta-primary-premium,
  .btn-cta-secondary-premium {
    width: 100%;
    justify-content: center;
  }
  
  .testimonial-card-premium-new {
    padding: 30px 25px;
  }
}

/*--------------------------------------------------------------
# Premium About Page Styles
--------------------------------------------------------------*/
.about-hero-premium {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.about-hero-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
}

.about-hero-content-premium {
  position: relative;
  z-index: 2;
}

.about-hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #ff1493;
}

.about-hero-title-premium {
  font-size: 3rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.about-hero-description-premium {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.7);
  margin-bottom: 35px;
}

.about-hero-stats-premium {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.about-stat-item-premium {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about-stat-item-premium:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateY(-5px);
}

.about-stat-icon-premium {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 12px;
  color: #ff69b4;
  font-size: 24px;
  flex-shrink: 0;
}

.about-stat-number-premium {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d1b3d;
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat-label-premium {
  font-size: 13px;
  color: rgba(10, 25, 41, 0.6);
  font-weight: 500;
}

.about-hero-image-premium {
  position: relative;
  z-index: 2;
}

.about-image-wrapper-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper-premium img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.mission-values-premium {
  padding: 100px 0;
  background: #fff;
}

.mission-header-premium {
  margin-bottom: 70px;
}

.mission-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ff1493;
}

.mission-title-premium {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.mission-card-premium {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.mission-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
  border-color: rgba(255, 105, 180, 0.3);
}

.mission-icon-premium {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.mission-card-premium:hover .mission-icon-bg {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.mission-icon-premium i {
  position: relative;
  z-index: 1;
  font-size: 36px;
  color: #ff69b4;
}

.mission-card-title-premium {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 15px;
}

.mission-card-description-premium {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 25, 41, 0.7);
}

.why-choose-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.why-choose-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ff1493;
}

.why-choose-title-premium {
  font-size: 3rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.why-choose-description-premium {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.7);
  margin-bottom: 35px;
}

.why-choose-list-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item-premium {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.why-item-premium:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateX(10px);
}

.why-check-premium {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.why-title-premium {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 8px;
}

.why-text-premium {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(10, 25, 41, 0.7);
  margin: 0;
}

.why-choose-image-premium {
  position: relative;
}

.why-image-wrapper-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.why-image-wrapper-premium img {
  width: 100%;
  height: auto;
  display: block;
}

.why-image-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.our-approach-premium {
  padding: 100px 0;
  background: #fff;
}

.approach-header-premium {
  margin-bottom: 70px;
}

.approach-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ff1493;
}

.approach-title-premium {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.approach-subtitle-premium {
  font-size: 1.2rem;
  color: rgba(10, 25, 41, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.approach-card-premium {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.approach-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
  border-color: rgba(255, 105, 180, 0.3);
}

.approach-number-premium {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.approach-icon-premium {
  width: 70px;
  height: 70px;
  margin: 20px 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 18px;
  color: #ff69b4;
  font-size: 32px;
  transition: all 0.4s ease;
}

.approach-card-premium:hover .approach-icon-premium {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.approach-card-title-premium {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 15px;
}

.approach-card-description-premium {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 25, 41, 0.7);
}

.about-cta-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-cta-card-premium {
  background: linear-gradient(135deg, #2d1b3d 0%, #3d1b5c 100%);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.about-cta-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
}

.cta-icon-premium {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  border-radius: 50%;
  color: #ff69b4;
  font-size: 36px;
}

.cta-title-premium {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-description-premium {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-premium {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Premium Contact Page Styles
--------------------------------------------------------------*/
.contact-hero-premium {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.contact-hero-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 70%);
}

.contact-hero-content-premium {
  position: relative;
  z-index: 2;
}

.contact-hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #ff1493;
}

.contact-hero-title-premium {
  font-size: 3rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.contact-hero-description-premium {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.7);
}

/*--------------------------------------------------------------
# Premium FAQ Page Styles
--------------------------------------------------------------*/
.faq-hero-premium {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.faq-hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #ff1493;
}

.faq-hero-title-premium {
  font-size: 3rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
}

/*--------------------------------------------------------------
# Premium Policy Pages Styles (Privacy, Cookie, Terms)
--------------------------------------------------------------*/
.policy-hero-premium {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.policy-hero-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.policy-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 70%);
}

.policy-hero-content-premium {
  position: relative;
  z-index: 2;
}

.policy-hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #ff1493;
}

.policy-hero-title-premium {
  font-size: 3rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.policy-hero-description-premium {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.7);
  margin-bottom: 15px;
}

.policy-last-updated-premium {
  font-size: 0.95rem;
  color: rgba(10, 25, 41, 0.6);
  font-style: italic;
}

.policy-content-premium {
  padding: 80px 0;
  background: #fff;
}

.policy-content-wrapper-premium {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-section-premium {
  background: #fff;
  border-radius: 20px;
  padding: 40px 35px;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.3s ease;
}

.policy-section-premium:hover {
  border-color: rgba(255, 105, 180, 0.3);
  box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
  transform: translateY(-5px);
}

.policy-section-header-premium {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 105, 180, 0.1);
}

.policy-section-icon-premium {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.policy-section-premium:hover .policy-icon-bg {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.policy-section-icon-premium i {
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: #ff69b4;
}

.policy-section-title-premium {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d1b3d;
  margin: 0;
  line-height: 1.3;
}

.policy-section-content-premium {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.7);
}

.policy-section-content-premium p {
  margin-bottom: 15px;
}

.policy-list-premium {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list-premium li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 25, 41, 0.7);
}

.policy-list-premium li i {
  color: #ff69b4;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.policy-note-premium {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 12px;
  margin-top: 25px;
}

.policy-note-premium i {
  color: #ff69b4;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-note-premium p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-contact-info-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.contact-info-item-premium {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item-premium:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateX(5px);
}

.contact-info-item-premium i {
  color: #ff69b4;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item-premium strong {
  display: block;
  color: #2d1b3d;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-item-premium a {
  color: #ff69b4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-item-premium a:hover {
  color: #ff1493;
  text-decoration: underline;
}

.cookie-types-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.cookie-type-card-premium {
  background: rgba(255, 105, 180, 0.05);
  border: 2px solid rgba(255, 105, 180, 0.1);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.cookie-type-card-premium:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.cookie-type-icon-premium {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 50%;
  color: #ff69b4;
  font-size: 32px;
  transition: all 0.3s ease;
}

.cookie-type-card-premium:hover .cookie-type-icon-premium {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.cookie-type-card-premium h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 12px;
}

.cookie-type-card-premium p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(10, 25, 41, 0.7);
  margin: 0;
}

/*--------------------------------------------------------------
# Premium Thanks Page Styles
--------------------------------------------------------------*/
.thanks-hero-premium {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.thanks-hero-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.thanks-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.08) 0%, transparent 70%);
}

.thanks-content-premium {
  position: relative;
  z-index: 2;
}

.thanks-icon-wrapper-premium {
  margin-bottom: 30px;
}

.thanks-icon-premium {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 50%;
  color: #ff69b4;
  font-size: 60px;
  box-shadow: 0 15px 50px rgba(255, 105, 180, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
  }
}

.thanks-title-premium {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1b3d;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.thanks-description-premium {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(10, 25, 41, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.thanks-info-premium {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.thanks-info-wrapper-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.thanks-info-card-premium {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.thanks-info-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
  border-color: rgba(255, 105, 180, 0.3);
}

.thanks-info-icon-premium {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.thanks-info-card-premium:hover .thanks-icon-bg {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.thanks-info-icon-premium i {
  position: relative;
  z-index: 1;
  font-size: 36px;
  color: #ff69b4;
}

.thanks-info-title-premium {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 15px;
}

.thanks-info-description-premium {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 25, 41, 0.7);
  margin: 0;
}

.thanks-cta-premium {
  padding: 80px 0;
  background: #fff;
}

.thanks-cta-content-premium {
  background: linear-gradient(135deg, #2d1b3d 0%, #3d1b5c 100%);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.thanks-cta-content-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
}

.thanks-cta-title-premium {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.thanks-cta-description-premium {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-cta-buttons-premium {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Policy & Thanks Responsive */
@media (max-width: 991px) {
  .policy-hero-premium,
  .thanks-hero-premium {
    padding: 80px 0 60px;
  }
  
  .policy-content-premium,
  .thanks-info-premium,
  .thanks-cta-premium {
    padding: 60px 0;
  }
  
  .cookie-types-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .policy-hero-title-premium,
  .thanks-title-premium {
    font-size: 2rem;
  }
  
  .policy-section-title-premium {
    font-size: 1.5rem;
  }
  
  .policy-section-premium {
    padding: 30px 25px;
  }
  
  .policy-section-header-premium {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .thanks-icon-premium {
    width: 100px;
    height: 100px;
    font-size: 50px;
  }
  
  .thanks-info-wrapper-premium {
    grid-template-columns: 1fr;
  }
  
  .thanks-cta-title-premium {
    font-size: 1.8rem;
  }
  
  .thanks-cta-buttons-premium {
    flex-direction: column;
  }
  
  .btn-cta-primary-premium,
  .btn-cta-secondary-premium {
    width: 100%;
    justify-content: center;
  }
}

/* About, Contact, FAQ Responsive */
@media (max-width: 991px) {
  .about-hero-premium,
  .contact-hero-premium,
  .faq-hero-premium {
    padding: 80px 0 60px;
  }
  
  .mission-values-premium,
  .why-choose-premium,
  .our-approach-premium,
  .about-cta-premium {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .about-hero-title-premium,
  .contact-hero-title-premium,
  .faq-hero-title-premium {
    font-size: 2rem;
  }
  
  .mission-title-premium,
  .why-choose-title-premium,
  .approach-title-premium {
    font-size: 2rem;
  }
  
  .about-hero-stats-premium {
    flex-direction: column;
  }
  
  .about-stat-item-premium {
    width: 100%;
  }
  
  .cta-title-premium {
    font-size: 1.8rem;
  }
  
  .cta-buttons-premium {
    flex-direction: column;
  }
  
  .btn-cta-primary-premium,
  .btn-cta-secondary-premium {
    width: 100%;
    justify-content: center;
  }
}

/* Features Responsive */
@media (max-width: 1200px) {
  .hero-title-premium {
    font-size: 3.2rem;
  }
  
  .features-title-premium {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .hero-premium {
    padding: 120px 0 80px;
    min-height: auto;
  }
  
  .hero-title-premium {
    font-size: 2.5rem;
  }
  
  .hero-description-premium {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .hero-stats-premium {
    gap: 30px;
  }
  
  .stat-number-premium {
    font-size: 2.2rem;
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .features-premium {
    padding: 80px 0;
  }
  
  .features-title-premium {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .hero-title-premium {
    font-size: 2rem;
  }
  
  .hero-description-premium {
    font-size: 1rem;
  }
  
  .hero-stats-premium {
    flex-direction: column;
    gap: 25px;
  }
  
  .hero-actions-premium {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .features-title-premium {
    font-size: 2rem;
  }
  
  .features-subtitle-premium {
    font-size: 1rem;
  }
  
  .feature-card-premium {
    padding: 30px 25px;
  }
}

/* Dark theme for policy pages main content */
.policy-page .about.section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.policy-page .about.section h2,
.policy-page .about.section h3,
.policy-page .about.section h4,
.policy-page .about.section h5,
.policy-page .about.section h6 {
  color: #ffffff;
}

.policy-page .about.section p {
  color: #e0e0e0;
}

.policy-page .about.section .section-title h2 {
  color: #ffffff;
}

.policy-page .about.section .section-title p {
  color: #e0e0e0;
}

.policy-page .about.section .content h3 {
  color: #ffffff;
  border-bottom: 2px solid #4b0082;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.policy-page .about.section .content p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-page .about.section .content ul {
  color: #e0e0e0;
}

.policy-page .about.section .content li {
  color: #e0e0e0;
  margin-bottom: 8px;
}

/* Ensure footer stays white on policy pages */
.policy-page .footer {
  color: #ffffff !important;
  background-color: var(--heading-color);
}

.policy-page .footer * {
  color: #ffffff !important;
}

.policy-page .footer h3,
.policy-page .footer h4 {
  color: #ffffff !important;
}

.policy-page .footer p {
  color: #ffffff !important;
}

.policy-page .footer a {
  color: #ffffff !important;
}

.policy-page .footer .footer-links ul a {
  color: #ffffff !important;
}

.policy-page .footer .footer-links ul a:hover {
  color: var(--accent-color) !important;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ffffff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: #ffffff;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #ffffff;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #ffffff;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.section {
  color: var(--contrast-color);
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section - Modern Design
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section - New Design
--------------------------------------------------------------*/
.welcome-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--heading-color) 0%, #4b0082 100%);
  padding: 100px 0;
}

.welcome-background-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.welcome-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(210, 105, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
  opacity: 0.5;
}

.welcome-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.min-vh-90 {
  min-height: 90vh;
}

.welcome-content-new {
  position: relative;
  z-index: 2;
  color: var(--contrast-color);
}

.welcome-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--contrast-color);
}

.hero-badge-new i {
  font-size: 18px;
  color: var(--accent-color);
}

.welcome-title-new {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--contrast-color);
}

.title-highlight {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-description-new {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 90%;
}

.welcome-stats-new {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.welcome-stat-item {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon-welcome {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--contrast-color);
  background: linear-gradient(45deg, var(--accent-color), #c71585);
  transition: var(--transition);
}

.welcome-stat-item:hover .stat-icon-welcome {
  transform: scale(1.1);
}

.stat-text-welcome {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.4;
}

.welcome-actions-new {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-welcome-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
  color: var(--contrast-color);
}

.btn-hero-primary i {
  transition: var(--transition);
}

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

.btn-welcome-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--contrast-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: var(--contrast-color);
}

.welcome-visual-new {
  position: relative;
  z-index: 2;
}

.welcome-image-wrapper-new {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-image-main {
  position: relative;
  overflow: hidden;
}

.hero-image-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.hero-image-wrapper-new:hover .hero-image-main img {
  transform: scale(1.05);
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.welcome-floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  animation: floatElement 3s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.element-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1s;
}

.element-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.element-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.element-icon-box i {
  font-size: 24px;
  color: var(--contrast-color);
}

.element-text-box {
  display: flex;
  flex-direction: column;
}

.element-text-box strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 3px;
}

.element-text-box span {
  font-size: 13px;
  color: var(--light-text);
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 500px;
}


.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  color: white;
}

.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary-modern:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff69b4;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 30%;
  left: -15%;
  animation-delay: 1.5s;
}

.floating-card.card-3 {
  bottom: 30%;
  right: -10%;
  animation-delay: 3s;
}

.floating-card.card-4 {
  bottom: 10%;
  left: -15%;
  animation-delay: 4.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.card-1 .card-icon { background: linear-gradient(45deg, #ff6b6b, #ee5a24); }
.card-2 .card-icon { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
.card-3 .card-icon { background: linear-gradient(45deg, #45b7d1, #96c93d); }
.card-4 .card-icon { background: linear-gradient(45deg, #f093fb, #f5576c); }

.card-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #333;
}

.card-content p {
  font-size: 12px;
  margin: 0;
  color: #666;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .floating-card {
    position: static;
    margin: 16px auto;
    max-width: 200px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
  transform: translateX(6px);
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Features Section - New Design
--------------------------------------------------------------*/
.benefits {
  padding: 100px 0;
  background: var(--surface-color);
}

.benefits-header {
  margin-bottom: 60px;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(210, 105, 30, 0.1);
  border: 1px solid rgba(210, 105, 30, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.features-badge i {
  font-size: 18px;
}

.benefits-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.benefits-subtitle {
  font-size: 1.15rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-grid {
  margin-top: 50px;
}

.feature-card-new {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid rgba(210, 105, 30, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #ff1493);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(210, 105, 30, 0.15);
  border-color: var(--accent-color);
}

.feature-card-new:hover::before {
  transform: scaleX(1);
}

.feature-card-highlight {
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.05), rgba(255, 140, 66, 0.05));
  border-color: var(--accent-color);
}

.feature-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.feature-icon-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.1), rgba(255, 140, 66, 0.1));
  border-radius: 20px;
  transform: rotate(-5deg);
  transition: var(--transition);
}

.feature-card-new:hover .feature-icon-bg {
  transform: rotate(5deg) scale(1.1);
}

.feature-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
  transition: var(--transition);
  z-index: 1;
}

.feature-card-new:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
}

.feature-title-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description-new {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 25px;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--default-color);
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Feature Details Section - New Design
--------------------------------------------------------------*/
.feature-details-section {
  padding: 120px 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.feature-details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(210, 105, 30, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-header-modern {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
}

.section-badge-modern .badge-icon {
  font-size: 16px;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description-modern {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 800px;
  margin: 0 auto;
}

.techniques-grid-details {
  margin-bottom: 60px;
}

.feature-detail-card {
  background: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.feature-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(210, 105, 30, 0.15);
  border-color: rgba(210, 105, 30, 0.3);
}

.feature-detail-featured {
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.05), rgba(255, 140, 66, 0.05));
  border-color: var(--accent-color);
}

.feature-detail-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.feature-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.feature-detail-card:hover .feature-detail-image img {
  transform: scale(1.1);
}

.feature-detail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.8), rgba(255, 140, 66, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.feature-detail-card:hover .feature-detail-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-detail-content {
  padding: 35px;
}

.feature-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(210, 105, 30, 0.1);
  border: 1px solid rgba(210, 105, 30, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-detail-badge i {
  font-size: 14px;
}

.feature-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-detail-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 25px;
}

.feature-detail-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(210, 105, 30, 0.1);
  border-bottom: 1px solid rgba(210, 105, 30, 0.1);
}

.feature-detail-stats .stat {
  text-align: center;
  flex: 1;
}

.feature-detail-stats .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.feature-detail-stats .stat-label {
  font-size: 12px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.feature-detail-link:hover {
  gap: 15px;
  color: var(--heading-color);
}

.feature-detail-link i {
  transition: var(--transition);
}

.feature-detail-link:hover i {
  transform: translateX(5px);
}

.feature-card-modern {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-overlay {
  opacity: 1;
}

.feature-card-modern:hover .feature-image {
  transform: scale(1.1);
}

.feature-overlay .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  backdrop-filter: blur(10px);
}

.feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-badge i {
  font-size: 14px;
}

.feature-card-body {
  padding: 32px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2c3e50;
  line-height: 1.3;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 24px;
}

.feature-benefits {
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 14px;
  color: #495057;
  font-weight: 500;
}

.feature-card-footer {
  padding: 0 32px 32px;
}

.btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-feature .btn-icon {
  transition: transform 0.3s ease;
}

.btn-feature:hover .btn-icon {
  transform: translateX(4px);
}

.cta-section-modern {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .feature-details-section {
    padding: 60px 0;
  }
  
  .section-title-modern {
    font-size: 2.2rem;
  }
  
  .section-description-modern {
    font-size: 1.1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .feature-card-body {
    padding: 24px;
  }
  
  .feature-card-footer {
    padding: 0 24px 24px;
  }
  
  .cta-section-modern {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
/*--------------------------------------------------------------
# Testimonials Section - New Design
--------------------------------------------------------------*/
.testimonials {
  padding: 120px 0;
  background: var(--bg-color);
}

.reviews-header {
  margin-bottom: 60px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(210, 105, 30, 0.1);
  border: 1px solid rgba(210, 105, 30, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.testimonials-badge i {
  font-size: 18px;
}

.reviews-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.reviews-subtitle {
  font-size: 1.15rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonial-card-new {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(210, 105, 30, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #ff1493);
  transform: scaleX(0);
  transition: var(--transition);
}

.testimonial-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(210, 105, 30, 0.15);
  border-color: var(--accent-color);
}

.testimonial-card-new:hover::before {
  transform: scaleX(1);
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  color: rgba(210, 105, 30, 0.1);
  line-height: 1;
  z-index: 0;
}

.testimonial-rating-new {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-rating-new i {
  font-size: 18px;
  color: #ff69b4;
}

.testimonial-text-new {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author-new {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.author-role {
  font-size: 14px;
  color: var(--light-text);
  margin: 0;
}

.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card {
  background-color: var(--background-color);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--contrast-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--default-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Culinary Journey Section
--------------------------------------------------------------*/
.courses-overview {
  padding: 120px 0;
  position: relative;
  background: var(--bg-color);
}

.courses-header {
  margin-bottom: 80px;
}

.courses-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(210, 105, 30, 0.1);
  border: 1px solid rgba(210, 105, 30, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.journey-badge i {
  font-size: 18px;
}

.courses-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.courses-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.courses-path {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.courses-phase {
  margin-bottom: 50px;
  position: relative;
}

.journey-phase::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 100px;
  bottom: -50px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), transparent);
  z-index: 0;
}

.journey-phase:last-child::before {
  display: none;
}

.phase-content {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  margin-left: 80px;
}

.journey-phase:hover .phase-content {
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(210, 105, 30, 0.15);
  border-color: rgba(210, 105, 30, 0.3);
}

.journey-phase-final .phase-content {
  background: linear-gradient(135deg, var(--heading-color), #c71585);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.phase-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 25px;
}

.phase-number {
  position: absolute;
  left: -80px;
  top: 0;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(210, 105, 30, 0.15);
  line-height: 1;
  font-family: var(--heading-font);
}

.phase-icon-wrapper {
  flex-shrink: 0;
}

.phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
  transition: var(--transition);
}

.journey-phase:hover .phase-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
}

.journey-phase-final .phase-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.phase-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.phase-title-section {
  flex: 1;
}

.phase-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.2;
}

.journey-phase-final .phase-title {
  color: var(--contrast-color);
}

.phase-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.phase-duration,
.phase-level {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  background: rgba(210, 105, 30, 0.1);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
}

.journey-phase-final .phase-duration,
.journey-phase-final .phase-level {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
}

.phase-duration i {
  font-size: 14px;
}

.phase-body {
  margin-top: 20px;
}

.phase-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 25px;
}

.journey-phase-final .phase-description {
  color: rgba(255, 255, 255, 0.9);
}

.phase-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(210, 105, 30, 0.08);
  border: 1px solid rgba(210, 105, 30, 0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  transition: var(--transition);
}

.skill-tag:hover {
  background: rgba(210, 105, 30, 0.15);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.journey-phase-final .skill-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--contrast-color);
}

.skill-tag i {
  font-size: 16px;
  color: var(--accent-color);
}

.journey-phase-final .skill-tag i {
  color: var(--contrast-color);
}

.phase-cta {
  margin-top: 30px;
}

.btn-courses-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.btn-journey-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
  color: var(--contrast-color);
}

.btn-journey-cta i {
  transition: var(--transition);
}

.btn-journey-cta:hover i {
  transform: translateX(5px);
}

.journey-timeline {
  position: relative;
}

.journey-step {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), #ff1493);
  opacity: 0;
  transition: var(--transition);
}

.journey-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(210, 105, 30, 0.2);
  border-color: var(--accent-color);
}

.journey-step:hover::before {
  opacity: 1;
}

.journey-step-featured {
  background: linear-gradient(135deg, var(--heading-color), #c71585);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.journey-step-featured::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(210, 105, 30, 0.1);
  line-height: 1;
  font-family: var(--heading-font);
}

.journey-step-featured .step-number {
  color: rgba(255, 255, 255, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(210, 105, 30, 0.3);
}

.journey-step:hover .step-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

.journey-step-featured .step-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.step-icon i {
  font-size: 36px;
  color: var(--contrast-color);
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.journey-step-featured .step-content h3 {
  color: var(--contrast-color);
}

.step-content p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.7;
}

.journey-step-featured .step-content p {
  color: rgba(255, 255, 255, 0.9);
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.step-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 15px;
}

.journey-step-featured .step-features li {
  color: rgba(255, 255, 255, 0.9);
}

.step-features li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.journey-step-featured .step-features li i {
  color: var(--contrast-color);
}

.step-duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(210, 105, 30, 0.1);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 10px;
}

.journey-step-featured .step-duration {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
}

.step-duration i {
  font-size: 16px;
}

/* Journey CTA Card */
.journey-cta-card {
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: var(--contrast-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(210, 105, 30, 0.3);
  transition: var(--transition);
}

.journey-cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(210, 105, 30, 0.4);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.cta-icon i {
  font-size: 40px;
  color: var(--contrast-color);
}

.journey-cta-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.journey-cta-card p {
  font-size: 16px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.journey-cta-card .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  margin-bottom: 25px;
}

.journey-cta-card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: var(--heading-color);
  color: var(--contrast-color);
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
  font-size: 18px;
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Pricing Section (Legacy - can be removed)
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  ;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--surface-color), rgba(59, 130, 246, 0.02));
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  transition: var(--transition);
}

.faq-question:hover h3 {
  color: var(--accent-color);
}

.faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--surface-color);
}

.faq-answer p {
  margin-bottom: 15px;
  color: var(--default-color);
  line-height: 1.6;
}

.faq-answer ul {
  margin: 0 0 15px 0;
  padding-left: 0;
  list-style: none;
}

.faq-answer ul li {
  margin-bottom: 8px;
  color: var(--default-color);
  position: relative;
  padding-left: 20px;
}

.faq-answer ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-answer strong {
  color: var(--heading-color);
  font-weight: 600;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  color: var(--contrast-color);
}

.faq-item.active .faq-question h3 {
  color: var(--contrast-color);
}

.faq-item.active .faq-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
}

.faq-item.active .faq-answer {
  padding: 0 30px 30px 30px;
}

/* Comparison Grid for FAQ Item 5 */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.comparison-item {
  background: rgba(59, 130, 246, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.comparison-item h4 {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.comparison-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-item ul li {
  padding: 8px 0;
  color: var(--default-color);
  position: relative;
  padding-left: 20px;
}

.comparison-item ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 18px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 35px;
  color: var(--contrast-color);
}

.contact-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact-content p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: transparent;
}

.contact-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
  background: var(--surface-color);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.form-header p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.modern-contact-form .form-group {
  margin-bottom: 25px;
}

.modern-contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  font-size: 16px;
  transition: var(--transition);
  background: var(--surface-color);
  color: var(--default-color);
}

.modern-contact-form .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form .form-control::placeholder {
  color: var(--light-text);
}

.modern-contact-form select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.modern-contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Styling */
.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Form Messages */
.form-messages {
  margin-bottom: 30px;
}

.form-messages .loading,
.form-messages .error-message,
.form-messages .sent-message {
  display: none;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-messages .loading {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-messages .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-messages .sent-message {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Submit Button */
.modern-contact-form .btn {
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  border: none;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.modern-contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #1d4ed8, var(--accent-color));
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--heading-color), var(--default-color));
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cta-buttons .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.cta-buttons .btn-outline-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

.cta-buttons .btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .form-header h3 {
    font-size: 24px;
  }
  
  .contact-info-card {
    padding: 30px 20px;
  }
  
  .contact-cta {
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.about_elem {
  margin-bottom: 2rem;
}


.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px solid var(--bg-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #999;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--accent-color);
}

.swiper-pagination.hidden {
  display: none;
}

.swiper-pagination .swiper-pagination-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
  font-size: 20px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
  color: var(--accent-color);
}

.testimonial-img {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Growth Section
--------------------------------------------------------------*/
.learning-path {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.learning-path-background {
  background: linear-gradient(135deg, #c71585 0%, #4b0082 50%, #c71585 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  padding: 100px 0;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.growth-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(210, 105, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.min-vh-75 {
  min-height: 75vh;
}

.learning-path-content {
  position: relative;
  z-index: 2;
  color: var(--contrast-color);
}

.learning-path-subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.subtitle-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.subtitle-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
}

.learning-path-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--contrast-color);
}

.title-gradient {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.learning-path-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 90%;
}

.learning-path-features {
  margin-bottom: 40px;
}

.feature-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.feature-icon {
  color: var(--accent-color);
  font-size: 18px;
}

.feature-box span {
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
}

.learning-path-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
  color: var(--contrast-color);
}

.btn-primary-custom i {
  transition: var(--transition);
}

.btn-primary-custom:hover i {
  transform: translateX(5px);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--contrast-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: var(--contrast-color);
}

/* Stats Grid */
.learning-path-stats-wrapper {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card-1 { animation-delay: 0s; }
.stat-card-2 { animation-delay: 0.1s; }
.stat-card-3 { animation-delay: 0.2s; }
.stat-card-4 { animation-delay: 0.3s; }

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(210, 105, 30, 0.3);
}

.stat-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.stat-info {
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Testimonial */
.learning-path-testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 35px;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.learning-path-content {
  position: relative;
  z-index: 1;
}

/* Growth Badge */
.growth-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.growth-badge i {
  font-size: 16px;
}

/* Growth Title */
.learning-path-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--contrast-color);
}

.growth-title .highlight {
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.growth-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 2px;
}

/* Growth Description */
.learning-path-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Growth Stats */
.growth-stats {
  margin-bottom: 40px;
}

.stat-item {
  text-align: left;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  color: var(--contrast-color);
}

/* Growth Actions */
.learning-path-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.growth-actions .btn {
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.growth-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.growth-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #1d4ed8, var(--accent-color));
}

.growth-actions .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.growth-actions .btn-outline-primary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* Growth Visual */
.growth-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-grid {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
  width: 180px;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 20px rgba(210, 105, 30, 0.4);
}

.feature-card .card-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.feature-card.card-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.feature-card.card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.feature-card.card-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.feature-card.card-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

/* Central Element */
.central-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.central-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 40px rgba(210, 105, 30, 0.5);
  animation: pulse 2s infinite;
}

.central-icon i {
  font-size: 48px;
  color: var(--contrast-color);
}

.central-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .learning-path {
    padding: 80px 0;
  }
  
  .learning-path-title {
    font-size: 2.5rem;
  }
  
  .growth-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .learning-path-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .growth-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .growth-visual {
    min-height: 400px;
    margin-top: 50px;
  }
  
  .visual-grid {
    height: 400px;
    max-width: 400px;
  }
  
  .feature-card {
    width: 150px;
    padding: 20px;
  }
  
  .feature-card .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-card .card-icon i {
    font-size: 24px;
  }
  
  .central-icon {
    width: 80px;
    height: 80px;
  }
  
  .central-icon i {
    font-size: 40px;
  }
  
  .central-text {
    font-size: 16px;
  }
  
  .courses-overview {
    padding: 60px 0;
  }
  
  .journey-step {
    margin-bottom: 30px;
  }
  
  .step-number {
    font-size: 36px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-icon i {
    font-size: 28px;
  }
  
  .step-content h3 {
    font-size: 20px;
  }
  
  .journey-cta-card {
    margin-top: 30px;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .cta-icon i {
    font-size: 32px;
  }
  
  .journey-cta-card h3 {
    font-size: 22px;
  }
  
  /* New Growth Section Responsive */
  .learning-path-background {
    padding: 60px 0;
  }
  
  .learning-path-title {
    font-size: 2.2rem;
  }
  
  .learning-path-description {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .feature-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .learning-path-actions {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
  
  /* New Culinary Journey Responsive */
  .courses-overview {
    padding: 60px 0;
  }
  
  .courses-title {
    font-size: 2rem;
  }
  
  .courses-subtitle {
    font-size: 1rem;
  }
  
  .journey-phase::before {
    display: none;
  }
  
  .phase-content {
    margin-left: 0;
    padding: 30px 20px;
  }
  
  .phase-number {
    position: static;
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
  }
  
  .phase-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .phase-icon {
    width: 60px;
    height: 60px;
  }
  
  .phase-icon i {
    font-size: 28px;
  }
  
  .phase-title {
    font-size: 22px;
  }
  
  .phase-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .skill-tag {
    font-size: 13px;
    padding: 8px 15px;
  }
  
  /* Features Section Responsive */
  .benefits {
    padding: 60px 0;
  }
  
  .benefits-title {
    font-size: 2rem;
  }
  
  .benefits-subtitle {
    font-size: 1rem;
  }
  
  .feature-card-new {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .feature-title-new {
    font-size: 20px;
  }
  
  /* Feature Details Responsive */
  .feature-details-section {
    padding: 60px 0;
  }
  
  .section-title-modern {
    font-size: 2rem;
  }
  
  .section-description-modern {
    font-size: 1rem;
  }
  
  .feature-detail-card {
    margin-bottom: 30px;
  }
  
  .feature-detail-image {
    height: 200px;
  }
  
  .feature-detail-content {
    padding: 25px 20px;
  }
  
  .feature-detail-title {
    font-size: 20px;
  }
  
  .feature-detail-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Hero Section Responsive */
  .welcome-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .welcome-title-new {
    font-size: 2.2rem;
  }
  
  .welcome-description-new {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .welcome-stats-new {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-icon-welcome {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .stat-text-welcome {
    font-size: 14px;
  }
  
  .welcome-actions-new {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-welcome-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .welcome-floating-element {
    display: none;
  }
  
  /* Testimonials Responsive */
  .testimonials {
    padding: 60px 0;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
  }
  
  .testimonial-card-new {
    padding: 30px 25px;
  }
  
  .testimonial-quote-icon {
    font-size: 40px;
    top: 20px;
    right: 20px;
  }
  
  .testimonial-text-new {
    font-size: 15px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-name {
    font-size: 16px;
  }
}
  
  .element-icon {
    width: 30px;
    height: 30px;
  }
  
  .element-icon i {
    font-size: 14px;
  }
  
  .element-text {
    font-size: 10px;
  }


.lead  {
  color: var(--accent-color);
  font-weight: 500;
}

/* Old About, Contact, FAQ styles removed - using premium styles instead */

.contact-info-card-new {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 2px solid rgba(210, 105, 30, 0.1);
  transition: var(--transition);
}

.contact-info-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(210, 105, 30, 0.15);
  border-color: var(--accent-color);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.contact-info-card-new h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact-info-card-new p {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 15px;
}

.contact-link-new {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.contact-link-new:hover {
  color: var(--heading-color);
}

.contact-form-section {
  padding: 100px 0;
}

.contact-form-wrapper {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header-new h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.form-header-new p {
  font-size: 1.1rem;
  color: var(--light-text);
}

.form-group-new {
  margin-bottom: 25px;
}

.form-group-new label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.form-control-new {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(210, 105, 30, 0.2);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg-color);
  color: var(--default-color);
}

.form-control-new:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.checkbox-group-new {
  margin-top: 20px;
}

.checkbox-label-new {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--default-color);
  cursor: pointer;
}

.checkbox-label-new input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label-new a {
  color: var(--accent-color);
  text-decoration: none;
}

.checkbox-label-new a:hover {
  text-decoration: underline;
}

.form-messages-new {
  margin-bottom: 20px;
  min-height: 30px;
}

.loading-new,
.error-message-new,
.sent-message-new {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.loading-new {
  background: rgba(210, 105, 30, 0.1);
  color: var(--accent-color);
}

.error-message-new {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.sent-message-new {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

/* New Contact Form Styles (based on old form) */
.form-field-group {
  margin-bottom: 25px;
}

.form-label-new {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.form-label-new .required-star {
  color: #dc3545;
  margin-left: 3px;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(210, 105, 30, 0.2);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg-color);
  color: var(--default-color);
  font-family: inherit;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: var(--light-text);
}

.form-input-new[type="select"],
.form-input-new select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea-new {
  resize: vertical;
  min-height: 120px;
}

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #dc3545;
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #198754;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 8px;
  font-size: 13px;
  color: #dc3545;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-submit-button svg {
  transition: var(--transition);
}

.form-submit-button:hover svg {
  transform: translateX(3px);
}

.form-status {
  margin-top: 20px;
  min-height: 30px;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.form-status .loading {
  background: rgba(210, 105, 30, 0.1);
  color: var(--accent-color);
}

.form-status .error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.form-status .sent-message {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.office-hours-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.hours-card-new {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid rgba(210, 105, 30, 0.1);
}

.hours-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--contrast-color);
  margin-bottom: 25px;
}

.hours-card-new h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.hours-list-new {
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(210, 105, 30, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  font-weight: 600;
  color: var(--heading-color);
}

.hours-item .time {
  color: var(--default-color);
}

.hours-note {
  font-size: 14px;
  color: var(--light-text);
  margin: 0;
  font-style: italic;
}

.response-info {
  margin-top: 20px;
}

.response-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.response-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.response-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.response-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

.contact-cta-section {
  padding: 100px 0;
}

/* Old FAQ hero styles removed - using premium styles instead */

.faq-categories-section {
  padding: 40px 0;
  background: var(--bg-color);
  border-bottom: 1px solid rgba(210, 105, 30, 0.1);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: 12px 25px;
  background: var(--surface-color);
  border: 2px solid rgba(210, 105, 30, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
  cursor: pointer;
  transition: var(--transition);
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: linear-gradient(135deg, var(--accent-color), #ff1493);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq-accordion-section {
  padding: 100px 0;
}

.faq-accordion-new {
  max-width: 100%;
}

.faq-item-new {
  background: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid rgba(210, 105, 30, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item-new:hover {
  border-color: rgba(210, 105, 30, 0.3);
}

.faq-item-new.active {
  border-color: var(--accent-color);
}

.faq-question-new {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question-new:hover {
  background: rgba(210, 105, 30, 0.05);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.faq-icon {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-question-new h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.faq-toggle-new {
  font-size: 20px;
  color: var(--accent-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 30px;
}

.faq-item-new.active .faq-answer-new {
  padding: 0 30px 25px;
}

.faq-answer-new p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
}

.faq-answer-new ul,
.faq-answer-new ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.faq-answer-new li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 8px;
}

.faq-answer-new a {
  color: var(--accent-color);
  text-decoration: none;
}

.faq-answer-new a:hover {
  text-decoration: underline;
}

.faq-cta-section {
  padding: 100px 0;
  background: var(--bg-color);
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .why-choose-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .form-header-new h2 {
    font-size: 2rem;
  }
  
  .faq-categories {
    justify-content: flex-start;
  }
  
  .faq-category-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
  
  .faq-question-new {
    padding: 20px;
  }
  
  .faq-question-new h3 {
    font-size: 18px;
  }
  
  .faq-item-new.active .faq-answer-new {
    padding: 0 20px 20px;
  }
}

/*======================================
  GUSTOLOCALE HEADER STYLES
======================================*/

/* Header Top Bar */
.header-top-bar {
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 50%, #059669 100%);
  color: white;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

.top-bar-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0.3;
}

.decoration-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  width: 200px;
}

.decoration-leaf {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.header-top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.fresh-indicator,
.delivery-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.fresh-indicator:hover,
.delivery-info:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.indicator-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fresh-indicator i,
.delivery-info i {
  font-size: 12px;
  color: #22c55e;
}

.top-bar-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.trust-badges {
  display: flex;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: rgba(34, 197, 94, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.trust-badge i {
  color: #22c55e;
  font-size: 14px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-quick a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 20px;
  height: 20px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-quick a:hover {
  color: #22c55e;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
}

.social-links .social-link {
  color: white;
  font-size: 16px;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links .social-link:hover {
  color: #22c55e;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Main Header */
.header-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  position: relative;
}

.header-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 255, 254, 0.9) 100%);
  z-index: -1;
}

.header-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  position: relative;
}

/* Logo */
.header-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
  transition: var(--transition);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(26, 61, 50, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: var(--transition);
}

.logo-container:hover {
  background: linear-gradient(135deg, rgba(26, 61, 50, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 61, 50, 0.15);
}

.logo-icon {
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 50%, #059669 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(26, 61, 50, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
  animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.logo-text h1 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  font-family: var(--heading-font);
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text span {
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

/* Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: var(--nav-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(26, 61, 50, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 25px;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.nav-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover .nav-icon {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.nav-link i {
  font-size: 12px;
  color: inherit;
}

.nav-link.contact-btn {
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 50%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 61, 50, 0.3);
  position: relative;
  margin-left: 10px;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 25px;
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { transform: translateX(-100%) skewX(-15deg); }
  50% { transform: translateX(100%) skewX(-15deg); }
}

.nav-link.contact-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #2d5a4a 50%, #1a3d32 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(26, 61, 50, 0.4);
}

.nav-link.contact-btn .nav-icon {
  background: rgba(255, 255, 255, 0.2);
}

.nav-link.contact-btn:hover .nav-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--nav-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-color);
  color: var(--heading-color);
  padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.2);
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.hamburger-container {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--nav-color);
  position: absolute;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 1px;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 8px;
}

.hamburger-line:nth-child(3) {
  top: 16px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: white;
  padding: 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #2d5a4a;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.mobile-menu-close:hover {
  background: rgba(45, 90, 74, 0.1);
  color: #22c55e;
  transform: scale(1.1);
}

.mobile-menu-close:active {
  transform: scale(0.95);
}

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-color);
}

.mobile-logo i {
  font-size: 24px;
  color: var(--accent-color);
}

.mobile-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--nav-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  font-size: 16px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-color);
  color: var(--heading-color);
  padding-left: 30px;
}

.mobile-dropdown {
  position: relative;
}

.mobile-nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-link.dropdown-toggle::after {
  content: '';
  display: none;
}

.mobile-nav-link.dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.mobile-dropdown.open .mobile-nav-link.dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 8px;
  margin: 5px 0 10px 15px;
  padding: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 200px;
  padding: 10px 0;
}

.mobile-dropdown-menu li {
  margin-bottom: 2px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-dropdown.open .mobile-dropdown-menu li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-dropdown.open .mobile-dropdown-menu li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-dropdown.open .mobile-dropdown-menu li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-color);
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
  margin-left: -3px;
}

.mobile-dropdown-menu a:hover {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-color);
  padding-left: 35px;
  border-left-color: var(--accent-color);
}

.mobile-contact {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid var(--bg-color);
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--nav-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-contact-link:hover {
  color: var(--accent-color);
}

.mobile-contact-link i {
  font-size: 18px;
  color: var(--accent-color);
}

.mobile-social {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.mobile-social-link {
  color: var(--nav-color);
  font-size: 20px;
  transition: var(--transition);
}

.mobile-social-link:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}

/*======================================
  GUSTOLOCALE FOOTER STYLES
======================================*/

/* Footer Main */
.footer-gustolocale {
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 50%, #059669 100%);
  color: white;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.footer-main {
  padding: 100px 0 60px;
  position: relative;
  z-index: 2;
}

.footer-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.footer-brand {
  flex: 2.5 1 300px;
  max-width: 500px;
}

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

.footer-section:last-child {
  flex: 1.5 1 250px;
  max-width: 350px;
}

/* Footer Brand */
.footer-brand {
  padding-right: 30px;
}

@media (max-width: 1024px) {
  .footer-brand {
    padding-right: 0;
  }
}

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

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.logo-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.3) 100%);
  animation: footerLogoShine 4s ease-in-out infinite;
}

@keyframes footerLogoShine {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}

.footer-logo-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer-brand-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  font-family: var(--heading-font);
  background: linear-gradient(45deg, white, rgba(34, 197, 94, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-features {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255, 0, 0, 0.1); /* Временный красный фон для тестирования */
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  border-bottom-color: rgba(34, 197, 94, 0.5);
  padding-left: 10px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item i {
  color: #22c55e;
  font-size: 12px;
}

.footer-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Sections */
.footer-section h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

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

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: var(--transition);
  border-radius: 6px;
  padding-left: 12px;
}

.footer-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.footer-link i {
  color: var(--accent-color);
  font-size: 16px;
  min-width: 16px;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--accent-color);
  font-size: 20px;
  margin-top: 2px;
  min-width: 20px;
}

.contact-content strong {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-content span,
.contact-content a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.contact-content a:hover {
  color: var(--accent-color);
}

/* Footer Newsletter */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.newsletter-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
}

.footer-newsletter .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.newsletter-text {
  flex: 1;
  max-width: 400px;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(26, 61, 50, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #22c55e;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.newsletter-text h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 15px;
  font-family: var(--heading-font);
  color: white;
}

.newsletter-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.newsletter-form {
  flex: 1;
  max-width: 500px;
}

.input-group {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.newsletter-input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  background: transparent;
  color: white;
  font-size: 16px;
  outline: none;
  border-radius: 26px 0 0 26px;
}

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

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border: none;
  border-radius: 0 26px 26px 0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.newsletter-btn:hover::before {
  left: 100%;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.newsletter-privacy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  text-align: center;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(34, 197, 94, 0.05) 50%, transparent 100%);
}

.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-copyright {
  flex: 1;
}

.copyright-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-copyright p:first-child {
  font-weight: 600;
  color: white;
  font-size: 15px;
}

.copyright-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.copyright-badge i {
  color: #22c55e;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal .legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.footer-legal .legal-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.social-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.social-links-modern {
  display: flex;
  gap: 12px;
}

.social-link-modern {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-link-modern:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/*======================================
  RESPONSIVE STYLES
======================================*/

@media (max-width: 1024px) {
  .footer-grid {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 1 1 100%;
    order: -1;
    text-align: center;
    padding-right: 0;
  }

  .footer-section {
    flex: 1 1 calc(50% - 20px);
  }

  .footer-section:last-child {
    flex: 1 1 100%;
  }

  .footer-logo-container {
    justify-content: center;
  }

  .footer-description {
    max-width: 600px;
    margin: 0 auto 25px;
  }

  .footer-features {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-stats {
    justify-content: center;
    gap: 30px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Header Responsive */
  .header-content {
    padding: 15px 0;
  }

  .logo-text h1 {
    font-size: 24px;
  }

  /* Top bar responsive */
  .top-bar-content {
    gap: 15px;
  }

  .top-bar-left,
  .top-bar-right {
    flex: 1;
  }

  .top-bar-center {
    display: none;
  }

  .fresh-indicator,
  .delivery-info {
    padding: 6px 10px;
    font-size: 13px;
  }

  .social-label {
    display: none;
  }

  /* Main header responsive */
  .logo-container {
    padding: 8px 15px;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  .nav-menu {
    gap: 3px;
    padding: 6px;
  }

  .nav-link {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav-link.contact-btn {
    margin-left: 5px;
  }

  /* Footer responsive */
  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-grid {
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
  }

  .footer-brand,
  .footer-section {
    flex: 1 1 100%;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-stats {
    justify-content: center;
    gap: 40px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .input-group {
    flex-direction: column;
  }

  .newsletter-input {
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }

  .newsletter-btn {
    border-radius: 0 0 20px 20px;
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-social {
    align-items: center;
  }

  /* Mobile menu responsive */
  .mobile-menu-content {
    width: 300px;
    padding: 25px;
  }

  .mobile-menu-header {
    margin-bottom: 25px;
  }

  .mobile-menu-close {
    font-size: 22px;
    width: 36px;
    height: 36px;
  }

  /* Mobile dropdown responsive */
  .mobile-dropdown-menu {
    margin-left: 10px;
  }

  .mobile-dropdown-menu a {
    padding: 0;
    font-size: 13px;
  }

  .mobile-dropdown.open .mobile-dropdown-menu a:hover {
    padding-left: 30px;
  }
}

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Footer Responsive */
  .footer-main {
    padding: 60px 0 30px;
  }

  .footer-grid {
    flex-direction: row;
    gap: 40px;
  }

  .footer-brand,
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-features {
    flex-direction: row;
    justify-content: center;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    min-width: auto;
    width: 100%;
    max-width: 400px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }


@media (max-width: 480px) {
  /* Header Mobile */
  .header-top-bar {
    padding: 8px 0;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .top-bar-right {
    flex-direction: column;
    gap: 10px;
  }

  .logo-text h1 {
    font-size: 20px;
  }

  .mobile-menu-content {
    width: 280px;
    padding: 20px;
  }

  /* Footer Mobile */
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-logo-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .footer-brand-title {
    font-size: 24px;
  }

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

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 15px;
  }

  .footer-social {
    justify-content: center;
  }
}

/*======================================
  ANIMATIONS & EFFECTS
======================================*/

/* Header Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-top-bar {
  animation: slideDown 0.6s ease-out;
}

.header-main {
  animation: slideDown 0.8s ease-out 0.2s both;
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Hover Effects */
.footer-link {
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-link:hover::before {
  left: 100%;
}

/* Newsletter Focus Effects */
.newsletter-input:focus {
  animation: glow 0.3s ease;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
  }
}

/* Loading States */
.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ===================================
   POLICY PAGES STYLES
=================================== */

.policy-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 50%, #059669 100%);
  position: relative;
  overflow: hidden;
}

.policy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
}

.policy-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.policy-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 61, 50, 0.9) 0%, rgba(5, 150, 105, 0.8) 100%);
}

.policy-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 12px 24px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}

.policy-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.policy-hero-title .title-gradient {
  background: linear-gradient(45deg, #ffffff, rgba(34, 197, 94, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.policy-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.policy-last-updated {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 500;
}

.policy-actions {
  margin-top: 10px;
}

.btn-policy-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-policy-primary:hover {
  background: rgba(34, 197, 94, 0.8);
  border-color: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

/* Policy Content */
.policy-content {
  padding: 80px 0;
  background: #f8fffe;
}

.policy-content-wrapper {
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(26, 61, 50, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.policy-section {
  margin-bottom: 50px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.policy-section-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 24px;
  flex-shrink: 0;
}

.policy-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(26, 61, 50, 0.1) 100%);
  border-radius: 13px;
}

.policy-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a3d32;
  margin: 0;
  line-height: 1.3;
}

.policy-section-content {
  color: #2d5a4a;
  line-height: 1.7;
  font-size: 16px;
}

.policy-section-content p {
  margin-bottom: 20px;
}

.policy-section-content p:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8fffe;
  border-radius: 10px;
  border-left: 4px solid #22c55e;
  transition: all 0.3s ease;
}

.policy-list li:hover {
  background: #f0fdf4;
  transform: translateX(5px);
}

.policy-list li i {
  color: #22c55e;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.policy-note {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.policy-note p {
  margin: 0;
  color: #92400e;
  font-weight: 500;
}

/* Policy Contact */
.policy-contact-info {
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item i {
  color: #22c55e;
  font-size: 20px;
  width: 20px;
}

.contact-info-item strong {
  color: #1a3d32;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-item span {
  color: #2d5a4a;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
  .policy-hero {
    padding: 100px 0 60px;
  }

  .policy-hero-title {
    font-size: 36px;
  }

  .policy-hero-description {
    font-size: 16px;
  }

  .policy-content-wrapper {
    padding: 40px 30px;
    border-radius: 15px;
  }

  .policy-section-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .policy-section-title {
    font-size: 24px;
  }

  .policy-list li {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .policy-hero {
    padding: 80px 0 40px;
  }

  .policy-hero-title {
    font-size: 28px;
  }

  .policy-content-wrapper {
    padding: 30px 20px;
  }

  .policy-section-title {
    font-size: 20px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .header-gustolocale {
    border-bottom: 2px solid white;
  }

  .footer-gustolocale {
    border-top: 2px solid white;
  }

  .nav-link,
  .footer-link,
  .social-link {
    border: 1px solid currentColor;
  }
}

/* Print Styles */
@media print {
  .header-gustolocale,
  .footer-gustolocale {
    display: none !important;
  }
}

/* ===================================
   POLICY ACCORDION STYLES
=================================== */

.policy-accordion {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 61, 50, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.policy-accordion:hover {
  box-shadow: 0 8px 30px rgba(26, 61, 50, 0.15);
  transform: translateY(-2px);
}

.policy-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.policy-accordion-header:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fffe 100%);
}

.policy-accordion.open .policy-accordion-header {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border-bottom: none;
}

.policy-accordion.open .policy-accordion-header .policy-section-title {
  color: white;
}

.policy-accordion.open .policy-accordion-header i {
  color: rgba(255, 255, 255, 0.9);
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.policy-accordion-header:hover .accordion-toggle {
  background: rgba(34, 197, 94, 0.2);
  transform: scale(1.1);
}

.policy-accordion.open .accordion-toggle {
  background: rgba(255, 255, 255, 0.2);
}

.accordion-toggle i {
  font-size: 16px;
  color: #22c55e;
  transition: transform 0.3s ease;
}

.policy-accordion.open .accordion-toggle i {
  color: white;
}

.policy-accordion-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-accordion.open .policy-accordion-content {
  max-height: 1000px; /* Large enough for content */
}

.policy-accordion .policy-section-content {
  padding: 30px;
  margin: 0;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.policy-accordion.open .policy-section-content {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive accordion styles */
@media (max-width: 768px) {
  .policy-accordion-header {
    padding: 20px 25px;
  }

  .policy-accordion .policy-section-content {
    padding: 25px 20px;
  }

  .accordion-toggle {
    width: 36px;
    height: 36px;
  }

  .accordion-toggle i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .policy-accordion-header {
    padding: 18px 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .policy-accordion .policy-section-content {
    padding: 20px 15px;
  }
}

/* ===================================
   COOKIE MANAGER STYLES
=================================== */

.cookie-manager-section {
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  border: 2px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 10px 40px rgba(26, 61, 50, 0.1);
}

.cookie-manager-header {
  text-align: center;
  margin-bottom: 40px;
}

.cookie-manager-header .policy-section-icon {
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
}

.cookie-manager-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a3d32;
  margin-bottom: 15px;
}

.cookie-manager-subtitle {
  font-size: 16px;
  color: #2d5a4a;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-settings {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: white;
  border-radius: 15px;
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 61, 50, 0.05);
}

.cookie-setting-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 61, 50, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.cookie-setting-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cookie-setting-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.cookie-setting-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a3d32;
  margin: 0 0 5px;
}

.cookie-setting-text p {
  font-size: 14px;
  color: #2d5a4a;
  margin: 0;
  line-height: 1.5;
}

.cookie-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.toggle-label {
  font-size: 12px;
  font-weight: 600;
  color: #2d5a4a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toggle-switch {
  width: 50px;
  height: 26px;
  background: #e5e7eb;
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-color: #22c55e;
}

.toggle-switch.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.toggle-slider {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  left: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-required .toggle-label {
  color: #92400e;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cookie-save,
.btn-cookie-reset {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cookie-save {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-cookie-reset {
  background: transparent;
  color: #2d5a4a;
  border: 2px solid #2d5a4a;
}

.btn-cookie-reset:hover {
  background: #2d5a4a;
  color: white;
  transform: translateY(-2px);
}

/* Cookie Notification */
.cookie-notification {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 10000;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 350px;
}

.cookie-notification.show {
  transform: translateX(0);
}

.cookie-notification.success {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.cookie-notification.info {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-content i {
  font-size: 20px;
  flex-shrink: 0;
}

/* Responsive cookie manager */
@media (max-width: 768px) {
  .cookie-manager-section {
    padding: 30px 20px;
    margin: 30px 0;
  }

  .cookie-manager-title {
    font-size: 24px;
  }

  .cookie-setting-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .cookie-setting-info {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-toggle {
    align-self: center;
  }

  .cookie-actions {
    gap: 15px;
  }

  .btn-cookie-save,
  .btn-cookie-reset {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-notification {
    right: 15px;
    left: 15px;
    max-width: none;
  }

  .cookie-setting-item {
    padding: 15px;
  }
}

/* ===================================
   THANKS PAGE INTERACTIVE ELEMENTS
=================================== */

.thanks-countdown {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(26, 61, 50, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  text-align: center;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1a3d32;
}

.countdown-header i {
  color: #22c55e;
  font-size: 20px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.countdown-number {
  font-size: 36px;
  font-weight: 700;
  color: #22c55e;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  min-width: 70px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.countdown-label {
  font-size: 12px;
  font-weight: 600;
  color: #2d5a4a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 24px;
  font-weight: 700;
  color: #22c55e;
}

/* Social Sharing */
.thanks-social-share {
  margin-top: 50px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 8px 30px rgba(26, 61, 50, 0.05);
}

.social-share-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #1a3d32;
}

.social-share-header i {
  color: #22c55e;
  font-size: 20px;
}

.social-share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.social-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-share-btn.facebook {
  background: #1877f2;
  color: white;
}

.social-share-btn.facebook:hover {
  background: #166fe5;
}

.social-share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.social-share-btn.twitter:hover {
  background: #1a91da;
}

.social-share-btn.whatsapp {
  background: #25d366;
  color: white;
}

.social-share-btn.whatsapp:hover {
  background: #22c55e;
}

.social-share-btn.copy {
  background: #6b7280;
  color: white;
}

.social-share-btn.copy:hover {
  background: #4b5563;
}

.social-share-note {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  font-style: italic;
}

/* Copy Notification */
.copy-notification {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 10000;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.copy-notification.show {
  transform: translateX(0);
}

.copy-notification.success {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.copy-notification.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.copy-notification i {
  font-size: 18px;
}

/* Responsive thanks elements */
@media (max-width: 768px) {
  .thanks-countdown {
    padding: 25px 20px;
    margin: 30px 0;
  }

  .countdown-number {
    font-size: 28px;
    padding: 12px 16px;
    min-width: 55px;
  }

  .social-share-buttons {
    gap: 10px;
  }

  .social-share-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .copy-notification {
    right: 15px;
    left: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .thanks-countdown {
    padding: 20px 15px;
  }

  .countdown-timer {
    gap: 10px;
  }

  .countdown-number {
    font-size: 24px;
    padding: 10px 12px;
    min-width: 45px;
  }

  .social-share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-share-btn {
    width: 200px;
    justify-content: center;
  }
}

/* ===================================
   FLOATING ACTION BUTTON (FAB)
=================================== */

.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.fab-main {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1001;
}

.fab-main:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.fab-main.active {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.fab-main i {
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.fab-main.active i {
  transform: rotate(-45deg);
}

.fab-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.fab-item {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  color: #2d5a4a;
  border: 2px solid rgba(34, 197, 94, 0.1);
}

.fab-item:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border-color: #22c55e;
}

.fab-item i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.fab-item:hover i {
  transform: scale(1.1);
}

.fab-item::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #2d5a4a;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.fab-item::after {
  content: '';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #2d5a4a;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fab-item:hover::before,
.fab-item:hover::after {
  opacity: 1;
  visibility: visible;
}

/* FAB Responsive */
@media (max-width: 768px) {
  .fab-container {
    bottom: 20px;
    right: 20px;
  }

  .fab-main {
    width: 55px;
    height: 55px;
  }

  .fab-main i {
    font-size: 22px;
  }

  .fab-item {
    width: 45px;
    height: 45px;
  }

  .fab-item i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fab-container {
    bottom: 15px;
    right: 15px;
  }

  .fab-main {
    width: 50px;
    height: 50px;
  }

  .fab-main i {
    font-size: 20px;
  }

  .fab-item {
    width: 40px;
    height: 40px;
  }

  .fab-item i {
    font-size: 14px;
  }

  .fab-item::before {
    display: none;
  }

  .fab-item::after {
    display: none;
  }
}

/* ===================================
   MICRO-INTERACTIONS & ANIMATIONS
=================================== */

/* Pulse animation for important buttons */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.btn-hero-primary,
.btn-cta-primary,
.newsletter-btn {
  animation: pulse 2s infinite;
}

.btn-hero-primary:hover,
.btn-cta-primary:hover,
.newsletter-btn:hover {
  animation: none;
}

/* Shimmer effect for special elements */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.shimmer-effect {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0px,
    rgba(255, 255, 255, 0.4) 50px,
    rgba(255, 255, 255, 0) 100px
  );
  background-size: 200px;
  animation: shimmer 2s infinite;
}

/* Bounce animation for notifications */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cookie-notification,
.copy-notification {
  animation: bounceIn 0.5s ease-out;
}

/* Glow effect for interactive elements */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 30px rgba(34, 197, 94, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.3);
  }
}

.policy-accordion-header:hover .accordion-toggle,
.fab-item:hover {
  animation: glow 1.5s ease-in-out infinite;
}

/* Stagger animation for accordion items */
.policy-accordion.open .policy-accordion-content {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typing animation for hero titles */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #22c55e; }
}

.typing-effect {
  overflow: hidden;
  border-right: 3px solid #22c55e;
  white-space: nowrap;
  animation:
    typing 3s steps(40, end),
    blink-caret 0.75s step-end infinite;
}

/* Smooth reveal animations */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal-up {
  animation: revealUp 0.8s ease-out;
}

.reveal-left {
  animation: revealLeft 0.8s ease-out;
}

.reveal-right {
  animation: revealRight 0.8s ease-out;
}

/* Enhanced hover effects */
.policy-section:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.cookie-setting-item:hover .cookie-setting-icon {
  transform: rotate(5deg) scale(1.1);
  transition: transform 0.3s ease;
}

.social-share-btn:hover i {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

/* Loading spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

/* Enhanced focus states for accessibility */
.btn-policy-primary:focus,
.social-share-btn:focus,
.fab-item:focus {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

/* Parallax effect for hero backgrounds */
.policy-hero {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .policy-hero {
    background-attachment: scroll;
  }
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
  border-top: 3px solid #22c55e;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-consent-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-text h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-text a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 500;
}

.cookie-consent-text a:hover {
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-accept,
.btn-decline {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-accept {
  background: #22c55e;
  color: white;
}

.btn-accept:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-accept,
  .btn-decline {
    width: 100%;
  }
}