/* ==========================================================================
   New Footer Styling - Exact Match to Design Image (Dark Main Footer)
   ========================================================================== */

.nw_footer_section {
  position: relative;
  background: #0b0f19 !important;
  color: #e2e8f0;
  font-size: 15px;
  font-family: inherit;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  margin-top: 40px;
}

/* Top Area with 3 White Cards - Floating Container Card */
.nw_footer_top_area {
  background: transparent !important;
  padding-top: 40px;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  border-bottom: none !important;
  position: relative;
  z-index: 5;
}

/* ==========================================================================
   Top Area: Exact Image Matching Design (3D Container, Pink Accents, 3D Discs)
   ========================================================================== */
.nw_footer_top_area {
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  border-bottom: none !important;
  position: relative;
  z-index: 5;
}

/* Floating White Container with 3D Drop Shadow & Rounded Corners */
.nw_footer_top_area .container {
  background: #ffffff;
  border-radius: 40px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.22), 0 15px 30px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

/* Top-Left & Bottom-Right Accent Corner Gradient Ribbons */
.nw_top_area_ribbon_tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 24px;
  background: linear-gradient(135deg, #e6007e 0%, #ee48b4 100%);
  border-bottom-right-radius: 24px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(238, 72, 180, 0.35);
}

.nw_top_area_ribbon_tl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 120px;
  background: linear-gradient(135deg, #e6007e 0%, #ee48b4 100%);
  border-bottom-right-radius: 24px;
}

.nw_top_area_ribbon_br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 24px;
  background: linear-gradient(135deg, #e6007e 0%, #ee48b4 100%);
  border-top-left-radius: 24px;
  z-index: 2;
  box-shadow: 0 -4px 12px rgba(238, 72, 180, 0.35);
}

.nw_top_area_ribbon_br::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 120px;
  background: linear-gradient(135deg, #e6007e 0%, #ee48b4 100%);
  border-top-left-radius: 24px;
}

/* Top-Left Pink Wave Lines Contour Background */
.nw_top_area_wave_bg {
  position: absolute;
  top: -10px;
  left: -20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* Card Column & Pink Vertical Divider Lines */
.nw_top_card_col {
  position: relative;
}

@media (min-width: 992px) {
  .nw_top_card_col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1.5px;
    background: rgba(238, 72, 180, 0.25);
  }
}

.nw_top_card {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}

/* 3D Realistic Circular Icon Buttons */
.nw_top_card_3d_icon {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nw_top_card_img {
  width: 107px;
  height: 107px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(238, 72, 180, 0.25));
}

.nw_top_card:hover .nw_top_card_3d_icon {
  transform: translateY(-4px) scale(1.05);
}

/* Typography Matching Image */
.nw_footer_top_area .nw_top_card_title {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.nw_footer_top_area .address_text {
  color: #334155;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}

.nw_footer_top_area .block_desc {
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nw_footer_top_area .block_desc:hover {
  color: #e6007e;
}

.nw_footer_top_area .nw_sub_text {
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Newsletter Input Field & 3D Pink Pill Send Button */
.nw_footer_top_area .nw_news_box_row {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  padding: 4px 6px 4px 18px;
  position: relative;
}

.nw_footer_top_area .nw_news_input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #1e293b !important;
  font-size: 14px;
  font-weight: 500;
  padding-left: 0 !important;
}

.nw_footer_top_area .nw_news_input::placeholder {
  color: #94a3b8;
}

.nw_footer_top_area .nw_news_send_btn {
  background: linear-gradient(135deg, #e6007e 0%, #ee48b4 100%) !important;
  border: none !important;
  border-radius: 20px !important;
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(238, 72, 180, 0.45) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nw_footer_top_area .nw_news_send_btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(238, 72, 180, 0.6) !important;
}

/* Main Footer Area - Dark Background */
.nw_footer_main_area {
  background: #0b0f19 !important;
  color: #cbd5e1;
}

/* Titles with Blue Underline Accent */
.nw_col_title {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}



/* Links List */
.nw_col_links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nw_col_links li {
  margin-bottom: 12px;
}

.nw_col_links a {
  font-size: 15px;
  font-weight: 400;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nw_col_links a:hover {
  color: #ee48b4;
}

.nw_link_chevron {
  transition: transform 0.2s ease;
  stroke: #64748b;
}

.nw_col_links a:hover .nw_link_chevron {
  transform: translateX(3px);
  stroke: #ee48b4;
}

/* Contact Blocks (Chat, Mail, Phone, Career) */
.nw_contact_block_list {
  display: flex;
  flex-direction: column;
}

.nw_contact_block_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.block_icon_inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.block_desc {
  font-size: 15px;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

a.block_desc:hover {
  color: #ee48b4;
}

/* Newsletter Input Row */
.nw_news_box_row {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.nw_news_input {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  height: 42px;
  font-size: 14px !important;
  padding-left: 14px !important;
  color: #0f172a;
  flex: 1;
}

.nw_news_input::placeholder {
  color: #94a3b8;
}

.nw_news_send_btn {
  background: #ee48b4 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 0 16px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease;
}

.nw_news_send_btn:hover {
  background: #d6339a !important;
}

/* Address text */
.address_text {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  font-weight: 400;
}

.nw_sub_text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Social Grid */
.nw_social_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social_grid_item {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
}

.social_grid_item svg {
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.social_grid_item:hover {
  background: #ee48b4;
  color: #ffffff;
  border-color: #ee48b4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 72, 180, 0.4);
}

.social_grid_item:hover svg {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* Decorative Dot Matrix BG in Follow Us */
.nw_footer_dots_bg {
  position: absolute;
  right: -10px;
  top: 10px;
  width: 100px;
  height: 140px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Watermark Text at Bottom of Footer */
.nw_mountain_watermark_text {
  font-size: clamp(60px, 15vw, 260px);
  font-weight: 900;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 0.85;
  /* margin-top: 70px; */
  margin-bottom: 0;
  padding-bottom: 30px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  position: relative;
  width: 100%;
}

/* 4 Columns Grid Divider Lines */
.nw_footer_col_item {
  padding: 0 24px;
}

@media (min-width: 992px) {
  .nw_footer_col_item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.03);
  }
}

/* Bottom Copyright Bar */
.nw_bottom_copyright_bar {
  padding-top: 20px;
  padding-bottom: 100px;
  /* background: #070a12; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
  position: relative;
  z-index: 5;
}

.copyright_line_l,
.copyright_line_r {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
}

.copyright_text_str {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}

/* ==========================================================================
   Multi-Tier Responsive Media Queries (Desktop, Laptop, Tablet, Mobile)
   ========================================================================== */

/* Laptop / Desktop Medium (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .nw_footer_top_area .container {
    padding: 30px 28px;
    border-radius: 32px;
  }

  .nw_top_card {
    gap: 14px;
  }

  .nw_top_card_img {
    width: 90px;
    height: 90px;
  }

  .nw_footer_top_area .nw_top_card_title {
    font-size: 18px;
  }

  .nw_footer_col_item {
    padding: 0 16px;
  }
}

/* Tablet & Mobile Screens (<= 991px) */
@media (max-width: 991px) {
  .nw_footer_top_area {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .nw_footer_top_area .container {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .nw_top_card_col {
    position: relative;
  }

  .nw_top_card_col:not(:last-child) {
    border-bottom: 1px solid rgba(238, 72, 180, 0.15);
    padding-bottom: 20px;
    margin-bottom: 10px;
  }

  .nw_top_card_col:not(:last-child)::after {
    display: none !important;
  }

  .nw_top_card {
    gap: 16px;
  }

  .nw_top_card_img {
    width: 85px;
    height: 85px;
  }

  .nw_footer_col_item {
    border-right: none !important;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .nw_mountain_watermark_text {
    display: none !important;
  }

  .copyright_line_l,
  .copyright_line_r {
    width: 40px;
  }
}

/* Mobile Screens (<= 767px) */
@media (max-width: 767px) {
  .nw_footer_section {
    margin-top: 24px;
  }

  .nw_footer_top_area .container {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .nw_top_card_img {
    width: 76px;
    height: 76px;
  }

  .nw_footer_top_area .nw_top_card_title {
    font-size: 18px;
  }

  .nw_col_title {
    font-size: 14.5px;
    margin-bottom: 16px !important;
  }

  .nw_col_links li {
    margin-bottom: 10px;
  }

  .nw_col_links a {
    padding: 6px 0;
    min-height: 40px;
  }

  .nw_social_grid {
    gap: 12px;
  }

  .social_grid_item {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
  }

  .social_grid_item svg {
    width: 20px !important;
    height: 20px !important;
  }

  .nw_news_send_btn svg {
    width: 22px !important;
    height: 22px !important;
  }

  .nw_bottom_copyright_bar {
    padding-top: 16px;
    padding-bottom: 80px;
  }
}

/* Small Mobile Screens (<= 575px) */
@media (max-width: 575px) {
  .nw_footer_top_area .container {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .nw_top_card {
    gap: 14px;
  }

  .nw_top_card_img {
    width: 68px;
    height: 68px;
  }

  .nw_footer_top_area .nw_top_card_title {
    font-size: 17px;
  }

  .nw_footer_top_area .address_text,
  .nw_footer_top_area .block_desc,
  .nw_footer_top_area .nw_sub_text {
    font-size: 13.5px;
  }

  .nw_news_box_row {
    padding: 3px 4px 3px 14px;
  }

  .nw_news_input {
    font-size: 13px !important;
  }

  .nw_news_send_btn {
    width: 44px !important;
    height: 38px !important;
    padding: 0 !important;
  }

  .nw_news_send_btn svg {
    width: 22px !important;
    height: 22px !important;
  }

  .nw_mountain_watermark_text {
    font-size: clamp(32px, 14vw, 75px);
  }

  .copyright_flex_wrapper {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .copyright_line_l,
  .copyright_line_r {
    display: none !important;
  }

  .copyright_text_str {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

/* Extra Small Phones (<= 380px) */
@media (max-width: 380px) {
  .nw_top_card {
    flex-direction: column;
    align-items: flex-start;
  }

  .nw_top_card_img {
    width: 56px;
    height: 56px;
  }
}

/* ==========================================================================
   Increased 3D Tilt Card Effect with Ultra-Smooth & Slow Hover-Out Move (Desktop Only)
   ========================================================================== */
@media (min-width: 992px) {
  .nw_follow_3d_wrapper {
    perspective: 1200px;
  }

  /* Default state - Slow Hover OUT (0.8s duration) */
  .nw_follow_3d_card {
    position: relative;
    border-radius: 20px;
    padding: 20px 24px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
  }

  /* Hover IN state (0.5s duration) */
  .nw_follow_3d_wrapper:hover .nw_follow_3d_card {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotate3d(1, 0.8, 0, 32deg) translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(238, 72, 180, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 35px 55px 30px -35px rgba(0, 0, 0, 0.6), 0px 30px 35px 0px rgba(0, 0, 0, 0.35), 0 0 35px rgba(238, 72, 180, 0.3);
  }

  /* Layered 3D Elements floating inside in Z-space */
  .nw_follow_3d_content {
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 0px);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nw_follow_3d_wrapper:hover .nw_follow_3d_content {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translate3d(0, 0, 35px);
  }

  /* Floating Social Grid Buttons in 3D Space - Slow Hover OUT (0.8s reverse glide) */
  .nw_follow_3d_wrapper .social_grid_item {
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 0px);
    box-shadow: none;
    will-change: transform;
  }

  /* Reverse staggered delays on hover OUT (0.8s slow glide back) */
  .nw_follow_3d_wrapper .social_grid_item:nth-child(8) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
  }

  .nw_follow_3d_wrapper .social_grid_item:nth-child(7) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
  }

  .nw_follow_3d_wrapper .social_grid_item:nth-child(6) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
  }

  .nw_follow_3d_wrapper .social_grid_item:nth-child(5) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  }

  .nw_follow_3d_wrapper .social_grid_item:nth-child(4) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
  }

  .nw_follow_3d_wrapper .social_grid_item:nth-child(3) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
  }

  .nw_follow_3d_wrapper .social_grid_item:nth-child(2) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s;
  }

  .nw_follow_3d_wrapper .social_grid_item:nth-child(1) {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, background 0.4s ease, box-shadow 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  }

  /* Forward staggered delays on Hover IN (0.5s snappy pop) */
  .nw_follow_3d_wrapper:hover .social_grid_item {
    transform: translate3d(0, -18px, 70px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(1) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s, background 0.3s ease, box-shadow 0.5s ease 0.05s;
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(2) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s, background 0.3s ease, box-shadow 0.5s ease 0.1s;
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(3) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s, background 0.3s ease, box-shadow 0.5s ease 0.15s;
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(4) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, background 0.3s ease, box-shadow 0.5s ease 0.2s;
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(5) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s, background 0.3s ease, box-shadow 0.5s ease 0.25s;
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(6) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s, background 0.3s ease, box-shadow 0.5s ease 0.3s;
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(7) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s, background 0.3s ease, box-shadow 0.5s ease 0.35s;
  }

  .nw_follow_3d_wrapper:hover .social_grid_item:nth-child(8) {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, background 0.3s ease, box-shadow 0.5s ease 0.4s;
  }

  /* Direct hover on individual social item pops even higher with intense glow */
  .nw_follow_3d_wrapper .social_grid_item:hover {
    transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    transform: translate3d(0, -26px, 100px) scale(1.18) !important;
    background: #ee48b4 !important;
    border-color: #ee48b4 !important;
    box-shadow: 0 20px 35px rgba(238, 72, 180, 0.6), 0 0 25px rgba(238, 72, 180, 0.4) !important;
  }
}