/* ========================================================================== */
/* PREMIUM LUXE TEMPLATE - ClicToEat Landing Page                            */
/* Sophisticated, elegant, and premium design system                          */
/* ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Premium Color Palette */
  --premium-coral: #f47f72;
  --premium-coral-light: #ff6868;
  --premium-coral-dark: #e85d4f;
  --premium-blush: #f79e95;
  --premium-cream: #fffaf8;
  --premium-ivory: #fff6f1;
  --premium-ink: #1a1412;
  --premium-ink-light: #3d2e2a;
  --premium-gold: #d4af37;

  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #ff6868 0%, #f47f72 50%, #f79e95 100%);
  --gradient-primary-hover: linear-gradient(135deg, #ff7a7a 0%, #f58a7d 50%, #f9b0a5 100%);
  --gradient-text: linear-gradient(135deg, #ff6868 0%, #f47f72 50%, #f79e95 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 250, 248, 0.75) 100%);

  /* Premium Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 20, 18, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 20, 18, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 20, 18, 0.12);
  --shadow-xl: 0 24px 64px rgba(26, 20, 18, 0.16);
  --shadow-premium: 0 20px 60px rgba(244, 127, 114, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);

  /* Premium Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Premium Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Premium Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Override template tokens with ultra-bold font sizes */
  --font-size-b1: 24px;
  --font-size-b2: 22px;
  --font-size-b3: 20px;
  --font-size-b4: 18px;
  --h1: 80px;
  --h2: 64px;
  --h3: 48px;
  --h4: 36px;
  --h5: 28px;
  --h6: 22px;

  --color-primary: var(--premium-coral);
  --color-primary-alt: var(--premium-coral-light);
  --color-secondary: var(--premium-coral-light);
  --color-heading: var(--premium-ink);
  --color-body: var(--premium-ink-light);
  --color-border: rgba(244, 127, 114, 0.2);
  --radius: var(--radius-md);
}

/* ========================================================================== */
/* BASE STYLES - Premium Foundation                                           */
/* ========================================================================== */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--premium-cream);
  color: var(--premium-ink-light);
  line-height: 1.7;
  font-size: var(--font-size-b2);
  /* Increased base size */
  font-weight: 400;
  overflow-x: hidden;
}

/* Premium Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--premium-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

p,
.description {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--premium-ink-light);
  line-height: 1.8;
  font-weight: 400;
}

/* Premium Background with Animated Blobs */
.page-wrapper {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 600px at 10% 5%, rgba(247, 158, 149, 0.25), transparent 50%),
    radial-gradient(1000px 500px at 90% 15%, rgba(244, 127, 114, 0.2), transparent 50%),
    radial-gradient(1400px 700px at 50% 85%, rgba(255, 104, 104, 0.15), transparent 60%),
    var(--premium-cream);
  min-height: 100vh;
}

.page-wrapper::before,
.page-wrapper::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.page-wrapper::before {
  width: 600px;
  height: 600px;
  left: -200px;
  top: -200px;
  background: var(--gradient-primary);
  animation-delay: 0s;
}

.page-wrapper::after {
  width: 500px;
  height: 500px;
  right: -150px;
  top: 200px;
  background: linear-gradient(135deg, rgba(247, 158, 149, 0.6), rgba(244, 127, 114, 0.4));
  animation-delay: 10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.page-wrapper>* {
  position: relative;
  z-index: 1;
}

/* ========================================================================== */
/* PREMIUM HEADER - Glass Morphism                                            */
/* ========================================================================== */

.header-top-bar {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(244, 127, 114, 0.1);
  padding: var(--space-sm) 0;
  position: relative;
}

.header-top-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 127, 114, 0.3), transparent);
}

.rainbow-header.header-default {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(244, 127, 114, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.rainbow-header.header-default.header-sticky {
  box-shadow: var(--shadow-md);
}

/* ========================================================================== */
/* NAVBAR TOP LINE + LANGUAGE IN NAVBAR                                       */
/* ========================================================================== */

.premium-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.25rem 0 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.premium-topline__title,
.premium-topline__countries {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--premium-ink-light);
  text-decoration: none;
  max-width: 44vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.premium-topline__title:hover,
.premium-topline__countries:hover {
  color: var(--premium-coral);
}

.premium-topline__dot {
  opacity: 0.5;
}

.navbar-lang {
  display: flex;
  align-items: center;
}

.lang-dropdown {
  position: relative;
  z-index: 1001;
}

.lang-dropdown-trigger {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.lang-dropdown-trigger:hover {
  background: #f47f72;
  color: white;
  border-color: #f47f72;
  transform: scale(1.1);
}

.lang-dropdown-trigger i {
  font-size: 18px;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(244, 127, 114, 0.2);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: 1003;
  pointer-events: none;
}

.lang-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.3rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
  overflow: hidden;
  pointer-events: auto;
}

.lang-dropdown-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform var(--transition-base);
}

.lang-dropdown-item:hover {
  border-color: rgba(244, 127, 114, 0.4);
  background: rgba(244, 127, 114, 0.1);
  transform: scale(1.05);
}

.lang-dropdown-item:hover img {
  transform: scale(1.1);
}

/* When header turns dark (sticky/black), make texts white */
.rainbow-header.sticky {
  background-color: #050505 !important;
}

.rainbow-header.sticky .mainmenu>li>a,
.rainbow-header.sticky .premium-topline__title,
.rainbow-header.sticky .premium-topline__countries,
.rainbow-header.sticky .header-left .logo h4,
.rainbow-header.sticky .header-left .logo h4 span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.rainbow-header.sticky .mainmenu>li>a:hover,
.rainbow-header.sticky .premium-topline__title:hover,
.rainbow-header.sticky .premium-topline__countries:hover {
  color: var(--premium-coral-light) !important;
}

.rainbow-header.sticky .lang-dropdown-trigger {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.rainbow-header.sticky .lang-dropdown-trigger i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.rainbow-header.sticky .lang-dropdown-trigger:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.rainbow-header.sticky .lang-dropdown-trigger:hover i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.rainbow-header.sticky .lang-dropdown-menu {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(255, 255, 255, 0.2);
}

.rainbow-header.sticky .lang-dropdown-item:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile: hamburger icon white when header sticky */
.rainbow-header.sticky .mobile-menu-toggle span {
  background: #ffffff !important;
}

@media (max-width: 1300px) {
  .rainbow-header .mainmenu>li>a {
    font-size: 1.25rem;
    padding: var(--space-xs) 0.8rem;
  }
}

@media (max-width: 1100px) {
  .rainbow-header .mainmenu>li>a {
    font-size: 1.1rem;
    padding: var(--space-xs) 0.5rem;
  }
}

@media (max-width: 992px) {
  .premium-topline {
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }

  .premium-topline__title,
  .premium-topline__countries {
    max-width: 60vw;
  }
}

@media (max-width: 576px) {

  .premium-topline__dot,
  .premium-topline__countries {
    display: none;
  }

  .premium-topline__title {
    max-width: 100%;
  }

  .lang-dropdown-trigger {
    width: 36px;
    height: 27px;
  }

  .lang-dropdown-item {
    width: 36px;
    height: 27px;
  }
}

.rainbow-header .mainmenu>li>a {
  color: var(--premium-ink);
  font-weight: 600;
  font-size: 1.4rem;
  /* Balanced boost */
  letter-spacing: -0.01em;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.rainbow-header .mainmenu>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.rainbow-header .mainmenu>li>a:hover {
  color: var(--premium-coral);
  background: rgba(244, 127, 114, 0.05);
}

.rainbow-header .mainmenu>li>a:hover::before {
  width: 60%;
}

.header-left .logo h4 {
  color: var(--premium-coral);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.header-left .logo h4 span {
  color: #000000;
  transition: color var(--transition-base);
}

/* ========================================================================== */
/* PREMIUM BUTTONS - Luxurious & Interactive                                  */
/* ========================================================================== */

.btn-default,
.btn-default.btn-small,
.btn-default.round {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  /* Ultra boost */
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-premium);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-default:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 72px rgba(244, 127, 114, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
  background: var(--gradient-primary-hover);
}

.btn-default:hover::before {
  left: 100%;
}

.btn-default.btn-small {
  padding: 1rem 2.25rem;
  font-size: 1.35rem;
  /* Boosted */
}

.btn-default.btn-border {
  background: rgba(255, 255, 255, 0.9);
  color: var(--premium-ink);
  border: 2px solid rgba(244, 127, 114, 0.4);
  box-shadow: var(--shadow-sm);
}

.btn-default.btn-border:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--premium-coral);
  color: var(--premium-coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================================================== */
/* PREMIUM HERO SECTION                                                       */
/* ========================================================================== */

#home.slider-area {
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
}

#home .inner.collaborate .title {
  font-size: clamp(3.5rem, 7.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--premium-ink) 0%, var(--premium-ink-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#home .inner.collaborate .description {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  color: var(--premium-ink-light);
  max-width: 600px;
}

#home .thumbnail {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 100%;
  min-height: 400px;
}

#home .thumbnail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

#home .thumbnail:hover::before {
  opacity: 0.05;
}

#home .thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-xl);
  transition: transform var(--transition-slow);
  object-fit: cover;
}

#home .thumbnail:hover img {
  transform: scale(1.02);
}

/* Extra 3D styling for hero banner image */
.hero-banner-3d {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(0);
  transform-origin: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-3d:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-6px);
  box-shadow: 0 32px 80px rgba(26, 20, 18, 0.35);
}

.button-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ========================================================================== */
/* PREMIUM SECTIONS - Elegant Spacing                                         */
/* ========================================================================== */

.rainbow-section-gap {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-title {
  margin-bottom: var(--space-2xl);
}

.section-title .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--premium-coral);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-title .subtitle .theme-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.section-title .title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--premium-ink);
}

.section-title .description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  color: var(--premium-ink-light);
}

/* ========================================================================== */
/* ABOUT SECTION REDESIGN                                                     */
/* ========================================================================== */

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-side {
  position: relative;
  z-index: 1;
}

.about-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1 / 1;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-container:hover img {
  transform: scale(1.05);
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.about-floating-card h5 {
  color: var(--premium-coral);
  margin-bottom: 5px;
  font-size: 2.2rem;
  /* Massive boost */
  font-weight: 800;
}

.about-text-side {
  padding-left: var(--space-xl);
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature-item {
  background: rgba(255, 255, 255, 0.6);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 127, 114, 0.1);
  transition: all var(--transition-base);
}

.about-feature-item:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--premium-coral);
}

.about-feature-item i {
  font-size: 2rem;
  color: var(--premium-coral);
  margin-bottom: var(--space-xs);
  display: block;
}

.about-feature-item h6 {
  font-size: 1.7rem;
  /* Huge boost */
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--premium-ink);
}

.about-feature-item p {
  font-size: 1.3rem;
  /* Huge boost */
  color: var(--premium-ink-light);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-text-side {
    padding-left: 0;
  }

  .about-image-side {
    max-width: 600px;
    margin: 0 auto;
  }
}


.rainbow-comment-form .inner {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.rainbow-comment-form .inner:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

/* ========================================================================== */
/* DYNAMIC ORDERING REDESIGN                                                  */
/* ========================================================================== */

.dynamic-ordering-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.ordering-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.ordering-step-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 127, 114, 0.1);
  transition: all var(--transition-base);
}

.ordering-step-item:hover {
  background: #fff;
  transform: translateX(10px);
  border-color: var(--premium-coral);
  box-shadow: var(--shadow-md);
}

.step-number {
  min-width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.step-content h6 {
  margin-bottom: 0.25rem;
  font-size: 1.6rem;
  /* Increased */
  color: var(--premium-ink);
  font-weight: 700;
}

.step-content p {
  font-size: 1.2rem;
  /* Increased */
  margin-bottom: 0;
  line-height: 1.4;
}

.phone-mockup-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-container {
  position: relative;
  width: 320px;
  height: 640px;
  background: #1a1412;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
  border: 4px solid #3d2e2a;
}

.phone-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.phone-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  border-radius: 30px;
}

.floating-dish {
  position: absolute;
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

.dish-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.dish-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 2.5s;
}

.floating-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .dynamic-ordering-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .ordering-step-item {
    text-align: left;
  }

  .phone-mockup-side {
    order: -1;
  }
}

.contact-form-1 input,
.contact-form-1 select,
.contact-form-1 textarea,
#contact-form input,
#contact-form select,
#contact-form textarea,
#register-form input,
#register-form select,
#register-form textarea,
.input-select {
  width: 100%;
  padding: 1.125rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--premium-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(244, 127, 114, 0.15);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  font-family: 'Inter', sans-serif;
}

.contact-form-1 input:focus,
.contact-form-1 select:focus,
.contact-form-1 textarea:focus,
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus,
#register-form input:focus,
#register-form select:focus,
#register-form textarea:focus,
.input-select:focus {
  outline: none;
  border-color: var(--premium-coral);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 4px rgba(244, 127, 114, 0.1), var(--shadow-md);
  transform: translateY(-1px);
}

.contact-form-1 textarea,
#contact-form textarea,
#register-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* ========================================================================== */
/* TAILORED SOLUTIONS REDESIGN                                                */
/* ========================================================================== */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.solution-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(244, 127, 114, 0.3);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(244, 127, 114, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.solution-card:hover .solution-icon-wrapper {
  background: var(--gradient-primary);
  transform: rotate(10deg);
}

.solution-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--premium-coral);
  transition: color var(--transition-base);
}

.solution-card:hover .solution-icon-wrapper i {
  color: #fff;
}

.solution-card h4 {
  font-size: 2.25rem;
  /* Secondary boost */
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--premium-ink);
}

.solution-card p {
  font-size: 1.35rem;
  /* Secondary boost */
  line-height: 1.6;
  color: var(--premium-ink-light);
  margin-bottom: 0;
}

.solution-card-blur {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--premium-coral);
  filter: blur(100px);
  opacity: 0.1;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.solution-card:hover .solution-card-blur {
  opacity: 0.2;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ========================================================================== */
/* CONTACT & REGISTER REDESIGN                                                */
/* ========================================================================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  transform: translateX(10px);
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: var(--premium-coral);
}

.contact-info-card i {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.info-content h6 {
  margin-bottom: 0.25rem;
  font-size: 1.6rem;
  /* Increased */
  font-weight: 700;
  color: var(--premium-ink);
}

.info-content p {
  margin-bottom: 0;
  font-size: 1.2rem;
  /* Increased */
  color: var(--premium-ink-light);
}

.contact-form-side {
  position: relative;
}

.contact-form-side .inner {
  padding: var(--space-2xl) !important;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ========================================================================== */
/* PRICING PACKS REDESIGN                                                     */
/* ========================================================================== */

.pricing-wrapper {
  margin-top: var(--space-2xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: flex-start;
}

.pricing-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: var(--premium-coral);
}

.pricing-card.popular {
  background: #fff;
  border: 2px solid var(--premium-coral);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-15px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 8px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 2.6rem;
  /* Secondary boost */
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--premium-ink);
}

.price {
  margin: var(--space-md) 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--premium-coral);
}

.price .amount {
  font-size: 5.5rem;
  /* Secondary boost */
  font-weight: 900;
  color: var(--premium-ink);
  letter-spacing: -3.5px;
}

.price .period {
  font-size: 1rem;
  color: var(--premium-ink-light);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--premium-ink-light);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(244, 127, 114, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #18E68E;
  font-size: 1.2rem;
}

.pricing-footer {
  margin-top: var(--space-lg);
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-15px);
  }
}

/* ========================================================================== */
/* HERO / SLIDER AREA REDESIGN                                                */
/* ========================================================================== */

.slider-area.rainbow-section-gap {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 127, 114, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(244, 127, 114, 0.2);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--premium-coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--premium-ink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 6.5rem !important;
  /* Secondary boost */
  line-height: 1.0 !important;
  font-weight: 900 !important;
  color: var(--premium-ink) !important;
  margin-bottom: var(--space-lg);
  letter-spacing: -3.5px;
}

.hero-title span.highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.75rem !important;
  /* Secondary boost */
  line-height: 1.6 !important;
  color: var(--premium-ink-light);
  margin-bottom: var(--space-xl) !important;
  max-width: 90%;
}

.hero-visual-stack {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-main {
  max-width: 80%;
  /* Reduced from 100% */
  border-radius: 40px;
  box-shadow: var(--shadow-xl);
  border: 8px solid #fff;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}


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

.hero-floating-card {
  position: absolute;
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: 15px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.card-top-left {
  top: -10px;
  left: 0;
  animation-delay: 0s;
}

.card-bottom-right {
  bottom: 0;
  right: 0;
  animation-delay: 2s;
}

.hero-floating-card .icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 8px;
}

.hero-floating-card h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--premium-ink);
}

.hero-floating-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--premium-ink-light);
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 127, 114, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem !important;
    text-align: center;
  }

  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .hero-visual-stack {
    margin-top: 60px;
  }

  .card-top-left {
    left: 0;
  }

  .card-bottom-right {
    right: 0;
  }
}

.contact-form-1 label,
#contact-form label,
#register-form label {
  display: block;
  font-weight: 600;
  color: var(--premium-ink);
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
  /* Increased from 0.95rem */
}

.required {
  color: var(--premium-coral);
  font-weight: 700;
}

/* ========================================================================== */
/* PREMIUM LANGUAGE SELECTOR                                                   */
/* ========================================================================== */

/* Legacy select styles kept for compatibility */
.custom-select,
.with-flags {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(244, 127, 114, 0.2) !important;
  border-radius: var(--radius-full) !important;
  color: transparent !important;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 1.1rem;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--transition-base);
  text-align: center;
  text-align-last: center;
  background-size: 24px 18px !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 50px;
  height: 36px;
  padding: 0 !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.custom-select:hover,
.with-flags:hover {
  border-color: rgba(244, 127, 114, 0.4) !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-1px);
}

.custom-select:focus,
.with-flags:focus {
  border-color: var(--premium-coral) !important;
  box-shadow: 0 0 0 4px rgba(244, 127, 114, 0.15), var(--shadow-md) !important;
  outline: none;
}

/* ========================================================================== */
/* PREMIUM CARDS & COMPONENTS                                                  */
/* ========================================================================== */

.audience-item,
.rainbow-footer-widget {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 127, 114, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.audience-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(244, 127, 114, 0.3);
}

/* ========================================================================== */
/* PREMIUM SEPARATORS                                                          */
/* ========================================================================== */

.rbt-separator-mid .rbt-separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 127, 114, 0.3), transparent);
  margin: var(--space-2xl) 0;
}

/* ========================================================================== */
/* PREMIUM DARK FOOTER                                                         */
/* ========================================================================== */

.rainbow-footer.footer-style-default.variation-two {
  background: var(--premium-ink);
  color: #fff;
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  border-top: 4px solid var(--premium-coral);
}

.footer-top {
  border: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.footer-top::after {
  display: none !important;
}

.footer-logo-side {
  margin-bottom: var(--space-xl);
}

.footer-logo-side h4 {
  color: var(--premium-coral);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.footer-logo-side h4 span {
  color: #fff;
}

.footer-logo-side p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 300px;
}

.rainbow-footer-widget {
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.rainbow-footer-widget .title {
  color: #fff !important;
  font-size: 1.75rem;
  /* Massive boost */
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-lg);
  display: block;
  border-bottom: 2px solid rgba(244, 127, 114, 0.2);
  padding-bottom: 15px;
}

.rainbow-footer-widget .title::after {
  display: none;
}

.footer-link li,
.ft-menu li {
  padding-left: 0;
  margin-bottom: 12px;
}

.footer-link li::before,
.ft-menu li::before {
  display: none;
}

.footer-link li a,
.ft-menu li a,
.footer-link-list li a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 1.35rem;
  /* Massive boost for footer links */
  font-weight: 500;
  padding: 0;
  transition: all var(--transition-base);
}

.footer-link li a:hover,
.ft-menu li a:hover,
.footer-link-list li a:hover {
  color: var(--premium-coral) !important;
  transform: translateX(5px);
  text-decoration: underline !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-top: var(--space-3xl);
  padding-top: var(--space-lg);
}

.footer-bottom::before {
  display: none;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  border-color: transparent;
}

@media (max-width: 768px) {
  .rainbow-footer.footer-style-default.variation-two {
    padding: var(--space-2xl) 0;
    text-align: center;
  }

  .footer-logo-side p {
    margin: 0 auto var(--space-lg);
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-link li a:hover,
  .ft-menu li a:hover {
    transform: none;
  }
}


/* ========================================================================== */
/* PREMIUM BACK TO TOP                                                         */
/* ========================================================================== */

.rainbow-back-top {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow-premium);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rainbow-back-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 28px 80px rgba(244, 127, 114, 0.4);
}

/* ========================================================================== */
/* PREMIUM ANIMATIONS & MICRO-INTERACTIONS                                     */
/* ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-sal] {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--premium-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-primary-hover);
}

/* ========================================================================== */
/* PREMIUM RESPONSIVE                                                          */
/* ========================================================================== */

@media (max-width: 768px) {

  .page-wrapper::before,
  .page-wrapper::after {
    display: none;
  }

  .rainbow-section-gap {
    padding: var(--space-xl) 0;
  }

  .rainbow-comment-form .inner {
    padding: var(--space-lg);
  }

  .button-group {
    flex-direction: column;
  }

  .btn-default {
    width: 100%;
  }
}

/* ========================================================================== */
/* PREMIUM UTILITIES                                                           */
/* ========================================================================== */

.error {
  color: #dc2626;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: var(--space-xs);
  display: block;
}

.theme-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ========================================================================== */
/* 3D MENU VIEWER                                                             */
/* ========================================================================== */

.menu-3d-container {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--gradient-glass);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

#menu3d-viewer {
  position: relative;
}

#menu3d-viewer canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  #menu3d-viewer {
    height: 350px !important;
  }

  .menu-3d-container {
    padding: var(--space-md);
  }
}

/* intl-tel-input refined styling */
.iti {
  width: 100%;
  display: block;
}

.iti__selected-flag {
  padding: 0 8px 0 12px !important;
  background: transparent !important;
}

.iti__flag {
  transform: scale(0.85);
  /* Smaller flags */
  border-radius: 2px;
}

.iti__country-list {
  background-color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(244, 127, 114, 0.2);
  z-index: 100;
  padding: 8px;
}

.iti__country {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.iti__country:hover {
  background-color: rgba(244, 127, 114, 0.1) !important;
}

.iti input,
.iti input[type=tel],
.iti input[type=text] {
  width: 100% !important;
  padding-left: 85px !important;
  /* Adjusted for separateDialCode + smaller flag */
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-weight: 600;
  color: var(--premium-ink);
  font-size: 0.95rem;
  margin-left: 4px;
}

/* ========================================================================== */
/* PARTNERS SECTION - Premium Design with Logos                              */
/* ========================================================================== */

.partners-section {
  position: relative;
  background: linear-gradient(135deg,
      rgba(255, 250, 248, 0.95) 0%,
      rgba(255, 246, 241, 1) 50%,
      rgba(255, 250, 248, 0.95) 100%);
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(244, 127, 114, 0.18) 0%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 18s ease-in-out infinite;
}

.partners-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(247, 158, 149, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  animation: float 22s ease-in-out infinite reverse;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.partner-card {
  position: relative;
  perspective: 1200px;
  height: 100%;
}

.partner-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  border: 2px solid rgba(244, 127, 114, 0.2);
  box-shadow:
    0 10px 40px rgba(26, 20, 18, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all var(--transition-slow);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.partner-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
}

.partner-card-inner::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 70%);
  opacity: 0;
  transform: rotate(45deg);
  transition: all 0.6s ease;
  z-index: 1;
}

.partner-card:hover .partner-card-inner {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--premium-coral);
  box-shadow:
    0 25px 60px rgba(244, 127, 114, 0.25),
    0 0 0 1px rgba(244, 127, 114, 0.3),
    0 0 60px rgba(244, 127, 114, 0.15);
}

.partner-card:hover .partner-card-inner::before {
  opacity: 0.03;
}

.partner-card:hover .partner-card-inner::after {
  opacity: 1;
  left: 100%;
}

.partner-logo-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 15px 40px rgba(26, 20, 18, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.8),
    0 0 0 10px rgba(244, 127, 114, 0.15);
  transition: all var(--transition-slow);
  z-index: 2;
  overflow: hidden;
}

.partner-card:hover .partner-logo-wrapper {
  transform: scale(1.08) rotate(3deg);
  box-shadow:
    0 20px 50px rgba(244, 127, 114, 0.3),
    0 0 0 8px rgba(255, 255, 255, 1),
    0 0 0 12px rgba(244, 127, 114, 0.25),
    0 0 80px rgba(244, 127, 114, 0.2);
}

.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all var(--transition-slow);
  z-index: 1;
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
}

.partner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.partner-name {
  position: relative;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--premium-ink);
  margin: 0;
  letter-spacing: -0.03em;
  z-index: 2;
  transition: all var(--transition-base);
  line-height: 1.2;
}

.partner-card:hover .partner-name {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-2px);
}

.partner-description {
  position: relative;
  font-size: clamp(1.15rem, 1.4vw, 1.3rem);
  color: var(--premium-ink-light);
  margin: 0;
  z-index: 2;
  transition: all var(--transition-base);
  font-weight: 500;
  line-height: 1.5;
}

.partner-card:hover .partner-description {
  color: var(--premium-ink);
  transform: translateY(-2px);
}

.partner-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle,
      rgba(244, 127, 114, 0.25) 0%,
      rgba(247, 158, 149, 0.15) 40%,
      transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

.partner-card:hover .partner-card-glow {
  opacity: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.6;
  }
}

/* Add decorative corner accents */
.partner-card-inner::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-top: 3px solid rgba(244, 127, 114, 0.2);
  border-right: 3px solid rgba(244, 127, 114, 0.2);
  border-radius: 0 var(--radius-md) 0 0;
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 3;
}

.partner-card:hover .partner-card-inner::before {
  opacity: 1;
  top: 15px;
  right: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .partner-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }

  .partner-card-inner {
    min-height: 340px;
  }

  .partner-logo-wrapper {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .partner-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .partner-card-inner {
    padding: var(--space-xl) var(--space-md);
    min-height: 300px;
    gap: var(--space-md);
  }

  .partner-logo-wrapper {
    width: 120px;
    height: 120px;
    box-shadow:
      0 10px 30px rgba(26, 20, 18, 0.1),
      0 0 0 6px rgba(255, 255, 255, 0.8),
      0 0 0 8px rgba(244, 127, 114, 0.15);
  }

  .partner-card:hover .partner-logo-wrapper {
    box-shadow:
      0 15px 40px rgba(244, 127, 114, 0.25),
      0 0 0 6px rgba(255, 255, 255, 1),
      0 0 0 10px rgba(244, 127, 114, 0.25);
  }
}