:root {
  --navy: #1e3a5f;
  --navy-dark: #152a45;
  --navy-light: #2a4a73;
  --gold: #c9a55d;
  --gold-light: #d4b76a;
  --gold-dark: #b8944d;
  --whatsapp: #25d366;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --radius: 0.625rem;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Global Content Adjustment for Fixed Header */
body {
  padding-top: 80px;
  /* To prevent content from being hidden under the fixed header */
}

/* Ensure the store hero and pages with custom padding still look good */
.hero,
.py-20 {
  scroll-margin-top: 80px;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  height: 80px;
  display: flex;
  align-items: center;
}

/* Fix for WordPress Menu Structure */
.desktop-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li a,
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
  text-decoration: none;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li.current-menu-item a,
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

/* Mobile Menu WP Support */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu ul li a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-primary {
  width: 100%;
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--gold-light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

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

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

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  animation: slideInUp 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: var(--navy);
}

.modal-body {
  padding: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-400);
}

/* Cart Sidebar Redesign */
.cart-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 420px;
  background: #f8fafc;
  z-index: 2000;
  box-shadow: 15px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-sidebar-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f1f5f9;
  background: #fff;
}

.cart-sidebar-header .header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e3a5f;
}

.cart-sidebar-header .header-right i {
  color: #c9a55d;
  font-size: 1.2rem;
}

.cart-sidebar-header .cart-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1e3a5f;
}

.cart-sidebar-header .items-badge {
  background: #c9a55d;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: -4px;
}

.cart-sidebar-header .close-sidebar {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 5px;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Cart Item Card - Exact Styling */
.cart-item-card {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 10px;
  padding: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cart-item-card .item-info {
  text-align: right;
  padding-left: 20px;
}

.cart-item-card .item-title {
  display: block;
  font-weight: 800;
  color: #1e3a5f;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item-card .item-desc {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.cart-item-card .item-price {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: #c9a55d;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: left;
}

.cart-item-card .item-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.cart-item-card .btn-remove {
  background: #fff;
  border: 1px solid #fee2e2;
  color: #ef4444;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.cart-item-card .btn-remove:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
}

/* Sidebar Footer - Exact Matching */
.cart-sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #e2e8f0;
}

.total-label {
  font-weight: 800;
  color: #1e3a5f;
  font-size: 1.2rem;
}

.total-value {
  text-align: left;
  line-height: 1.1;
}

.total-value span#cart-total {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #c9a55d;
}

.total-value .currency {
  font-size: 1rem;
  color: #c9a55d;
  font-weight: 800;
}

.footer-actions {
  display: flex;
  gap: 1rem;
}

.btn-empty-cart {
  flex: 1;
  background: #fff;
  border: 1px solid #f1f5f9;
  color: #ef4444;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-checkout {
  flex: 1;
  background: #c9a55d;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
}

.empty-cart-view {
  text-align: center;
  padding: 4rem 2rem;
  color: #94a3b8;
}

.empty-cart-view i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.2;
}

.form-control {
  border-radius: 0.5rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 93, 0.1);
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
}

.animate-on-scroll.animate-in {
  opacity: 1 !important;
}

.animate-delay-100 {
  animation-delay: 100ms;
}

.animate-delay-200 {
  animation-delay: 200ms;
}

.animate-delay-300 {
  animation-delay: 300ms;
}

.animate-delay-400 {
  animation-delay: 400ms;
}

.animate-delay-500 {
  animation-delay: 500ms;
}

/* General Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.notice-bar {
  background-color: #fefce8;
  border-top: 1px solid #fef08a;
  border-bottom: 1px solid #fef08a;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.notice-bar span.bold {
  font-weight: 700;
}

/* WooCommerce Checkout Styling */
.woocommerce-checkout .checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .woocommerce-checkout .checkout-grid {
    grid-template-columns: 1fr 400px;
  }
}

/* Form Fields */
.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.woocommerce-billing-fields .form-row {
  margin: 0;
  width: 100%;
}

.woocommerce-billing-fields .form-row-wide {
  grid-column: span 2;
}

.woocommerce-billing-fields label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.woocommerce-billing-fields input.input-text,
.woocommerce-billing-fields select {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background-color: #fff;
  transition: all 0.2s;
}

.woocommerce-billing-fields input.input-text:focus,
.woocommerce-billing-fields select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 165, 93, 0.1);
}

/* Payment Section Styling */
.woocommerce-checkout-payment {
  background: #fff;
  border-radius: 8px;
}

ul.wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

ul.wc_payment_methods li.wc_payment_method {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.2s;
}

ul.wc_payment_methods li.wc_payment_method:hover {
  border-color: var(--gold);
  background: var(--gray-50);
}

ul.wc_payment_methods li.wc_payment_method label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Payment Icons (e.g. MyFatoorah) */
ul.wc_payment_methods li.wc_payment_method label img {
  max-height: 24px;
  margin-right: auto;
  /* Push to left in RTL */
}

/* Payment Box Details */
div.payment_box {
  background-color: var(--gray-50);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  position: relative;
  border: 1px solid var(--gray-200);
}

div.payment_box::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  /* RTL arrow */
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--gray-200);
}

/* Place Order Button */
.place-order {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.place-order button.button.alt {
  width: 100%;
  background-color: var(--navy);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.place-order button.button.alt:hover {
  background-color: var(--navy-dark);
}

/* Privacy Policy Text */
.woocommerce-privacy-policy-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  text-align: justify;
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(30, 58, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon i {
  font-size: 1.75rem;
  color: var(--navy);
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-weight: 600;
  color: var(--navy);
}

.stat-sublabel {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.badge-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

/* Header Refinement */
header.site-header {
  height: 100px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}

.logo img {
  max-height: 70px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 0 1rem;
}

.desktop-nav ul li {
  padding: 0 1.5rem;
  border-left: 1px solid #eee;
}

.desktop-nav ul li:last-child {
  border-left: none;
}

.desktop-nav ul li a {
  font-weight: 800;
  color: #1e3a5f;
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-store {
  background: var(--gold);
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.btn-login {
  border: 1px solid #1e3a5f;
  color: #1e3a5f;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  background: transparent;
}

.cart-icon-wrapper {
  position: relative;
  font-size: 1.25rem;
  color: #9ca3af;
}

.cart-icon-wrapper .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Service Card Refinement */
.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-title-wrapper h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a5f;
}

.section-title-wrapper .icon-pill {
  background: #fdf6e7;
  color: var(--gold);
  padding: 0.75rem;
  border-radius: 0.75rem;
}

.consultation-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: right;
  transition: all 0.3s ease;
}

.consultation-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.consultation-card .price-tag {
  background: var(--gold-light);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.consultation-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e3a5f;
  margin: 0;
}

.consultation-card .description {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.card-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-order-now {
  flex: 1;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-add-circle {
  width: 45px;
  height: 45px;
  border: 1px solid #e5e7eb;
  background: transparent;
  color: #1e3a5f;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.btn-add-circle.checked {
  color: var(--whatsapp);
  background: #f0fdf4;
  border-color: var(--whatsapp);
}

/* Testimonials Section */
.testimonial-card {
  background-color: var(--gray-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  height: 100%;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: rgba(201, 165, 93, 0.3);
}

.testimonial-text {
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

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

.author-avatar {
  width: 3rem;
  height: 3rem;
  background-color: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-info h4 {
  font-weight: 700;
  color: var(--navy);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--gray-50);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  width: fit-content;
  margin: 3rem auto 0;
}

.stars {
  color: var(--gold);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.blog-image {
  height: 12rem;
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.read-more:hover {
  color: var(--gold-dark);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-list {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(201, 165, 93, 0.1);
  color: var(--gold);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background-color: var(--gray-50);
  padding: 2rem;
  border-radius: 1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 165, 93, 0.2);
}

/* Tabs System */
.tabs-container {
  width: 100%;
  margin-top: 2rem;
}

.tab-triggers {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-trigger {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.tab-trigger:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.tab-trigger.active {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(201, 165, 93, 0.3);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.contact-tab-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card-hover);
  max-width: 800px;
  margin: 0 auto;
}

/* Layout Utilities */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hidden-md {
  display: none;
}

@media (min-width: 768px) {
  .hidden-md {
    display: flex;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Store Categories */
.categories-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold);
}

.category-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(201, 165, 93, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  font-size: 1.25rem;
}

.category-card p {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.service-count {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

/* Footer Refined Designs */
.site-footer {
  background-color: #1e3a5f;
  color: #fff;
  padding: 5rem 0 0;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-desc {
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-license {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

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

.footer-menu li {
  margin-bottom: 1rem;
}

.footer-menu li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-box {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.social-box:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-phone i {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.admin-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.75rem;
  text-decoration: none;
}

.admin-link:hover {
  color: #fff;
}

/* Header Separators for WP Menu */
.desktop-nav ul li {
  border-left: 1px solid #eee;
}

.desktop-nav ul li:last-child {
  border-left: none;
}

.desktop-nav ul li a {
  display: block;
  padding: 0 1.5rem;
  text-decoration: none;
}

/* Contract Badge Styles */
.contract-badge {
  display: inline-flex;
  align-items: center;
  background: #eff6ff;
  color: #2563eb;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid #dbeafe;
  margin-top: 0.5rem;
  gap: 0.4rem;
}

.contract-badge svg {
  width: 12px;
  height: 12px;
}

/* Success Notification */
.cart-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  border: 1px solid var(--gray-100);
}

.cart-notification.active {
  transform: translateY(0);
}

.cart-notification .notification-icon {
  width: 24px;
  height: 24px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.cart-notification .notification-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 600;
}

/* Service Details Modal Refinements */
.service-details-modal {
  max-width: 600px;
  width: 90%;
  padding: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}

.modal-header-img {
  height: 150px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.modal-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.terms-section {
  background: #fdf6e7;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  border: 1px solid #f9ebcc;
}

.terms-section h4 {
  margin-bottom: 1rem;
  color: #1e3a5f;
  font-size: 1.125rem;
}

.terms-section ul {
  padding-right: 1.25rem;
  margin: 0;
}

.terms-section li {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

/* Exact Modal Replication */
.service-details-modal {
  max-width: 500px;
  width: 95%;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-header-nav .header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e3a5f;
  font-weight: 700;
  font-size: 1.1rem;
}

.modal-header-nav .close-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-body-content {
  padding: 0 2rem 2rem;
  text-align: center;
}

.modal-body-content .service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.modal-body-content .service-desc {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.modal-body-content .service-price {
  color: #c9a55d;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.modal-terms-box {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.modal-terms-box .terms-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #1e3a5f;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.modal-terms-box .terms-text {
  color: #4b5563;
  font-size: 0.85rem;
  line-height: 1.6;
}

.btn-confirm-order {
  width: 100%;
  background: #c9a55d;
  color: #fff;
  border: none;
  padding: 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-confirm-order:hover {
  background: #b8944d;
}

/* Auth Modal Styles */
.auth-modal {
  max-width: 450px;
  width: 90%;
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.auth-modal .modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.auth-modal .modal-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.auth-form-group {
  text-align: right;
  margin-bottom: 1.5rem;
}

.auth-form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.auth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  direction: ltr;
  text-align: left;
}

.auth-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 93, 0.1);
}

.btn-send-otp {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-send-otp:hover {
  background: #b8944d;
  transform: translateY(-2px);
}

.auth-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1.5rem;
}

.close-auth-modal {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.25rem;
  cursor: pointer;
}

/* Checkout Page Redesign */
.checkout-banner {
  background: linear-gradient(to right, #1e3a5f, #2d5a8e);
  padding: 4rem 0;
  color: white;
  margin-bottom: -3rem;
  position: relative;
  overflow: hidden;
}

.checkout-banner .container {
  position: relative;
  z-index: 1;
}

.checkout-banner .btn-back {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.checkout-banner .btn-back:hover {
  color: white;
}

.checkout-banner h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

.checkout-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.checkout-page-container {
  padding-bottom: 6rem;
  background: #f8fafc;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr !important;
  }
}

.checkout-section-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 2rem;
}

/* Order Summary (Right Column) */
.order-summary-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 2rem;
}

.order-summary-title i {
  color: #c9a55d;
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkout-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #fdfdfd;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: transform 0.2s;
}

.checkout-item-card:hover {
  transform: translateX(-5px);
  border-color: #e2e8f0;
}

.checkout-item-card .item-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.checkout-item-card .btn-remove {
  color: #ef4444;
  font-size: 1.1rem;
  background: #fff;
  border: 1px solid #fee2e2;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.checkout-item-card .btn-remove:hover {
  background: #ef4444;
  color: #fff;
}

.checkout-item-card .item-info {
  text-align: right;
  flex: 1;
}

.checkout-item-card .item-title {
  display: block;
  font-weight: 800;
  color: #1e3a5f;
  font-size: 1rem;
  margin-bottom: 4px;
}

.checkout-item-card .item-category {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.checkout-item-card .item-price {
  color: #c9a55d;
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
}

.checkout-notes-label {
  display: block;
  font-weight: 700;
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.checkout-textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #fdfdfd;
  border-radius: 10px;
  padding: 1.25rem;
  min-height: 120px;
  font-family: inherit;
  resize: vertical;
}

/* Sidebar Details (Left Column) */
.checkout-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Payment Details Card - Sidebar Refinement */
.payment-details-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 1.5rem !important;
}

.payment-details-card h3 {
  text-align: right;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
}

.auth-box {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.auth-header i {
  color: #c9a55d;
  font-size: 1.1rem;
}

.checkout-input-group {
  text-align: right;
  margin-bottom: 1rem;
}

.checkout-input-group label {
  display: block;
  font-weight: 700;
  color: #1e3a5f;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

#checkout-phone {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #1e3a5f;
  font-weight: 600;
}

.btn-checkout-otp {
  width: 100%;
  background: #c9a55d;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.btn-checkout-otp:hover {
  background: #b8944d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 165, 93, 0.3);
}

.checkout-sidebar-totals {
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.sb-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.sb-total-row .label {
  color: #64748b;
  font-weight: 700;
  font-size: 0.9rem;
}

.sb-total-row .value {
  color: #1e3a5f;
  font-weight: 800;
  font-size: 1rem;
}

.sb-total-row.main-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}

.sb-total-row.main-total .label {
  color: #1e3a5f;
  font-size: 1.1rem;
  font-weight: 800;
}

.sb-total-row.main-total .value {
  color: #1e3a5f;
  font-size: 1.6rem;
  font-weight: 900;
}

#sb-total {
  color: #c9a55d;
  margin-left: 4px;
}

.currency {
  color: #c9a55d;
  font-size: 1rem;
  font-weight: 800;
}

/* Payment Methods Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.payment-method-item {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.payment-method-item i {
  font-size: 1.5rem;
  color: #1e3a5f;
}

.payment-method-item span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e3a5f;
}

.payment-method-item:hover {
  border-color: #c9a55d;
  background: #fdfaf3;
}

.payment-method-item.active {
  border-color: #c9a55d;
  background: #fdfaf3;
  box-shadow: 0 4px 12px rgba(201, 165, 93, 0.1);
}

.payment-method-item.active i,
.payment-method-item.active span {
  color: #c9a55d;
}

@media (max-width: 640px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}