/* ========================================
   SAFOOD - Restaurant POS System
   Complete Responsive CSS (Figma Exact)
   ======================================== */

:root {
  --dark-brown: #2C2416;
  --gold: #B8954A;
  --light-gold: #D4B575;
  --cream: #FBF8F0;
  --beige: #F6EEDB;
  --text-dark: #2C2416;
  --text-medium: #6B5D4F;
  --text-light: #D4C7B5;
  --text-gray: #968778;
  --white: #FFFFFF;
  --border-light: #EAE3D5;
  --font-inter: 'Inter', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --max-width: 1512px;
  --container-padding: 104px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-inter);
  color: var(--text-dark);
  /* line-height: 1.6; */
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  /*padding-bottom: 100px;*/
}
.text-center { text-align: center; }

/* ===== BADGE & SECTION HEADERS ===== */
.badge {
  display: inline-block;
  background: #FFF8E7;
  border: 1px solid rgba(184, 149, 74, 0.30);
  border-radius: 100px;
  padding: 9px 20px;
  color: #B8954A;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  margin-bottom: 24px;
}
.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0.35px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-dark { color: #2C2416; }
.title-gold { color: #968778; }
.section-subtitle {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.44px;
  color: var(--text-medium);
  max-width: 900px;
  /* max-width: 768px; */
  margin: 0 auto;
}
.section-header { margin-bottom: 48px; }
.section-title-dark {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn-custom{
  width: 33% !important;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #B5911C 0%, #B7931A 50%, #9D7A26 100%);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(184, 149, 74, 0.3);
}
.btn-white {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid #FAF5E8;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-dark {
  background: var(--dark-brown);
  color: var(--white);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(44, 36, 22, 0.3);
}
.btn-white-outline {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid rgba(255, 255, 255, 0.30);
}
.btn-link {
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.01);
  padding: 20px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.logo-gold { color: var(--gold); letter-spacing: 0.07px; }
.logo-white { color: var(--white); }
.logo-dark { color: var(--text-dark); }
.nav-menu .btn-primary{
     /* display: none; */
}


.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-menu a {
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-menu a.active,
.nav-menu a:hover {
  color: var(--gold);
  font-weight: 700;
}
/* .nav-menu a:hover { color: var(--gold); } */
/* .active { color: var(--gold); border-bottom: 2px var(--gold) solid } */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.language-selector {
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
}
.language-selector span{
    display: flex;
    align-items: center;
    gap: 5px; /* icon aur EN ke darmiyan space */
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* change 1 - mobile menu ma actions hide karne ke liye */
.mobile-only-actions {
  display: none;
}
/* ===== HERO SECTION ===== */
.hero {
  min-height: 879px;
  position: relative;
  /* padding-bottom: 162px; */
  padding-top: 151px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: black;
  background-image: url('../Assets/Image/Solutions hero image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* z-index: 0; */
}
.hero-overlay {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, #2C2416 0%, rgba(44, 36, 22, 0.80) 50%, rgb(0 0 0 / 0%) 100%);
    /* background: linear-gradient(90deg, #2C2416 0%, rgba(44, 36, 22, 0.80) 50%, rgb(0 0 0) 100%); */
    /* opacity: 0.60; */
    /* z-index: 1; */
}
.hero-container {
  position: relative;
  z-index: 2;
  /* extra padding for centering content to remove the right form */
  padding: 20px 427px 157px 427px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 176px;
}
.hero-container .hero-image{margin-bottom: 50px;}
.hero-content {
  /*width: 604px;*/
  width: 100%;
  display: flex;
  flex-direction: column;
  /* extra align-items and text-align for centering content to remove the right form */
  align-items: center;
  text-align: center;
  gap: 32px;
}
.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: 0.12px;
  color: var(--white);
}
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  color: var(--text-light);
  width: 540px;
  /* width: 100%; */
}

    /* ===== POS CARD - REDESIGNED ===== */
.pos-card {
    width: 486px;
    max-width: 700px;
    background: #F5F3F0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E8E4DF;
}

.pos-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pos-cashier {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
}

.pos-register {
    color: var(--text-medium);
    font-size: 13px;
}

.pos-order {
    text-align: right;
}

.pos-order-id {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pos-time {
    color: var(--text-medium);
    font-size: 13px;
}

/* Two Column Layout */
.pos-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.pos-items {
    /*display: flex;*/
    display: grid;
    flex-direction: column;
    gap: 12px;
}

.pos-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    display: grid;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.item-name {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.item-price {
    color: var(--text-medium);
    font-size: 14px;
}

.pos-order-summary {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-title {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-medium);
    font-size: 14px;
    padding: 8px 0;
}

.summary-total {
    border-top: 1px solid #E8E4DF;
    margin-top: 12px;
    padding-top: 12px;
}

.total-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
}

.total-item.grand-total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #E8E4DF;
}

.grand-total span:first-child {
    font-weight: 600;
    font-size: 15px;
}

.grand-total span:last-child {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

/* Payment Section */
.pos-payment {
    margin-bottom: 16px;
}

.payment-title {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 12px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-btn {
    padding: 14px;
    background: #FFFFFF;
    border: 2px solid #E8E4DF;
    border-radius: 12px;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn.active {
    background: #FFF9F0;
    border-color: #D4B575;
    color: var(--text-dark);
}

.payment-btn:hover:not(.active) {
    border-color: var(--gold);
}

.btn-complete-order {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #B8954A 0%, #D4B575 100%);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(184, 149, 74, 0.3);
    transition: transform 0.3s ease;
}

.btn-complete-order:hover {
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features { padding: 100px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-image {
  position: relative;
  width: 402px;
  height: 403px;
  background: var(--cream);
  border-radius: 20px;
  margin-bottom: 24px;
  overflow: hidden;
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--beige);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 9px 20px;
  color: #5A3D0B;
  font-size: 16px;
  font-weight: 400;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feature-card p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 24px;
}

/* ===== DASHBOARD SECTION ===== */
.dashboard {
  padding: 100px var(--container-padding);
  background: var(--white);
}
.dashboard-wrapper {
  background: linear-gradient(90deg, #2C2416 0%, rgba(44, 36, 22, 0.90) 30%, rgba(44, 36, 22, 0.60) 100%);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 49px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 100px;
}
.dashboard-content { 
  width: 579px; 
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.dashboard-content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.40px;
  color: var(--white);
  margin-bottom: 12px;
}
.dashboard-content > p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 28px;
  margin-bottom: 32px;
}
.dashboard-features { display: flex; flex-direction: column; gap: 22px; }
.dashboard-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon::after {
  /*content: '';*/
  width: 9.33px;
  height: 6.67px;
  border: 2px solid var(--white);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}
.check-icon-white {
  width: 20px;
  height: 20px;
  border: 1.67px solid rgba(255, 255, 255, 0.90);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon-white::after {
  /*content: '';*/
  width: 5px;
  height: 3.33px;
  border: 1.67px solid rgba(255, 255, 255, 0.90);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}
.dashboard-preview { width: 495px; }
.preview-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10), 0px 20px 25px -5px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}
.preview-header {
  background: #F5F1E8;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span {
  width: 12px;
  height: 12px;
  background: var(--text-light);
  border-radius: 100px;
}
.preview-stats { padding: 24px; display: flex; flex-direction: row; gap: 16px; }
.stat-card {
  flex: 1;
  background: linear-gradient(180deg, #FFF8E7 0%, #F5F1E8 100%);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 17px;
}
.stat-label { color: var(--text-medium); font-size: 14px; margin-bottom: 4px; }
.stat-value {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.07px;
}
.preview-chart {
  background: #FFF8E7;
  margin: 16px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-radius: 12px;
  height: 128px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* ===== STATISTICS SECTION ===== */
.statistics { padding: 100px 0; background: var(--cream); }
.stats-header { margin-bottom: 110px; }
.stats-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 104px;
}
.stats-content { width: 560px; }
.stats-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 37.50px;
  letter-spacing: 0.40px;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.touchpoint-list { display: flex; flex-direction: column; gap: 46px; }
.touchpoint-item { display: flex; align-items: center; gap: 16px; }
.touchpoint-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*.touchpoint-icon::after {*/
/*  content: '';*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  border: 2px solid var(--white);*/
/*  border-radius: 4px;*/
/*}*/
.touchpoint-text h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.touchpoint-text p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 29.25px;
}
.stats-image { width: 571px; }
.stats-card {
  position: relative;
  background: #F5EDD7;
  border-radius: 34px;
  padding: 23px;
}
.stats-card img { width: 100%; border-radius: 20px; }
.stats-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 23px;
}
.stat-box {
  position: absolute;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(22.50px);
  border-radius: 16px;
  /* border: 1px solid #E5E7EB; */
  padding: 17px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10);
}
.stat-box.gold {
  background: linear-gradient(180deg, #9B731E 0%, #D9BD83 100%);
}
.stat-box-label { color: #635547; font-size: 12px; line-height: 16px; }
.stat-box.gold .stat-box-label { color: var(--white); }
.stat-box-value {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.stat-box.gold .stat-box-value {
  color: var(--white);
  font-size: 24px;
  line-height: 32px;
}
.stat-box:nth-child(1) { top: 90px; left: -72px; }
.stat-box:nth-child(2) { top: 66px; right: -55px; width: 175px; }
.stat-box:nth-child(3) { bottom: 95px; left: -42px; }
.stat-box:nth-child(4) { bottom: 18px; right: -85px; }

/* ===== SOLUTIONS SECTION ===== */
.solutions { padding: 100px 0; background: var(--white); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.solution-card img {
  width: 100%;
  height: 403px;
  object-fit: cover;
}
.solution-card h3 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works { padding: 100px 48px; background: var(--white); }
.steps-wrapper { position: relative;  padding: 46px 0; /* padding: 96px 0; */}
.steps-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  background: #ECE9E3;
  border-radius: 100px;
  transform: translateY(-50%);
}
.steps-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 39px;
}
.step-card {
  width: 298px;
  background: #FDFBF6;
  border-radius: 24px;
  border: 1px solid rgba(250, 245, 232, 0.50);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 16px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #101828;
}
.step-card p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 26px;
}
.cta-box { margin-top: 50px; }
.cta-box p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 24px;
}

/* ===== ORDER MANAGEMENT SECTION ===== */
.order-management { padding: 100px 0; background: var(--cream); }
.order-grid {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 80px;
}
.order-grid.reverse { flex-direction: row-reverse; }
.order-item { flex: 1; }
.order-item img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10), 0px 20px 25px -5px rgba(0, 0, 0, 0.10);
}
.order-content { flex: 1; }
.order-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 37.50px;
  letter-spacing: 0.40px;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.order-content > p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 29.25px;
  margin-bottom: 24px;
}
.order-features { display: flex; flex-wrap: wrap; gap: 16px; }
.order-badge {
  background: var(--beige);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 8.5px 17px;
  color: #5A3D0B;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  min-height: 999px;
  background: linear-gradient(135deg, #B8954A 0%, #C4A563 50%, #D4B575 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #2C2416 0%, rgba(44, 36, 22, 0.90) 30%, rgba(44, 36, 22, 0.60) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 1176px;
  margin: 0 auto;
  padding: 130px 0;
}
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 100px;
  padding: 11px 21px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 32px;
}
.cta-badge span {
    display: flex;
    align-items: center;
    gap: 5px; /* icon aur EN ke darmiyan space */
}

.cta-content h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 90px;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-content > p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 39px;
  letter-spacing: 0.07px;
  margin-bottom: 70px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form {
  display: flex;
  /* gap: 16px; */
  gap: 0px;
  max-width: 672px;
  margin: 0 auto 80px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 8px;
}
.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: var(--font-inter);
  outline: none;
}
.input-wrapper input::placeholder { color: rgba(255, 255, 255, 0.60); }
.cta-form .btn-white {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10), 0px 20px 25px -5px rgba(0, 0, 0, 0.10);
}
.cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  margin-bottom: 48px;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 16px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 0;
  background: var(--cream);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand { width: 402.66px; }
.footer-brand p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 26px;
  margin: 16px 0 24px;
}
.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-links { display: flex; gap: 60px; }
.footer-column h4 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 16px;
}
.footer-column ul { display: flex; flex-direction: column; gap: 12px; }
.footer-column a,
.footer-column li {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 20px;
}
.footer-column a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(223.07, 212.32, 196.69, 0.40);
}
.footer-bottom p {
  color: var(--text-medium);
  font-size: 14px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: var(--text-medium);
  font-size: 14px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1400px) {
  :root { --container-padding: 60px; }
  .hero-container { gap: 100px; }
  .pos-card { width: 420px; }
  .features-grid,
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1199px) {
  :root { --container-padding: 40px; }
  .hero-title { font-size: 56px; line-height: 70px; }
  .hero-subtitle { font-size: 18px; width: 100%; }
  .pos-card { width: 100%; }
  .section-title { font-size: 40px; }
  .dashboard-wrapper { flex-direction: column; gap: 40px; }
  .dashboard-content, .dashboard-preview { width: 100%; }
  .stats-wrapper { flex-direction: column; gap: 60px; }
  .stats-content, .stats-image { width: 100%; }
  .order-grid { flex-direction: column !important; }
  .footer-grid { flex-direction: column; }
  .footer-brand { width: 100%; }
  .footer-links { justify-content: space-between; }
  /*.preview-stats{flex-direction: column;}*/
}

@media (max-width: 767px) {
  :root { --container-padding: 24px; }
  
  /* Navigation Mobile */
  .nav-menu {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--dark-brown);
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active { transform: translateX(0); }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
  /* change 2 - desktop nav-actions hide, mobile-only-actions show */
  .nav-actions {
    display: none !important;
  }
  
  .mobile-only-actions {
    display: none;
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
  }
  
  .nav-menu.active .mobile-only-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  /* change 3 - mobile language selector styling */
  .mobile-lang-selector {
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .mobile-lang-selector .lang-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    margin: 8px 0 0;
    min-width: 120px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .mobile-lang-selector.active .lang-options {
    display: block;
  }
  
  .mobile-lang-selector .lang-options li {
    padding: 10px 16px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    text-align: center;
  }
  
  .mobile-lang-selector .lang-options li:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .mobile-lang-selector .lang-options li.active {
    color: #d4af37;
  }
  
  /* change 4 - mobile button styling */
  .mobile-get-started {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  /* RTL support for mobile lang dropdown */
  html[dir="rtl"] .mobile-lang-selector .lang-options {
    left: 50%;
    right: auto;
  }
  
  
  /* Hero */
  .hero { padding-top: 120px; min-height: auto; }
  .hero-container { flex-direction: column; gap: 60px; }
  .hero-content { width: 100%; }
  .hero-title { font-size: 40px; line-height: 50px; }
  .hero-subtitle { font-size: 16px; line-height: 26px; }
   
  .pos-card { width: 100%; max-width: 400px; }
  /*.pos-items{display: flex;}*/
  .pos-body {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
  
  
    .preview-stats { 
        flex-direction: column; 
    }
  
  /* Sections */
  .section-title { font-size: 32px; line-height: 40px; }
  .section-subtitle { font-size: 16px; }
  .features-grid,
  .solutions-grid { grid-template-columns: 1fr; }
  .feature-image { width: 100%; height: 300px; }
  /*chnage*/
  .hero-image {width: stretch;}
   .dashboard{padding-top:40px !important;}
  .dashboard .container{padding: 0px !important;}
  .how-it-works {padding:0px;padding-bottom: 40px;}
  .dashboard-wrapper {padding: 25px;}
  /*chnage*/
  .steps-grid { flex-direction: column; align-items: center; }
  .steps-line { display: none; }
  .step-card { width: 100%; max-width: 400px; }
  
  .cta-content h2 { font-size: 48px; line-height: 60px; }
  /*.cta-form { flex-direction: column; }*/
  .cta-features { flex-direction: column; gap: 16px; }
  
  .footer-links { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 479px) {
   /* change 6 - extra small screens ma nav-container wrap */
  .nav-container {
    flex-wrap: wrap;
    gap: 12px;
  }
.hero-container {padding:0px 0px 60px 0px;}

  .hero-title { font-size: 32px; line-height: 42px; }
  .section-title { font-size: 28px; }
  .pos-card { max-width: 100%; }
  /*.payment-methods { flex-direction: column; }*/
  .pos-body {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
  .cta-content h2 { font-size: 36px; line-height: 46px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  /*chnage*/
  .hero-image {width: stretch;}
   .dashboard{padding-top:40px !important;}
  .dashboard .container{padding: 0px !important;}
  .how-it-works {padding:0px;padding-bottom: 40px;}
  .dashboard-wrapper {padding: 25px;}
  /*chnage*/
}

/* Language Selector Dropdown */
.language-selector {
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  position: relative;
}
.language-selector .lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
}
.language-selector .lang-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    margin: 8px 0 0;
    min-width: 120px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.language-selector.active .lang-options {
    display: block;
}
.language-selector .lang-options li {
    padding: 10px 16px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}
.language-selector .lang-options li:hover {
    background: rgba(255,255,255,0.1);
}
.language-selector .lang-options li.active {
    color: #d4af37;
}

/* RTL Support */
html[dir="rtl"] {
  text-align: right;
}
html[dir="rtl"] .nav-menu {
  text-align: right;
}
html[dir="rtl"] .nav-menu li {
  text-align: right;
}
html[dir="rtl"] .nav-menu li a {
  text-align: right;
  display: block;
}
html[dir="rtl"] .language-selector .lang-options {
  right: auto;
  left: 0;
}
html[dir="rtl"] .hero-wrapper,
html[dir="rtl"] .dashboard-wrapper,
html[dir="rtl"] .stats-wrapper,
html[dir="rtl"] .order-grid {
  flex-direction: row-reverse;
}
html[dir="rtl"] .order-grid.reverse {
  flex-direction: row;
}
html[dir="rtl"] .footer-grid {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-links {
  text-align: right;
}

