@charset "utf-8";
/* ==========================================================================
   JodiMaker2 - Master Stylesheet (assets/css/style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Base & Global Styles
   -------------------------------------------------------------------------- */
body {
  background-color: #f4f6fa;
  font-family: 'Poppins', sans-serif;
  color: #334155;
}

/* --------------------------------------------------------------------------
   2. Top Contact Bar
   -------------------------------------------------------------------------- */
.topboxb {
  background: #ad332b;
  color: #ffffff;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.top-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-contact-list li a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  transition: color 0.2s;
}
.top-contact-list li a:hover {
  color: #ffeaa7;
}
.top-tagline {
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .topboxb {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   3. Main Unified Desktop Header (Logo Left, Menu & Register Right)
   -------------------------------------------------------------------------- */
.site-main-header {
  background: #fed2a3;
  border-bottom: 1px solid #f6be86;
  box-shadow: 0 4px 20px rgba(180, 110, 40, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  min-height: 68px;
}
.header-logo-area {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.main-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.desktop-navigation {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}
.desktop-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav-item {
  position: relative;
}
.desktop-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #1e293b !important;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.desktop-nav-link:hover,
.desktop-nav-item.active .desktop-nav-link {
  color: #ad332b !important;
  background: rgba(255, 255, 255, 0.55);
}
.nav-caret {
  font-size: 11px;
  margin-left: 5px;
  transition: transform 0.2s;
}
.dropdown-nav-item:hover .nav-caret {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.desktop-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1005;
}
.dropdown-nav-item:hover .desktop-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-dropdown-link {
  display: flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #334155 !important;
  text-decoration: none !important;
  transition: all 0.2s;
}
.desktop-dropdown-link:hover,
.desktop-dropdown-link.active {
  background: #fff3e6;
  color: #ad332b !important;
  padding-left: 22px;
}

/* Desktop Register Button */
.desktop-register-tab {
  margin-left: 10px;
}
.btn-desktop-register {
  background: linear-gradient(135deg, #ad332b 0%, #d64c1a 100%);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(173, 51, 43, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-desktop-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(173, 51, 43, 0.45);
  background: linear-gradient(135deg, #c43a31 0%, #e05b26 100%);
}

/* --------------------------------------------------------------------------
   4. Mobile Header Controls (< 992px)
   -------------------------------------------------------------------------- */
.btn-mobile-register {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.3);
  border: none;
  white-space: nowrap;
}
.btn-mobile-register:active {
  transform: scale(0.96);
}

.btn-mobile-menu-toggle {
  background: #373f6e !important;
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(55, 63, 110, 0.3);
  transition: all 0.2s ease;
}
.btn-mobile-menu-toggle:active {
  background: #2b3353 !important;
  transform: scale(0.96);
}
.btn-mobile-menu-toggle i {
  font-size: 15px;
}
.menu-btn-label {
  font-size: 12px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   5. Mobile Slide-In Drawer Navigation (< 992px)
   -------------------------------------------------------------------------- */
.mobile-nav-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 999990 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}
.mobile-nav-backdrop.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-drawer-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: -330px !important;
  width: 300px !important;
  max-width: 85vw !important;
  height: 100vh !important;
  background: #ffffff !important;
  z-index: 999999 !important;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: none;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.mobile-drawer-wrapper.is-active {
  left: 0 !important;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.35) !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.mobile-drawer-close {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #64748b;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-drawer-close:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
}

.mobile-quick-categories {
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.quick-cat-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.quick-cat-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.quick-cat-badge {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.quick-cat-badge:hover, .quick-cat-badge:active {
  background: #373f6e;
  color: #ffffff;
  border-color: #373f6e;
}

.mobile-drawer-body {
  padding: 12px 14px;
  flex-grow: 1;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-link {
  padding: 11px 14px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}
.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
  background: #f1f5f9 !important;
  color: #1e3c72 !important;
}
.dropdown-caret {
  transition: transform 0.2s ease;
}
.mobile-dropdown.is-open .dropdown-caret,
.mobile-dropdown.show .dropdown-caret {
  transform: rotate(180deg);
}
.mobile-sub-menu {
  list-style: none;
  padding: 6px 0;
  margin: 4px 0 8px 15px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: none;
}
.mobile-dropdown.is-open .mobile-sub-menu,
.mobile-dropdown.show .mobile-sub-menu {
  display: block !important;
}
.mobile-sub-link {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569 !important;
  text-decoration: none !important;
}
.mobile-sub-link:hover, .mobile-sub-link.active {
  background: #e2e8f0;
  color: #1e3c72 !important;
}

.mobile-register-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}
.btn-drawer-register {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
  color: #ffffff !important;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35) !important;
  text-decoration: none !important;
}

.mobile-drawer-footer {
  padding: 16px 14px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.drawer-helpline-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.helpline-title {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}
.drawer-contact-item {
  font-size: 12.5px;
  color: #64748b;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.drawer-contact-item:hover {
  color: #1e3c72;
}
body.mobile-menu-active {
  overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   6. Sticky Mobile Bottom Navigation Bar (< 768px)
   -------------------------------------------------------------------------- */
.mobile-bottom-app-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);
  z-index: 99990;
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
}
.bottom-nav-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #64748b;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 54px;
}
.bottom-nav-link i {
  font-size: 17px;
  margin-bottom: 3px;
  transition: transform 0.2s;
}
.bottom-nav-link.is-active,
.bottom-nav-link:hover {
  color: #ad332b;
}
.bottom-nav-link.is-active i {
  color: #ad332b;
  transform: translateY(-2px);
}

.bottom-nav-link.bottom-nav-highlight {
  color: #e11d48;
  position: relative;
  top: -6px;
}
.bottom-nav-link.bottom-nav-highlight .highlight-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.4);
  margin-bottom: 2px;
}
.bottom-nav-link.bottom-nav-highlight .highlight-circle i {
  font-size: 15px;
  margin-bottom: 0;
}
.bottom-nav-link.bottom-nav-highlight span {
  font-weight: 700;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 60px !important;
  }
  .main-logo-img {
    max-height: 44px;
  }
}

/* --------------------------------------------------------------------------
   7. Hero Header Banners
   -------------------------------------------------------------------------- */
.list-hero, .profile-hero, .register-hero, .testimonial-hero, .contact-hero {
  background: linear-gradient(135deg, rgba(20, 42, 85, 0.85) 0%, rgba(30, 60, 114, 0.85) 100%), url('../images/banner.jpg') center center / cover no-repeat;
  padding: 42px 0 35px 0;
  color: #ffffff;
  margin-bottom: 30px;
  box-shadow: 0 6px 25px rgba(30, 60, 114, 0.2);
}
.list-hero .breadcrumb, .profile-hero .breadcrumb, .register-hero .breadcrumb, .testimonial-hero .breadcrumb, .contact-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 10px;
  font-size: 13px;
}
.list-hero .breadcrumb a, .profile-hero .breadcrumb a, .register-hero .breadcrumb a, .testimonial-hero .breadcrumb a, .contact-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.list-hero .breadcrumb a:hover, .profile-hero .breadcrumb a:hover, .register-hero .breadcrumb a:hover, .testimonial-hero .breadcrumb a:hover, .contact-hero .breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.list-hero .breadcrumb .active, .profile-hero .breadcrumb .active, .register-hero .breadcrumb .active, .testimonial-hero .breadcrumb .active, .contact-hero .breadcrumb .active {
  color: #ffffff;
  font-weight: 500;
}
.list-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.list-hero h1, .register-hero h1, .testimonial-hero h1, .contact-hero h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.register-hero p, .testimonial-hero p, .contact-hero p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 5px;
  margin-bottom: 0;
}
.profile-count-pill {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   8. Homepage Profile Sections
   -------------------------------------------------------------------------- */
.home-profile-section {
  padding: 50px 0 40px 0;
  font-family: 'Poppins', sans-serif;
}
.groom-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  border-bottom: 1px solid #e2e8f0;
}
.bride-section {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.modern-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.title-accent {
  color: #1e3c72;
  font-weight: 800;
}
.bride-section .title-accent {
  color: #be185d;
}
.section-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 4px 0 0 0;
}
.btn-view-all {
  font-size: 13px;
  font-weight: 600;
  color: #1e3c72;
  background: #ffffff;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}
.btn-view-all:hover {
  background: #1e3c72;
  color: #ffffff;
  border-color: #1e3c72;
  transform: translateX(3px);
  text-decoration: none;
}
.bride-section .btn-view-all:hover {
  background: #be185d;
  border-color: #be185d;
  color: #ffffff;
}

.home-profile-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 6px 3px 14px 3px;
}
.home-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(30, 60, 114, 0.12);
  border-color: #93c5fd;
}
.bride-section .home-profile-card:hover {
  border-color: #f472b6;
  box-shadow: 0 14px 28px rgba(190, 24, 93, 0.12);
}
.hpc-image-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  background: #f8fafc;
  overflow: hidden;
}
.hpc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}
.home-profile-card:hover .hpc-img {
  transform: scale(1.06);
}
.hpc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.hpc-badge.bride-badge {
  background: rgba(190, 24, 93, 0.9);
}
.hpc-manglik-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e11d48;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
}
.hpc-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}
.hpc-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hpc-name a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s;
}
.hpc-name a:hover {
  color: #2563eb;
  text-decoration: none;
}
.bride-section .hpc-name a:hover {
  color: #db2777;
}
.hpc-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
  min-height: 48px;
}
.hpc-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Custom Owl Carousel Nav Buttons */
.custom-profile-carousel .owl-nav {
  margin-top: 10px;
  text-align: center;
}
.custom-profile-carousel .owl-nav button.owl-prev,
.custom-profile-carousel .owl-nav button.owl-next {
  background: #ffffff !important;
  color: #1e293b !important;
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
  border: 1px solid #e2e8f0 !important;
  margin: 0 6px;
  font-size: 18px !important;
  line-height: 36px !important;
  transition: all 0.2s ease;
}
.custom-profile-carousel .owl-nav button.owl-prev:hover,
.custom-profile-carousel .owl-nav button.owl-next:hover {
  background: #1e3c72 !important;
  color: #ffffff !important;
  border-color: #1e3c72 !important;
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   9. Profile Listing & Search Page (list.php)
   -------------------------------------------------------------------------- */
.search-filter-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 25px;
}
.search-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-input-custom {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 10px 16px;
  font-size: 14px;
  flex: 1;
  transition: all 0.2s;
}
.search-input-custom:focus {
  border-color: #2a5298;
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.12);
}
.btn-search-main {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  height: 48px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-search-main:hover {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.25);
}

/* Matrimonial Profile Card */
.matrimonial-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.matrimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  border-color: #dbeafe;
}
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.matrimonial-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}
.card-code-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(30, 60, 114, 0.9);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.card-manglik-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4757;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.card-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-name a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s;
}
.card-name a:hover {
  color: #2a5298;
}
.verified-badge {
  color: #0284c7;
  font-size: 14px;
}
.card-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.chip {
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-info-list {
  margin-bottom: 14px;
  flex-grow: 1;
}
.card-info-item {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-info-item i {
  color: #94a3b8;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.card-footer-actions {
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}
.btn-view-profile {
  background: #f8fafc;
  color: #1e3c72;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  height: 40px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-view-profile:hover {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  border-color: transparent;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-view-profile.bride-btn {
  color: #9d174d;
  background: #fdf2f8;
  border-color: #fbcfe8;
}
.btn-view-profile.bride-btn:hover {
  background: linear-gradient(135deg, #be185d 0%, #db2777 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(190, 24, 93, 0.2);
  text-decoration: none;
}
.empty-state-box {
  background: #ffffff;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
  padding: 50px 20px;
  text-align: center;
  color: #64748b;
  margin: 20px 0;
}
.empty-state-box i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 15px;
}
.empty-state-box h4 {
  color: #334155;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Mobile 2-Cards-Per-Row Layout */
@media (max-width: 767px) {
  .list-hero {
    padding: 24px 0 20px 0;
    margin-bottom: 18px;
  }
  .list-hero h1 {
    font-size: 20px;
  }
  .list-hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .profile-count-pill {
    font-size: 12px;
    padding: 3px 12px;
  }
  .search-filter-card {
    padding: 12px 14px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .search-input-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .search-input-custom {
    width: 100% !important;
    height: 46px;
    font-size: 13.5px;
  }
  .btn-search-main {
    width: 100% !important;
    height: 46px;
    justify-content: center;
    font-size: 14px;
    border-radius: 10px;
  }
  .matrimonial-card {
    border-radius: 12px;
    margin-bottom: 6px;
  }
  .card-img-wrapper {
    height: 165px !important;
  }
  .card-code-badge {
    top: 6px;
    right: 6px;
    font-size: 9.5px;
    padding: 2px 7px;
  }
  .card-manglik-badge {
    top: 6px;
    left: 6px;
    font-size: 9px;
    padding: 2px 6px;
  }
  .card-content {
    padding: 10px 8px;
  }
  .card-name {
    font-size: 13.5px;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-chips {
    gap: 3px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .chip {
    font-size: 10.5px;
    padding: 2px 6px;
  }
  .card-info-list {
    gap: 3px;
    margin-bottom: 8px;
    font-size: 11px;
  }
  .card-info-item {
    font-size: 11px;
    gap: 5px;
  }
  .card-info-item i {
    font-size: 11px;
    width: 12px;
  }
  .card-footer-actions {
    padding-top: 8px;
    margin-top: auto;
  }
  .btn-view-profile {
    height: 32px;
    font-size: 11.5px;
    padding: 4px 6px;
    gap: 4px;
    border-radius: 6px;
  }
}

/* --------------------------------------------------------------------------
   10. Profile Details Page (details.php)
   -------------------------------------------------------------------------- */
.profile-hero-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.profile-hero-title h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-code-badge {
  background: #ff4757;
  color: #fff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-hero-action {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-action:hover {
  background: #ffffff;
  color: #1e3c72;
  text-decoration: none;
  transform: translateY(-2px);
}
.profile-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef2f6;
  margin-bottom: 24px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.profile-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}
.profile-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafcff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-card-header h3 i {
  color: #2a5298;
  font-size: 17px;
}
.profile-card-body {
  padding: 20px;
}
.main-photo-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #edf2f7;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.main-photo-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}
.main-photo-wrapper:hover img {
  transform: scale(1.02);
}
.photo-overlay-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: background 0.2s;
}
.photo-overlay-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  text-decoration: none;
}
.thumbGallery {
  display: flex;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.thumbImg {
  flex: 0 0 calc(25% - 6px);
  max-width: calc(25% - 6px);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all 0.2s;
}
.thumbImg:hover {
  border-color: #2a5298;
  transform: translateY(-2px);
}
.thumbImg img {
  width: 100%;
  height: 75px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.stat-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}
.stat-pill-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.stat-pill-value {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}
@media (max-width: 767px) {
  .data-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.data-item {
  display: flex;
  flex-direction: column;
}
.data-label {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.data-label i {
  color: #94a3b8;
  font-size: 12px;
}
.data-value {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #edf2f7;
  min-height: 38px;
  display: flex;
  align-items: center;
}
.data-value.badge-highlight {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #3730a3;
}
.quote-box {
  background: #fafcff;
  border-left: 4px solid #2a5298;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  font-style: italic;
}
.cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4fd 100%);
  border: 1px solid #dbeafe;
}
.btn-contact-main {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-contact-main:hover {
  background: #059669;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-whatsapp-main {
  background: #25D366;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 8px;
  transition: all 0.2s;
}
.btn-whatsapp-main:hover {
  background: #1eb956;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

@media print {
  body { background: #fff !important; }
  .profile-hero, .hero-actions, .cta-card, .footerB, .topboxb, .site-main-header, .mobile-bottom-app-bar, .menuBx, .photo-overlay-btn { display: none !important; }
  .profile-card { box-shadow: none !important; border: 1px solid #ccc !important; break-inside: avoid; }
  .data-value { background: transparent !important; border: none !important; padding: 0 !important; }
}

/* --------------------------------------------------------------------------
   11. Registration Form (register.php)
   -------------------------------------------------------------------------- */
.form-section-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.form-section-header {
  background: #fafcff;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-header h3 i {
  color: #2a5298;
  font-size: 17px;
}
.form-section-body {
  padding: 22px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}
.form-group label .hindi-lbl {
  font-weight: 400;
  color: #64748b;
  font-size: 12px;
}
.form-control-custom {
  height: 46px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
  transition: all 0.2s;
}
.form-control-custom:focus {
  border-color: #2a5298;
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.12);
}
.form-control-custom.is-invalid, select.form-control-custom.is-invalid, textarea.form-control-custom.is-invalid {
  border-color: #ef4444 !important;
  background-color: #fff5f5 !important;
}
.form-control-custom.is-invalid:focus, select.form-control-custom.is-invalid:focus, textarea.form-control-custom.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
}
.field-error-text {
  color: #dc2626;
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
  display: none;
  align-items: center;
  gap: 5px;
}
.field-error-text.show-error {
  display: flex !important;
}
textarea.form-control-custom {
  height: auto;
  resize: vertical;
}
.dt-select-row {
  display: flex;
  gap: 8px;
}
.dt-select-row select {
  flex: 1;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 13px;
  padding: 8px 10px;
}
.dt-select-row select:focus {
  border-color: #2a5298;
}
.upload-box-wrapper {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.upload-box-wrapper input[type="file"] {
  font-size: 13px;
  width: 100%;
}
.captcha-box,
.captcha-flex-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.captcha-flex-row .captcha-input-field {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
}
.captcha-img-box {
  flex: 0 0 auto;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.captcha-img-box img {
  height: 100%;
  width: auto;
  display: block;
}
.btn-refresh-cap {
  flex: 0 0 auto;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #f1f5f9;
  color: #475569;
  padding: 0 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-refresh-cap:hover {
  background: #e2e8f0;
  color: #1e293b;
}

@media (max-width: 480px) {
  .captcha-flex-row {
    gap: 6px;
  }
  .captcha-flex-row .captcha-input-field {
    font-size: 13px;
    padding: 0 8px;
    height: 42px;
  }
  .captcha-flex-row .captcha-img-box {
    height: 42px;
  }
  .captcha-flex-row .btn-refresh-cap {
    height: 42px;
    padding: 0 10px;
    font-size: 12px;
    gap: 4px;
  }
}

@media (max-width: 360px) {
  .captcha-flex-row .btn-refresh-cap span {
    display: none;
  }
  .captcha-flex-row .btn-refresh-cap {
    padding: 0 10px;
  }
}
.btn-register-submit {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff !important;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  height: 52px;
  font-size: 16px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.25);
}
.btn-register-submit:hover {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.35);
}

/* --------------------------------------------------------------------------
   12. Testimonials Page (testimonial.php)
   -------------------------------------------------------------------------- */
.testimonial-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #dbeafe;
}
.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(30, 60, 114, 0.2);
}
.client-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 3px 0;
}
.client-meta .city-badge {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}
.star-rating {
  margin-left: auto;
  color: #f59e0b;
  font-size: 13px;
}
.testimonial-quote {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.testimonial-quote i.fa-quote-left {
  position: absolute;
  left: 0;
  top: 2px;
  color: #cbd5e1;
  font-size: 14px;
}
.post-testmo-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}
.post-testmo-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-testmo-card h3 i {
  color: #2a5298;
}
.post-testmo-card p.subtitle {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}
.btn-submit-testmo {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  height: 46px;
  font-size: 14px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
  margin-top: 10px;
}
.btn-submit-testmo:hover {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(30, 60, 114, 0.3);
}

/* --------------------------------------------------------------------------
   13. Contact Us Page (contact.php)
   -------------------------------------------------------------------------- */
.info-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s ease;
}
.info-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-phone { background: #e0f2fe; color: #0284c7; }
.icon-email { background: #fef3c7; color: #d97706; }
.icon-location { background: #fee2e2; color: #dc2626; }
.icon-whatsapp { background: #dcfce7; color: #16a34a; }

.info-card-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 4px 0;
}
.info-card-content p, .info-card-content a {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  text-decoration: none;
  line-height: 1.5;
}
.info-card-content a:hover {
  color: #2a5298;
  text-decoration: underline;
}
.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.contact-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-card h3 i {
  color: #2a5298;
}
.contact-form-card p.subtitle {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 22px;
}
.form-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  align-items: stretch;
}
.form-actions-row .btn-submit-contact,
.form-actions-row .btn-whatsapp-contact,
.form-actions-row .btn-whatsapp-main {
  flex: 1 1 0%;
  width: 50%;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 !important;
  box-sizing: border-box;
}
.form-actions-row .btn-submit-contact {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}
.form-actions-row .btn-submit-contact:hover {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 60, 114, 0.3);
}
.form-actions-row .btn-whatsapp-contact,
.form-actions-row .btn-whatsapp-main {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.form-actions-row .btn-whatsapp-contact:hover,
.form-actions-row .btn-whatsapp-main:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
@media (max-width: 640px) {
  .form-actions-row {
    flex-direction: column;
    gap: 10px;
  }
  .form-actions-row .btn-submit-contact,
  .form-actions-row .btn-whatsapp-contact,
  .form-actions-row .btn-whatsapp-main {
    width: 100%;
    flex: none;
  }
}

