@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #fefdfb;
}

:root {
  --primary-red: #9e130f;
  --primary-red-light: #fdeaea;
  --primary-red-dark: #7a0f0c;
  --golden-yellow: #f59e0b;
  --golden-yellow-light: #fef3c7;
  --cream: #fbf0e7;
  --cream-light: #fefaf5;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --text-dark: #2a2a2a;
  --text-medium: #555555;
  --text-light: #777777;
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.15);
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.5s ease;
}

p {
  color: var(--text-medium);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  font-weight: 700;
}

a {text-decoration: none;}

html {
  scroll-behavior: smooth;
}

.desk-view {display: block;}
.mob-view {display: none;}

/* HEADER */
header {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header .top-info ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0px;
}

header .top-info ul li a {
  text-decoration: none;
  transition: var(--transition-fast);
}

header .top-info ul li .main-info {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-fast);
}

header .top-info ul li .icon svg {
  color: var(--golden-yellow);
  transition: var(--transition-fast);
}

header .top-info ul li:hover .icon svg,
header .top-info ul li:hover .main-info {
  color: var(--primary-red);
}

header .navbar-expand-md .navbar-collapse {
  justify-content: space-between;
}

header .navbar .container {
  display: block;
}

header .navbar .container .row {
  align-items: center;
}

header .navbar .navbar-nav .nav-item .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0px 18px;
  font-size: 16px;
  position: relative;
  transition: var(--transition-fast);
}

header .navbar .navbar-nav .nav-item .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--golden-yellow), var(--primary-red));
  bottom: -5px;
  left: 18px;
  transition: var(--transition-fast);
}

header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-red);
}

header .navbar .navbar-nav .nav-item .nav-link:hover:after,
header .navbar .navbar-nav .nav-item .nav-link.active:after {
  width: calc(100% - 36px);
}

header .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-red);
  font-weight: 600;
}

header .navbar .navbar-main .navbar-brand img {
  width: 40%;
  height: auto;
  transition: var(--transition-fast);
}

header .navbar .navbar-main .navbar-brand:hover img {
  transform: scale(1.05);
}

/* HERO VIDEO */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 600px;
}

/* ABOUT SECTION */
.about-section {
  padding: 120px 0;
  background: var(--cream-light);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23f59e0b" opacity="0.03" d="M0,0 L100,0 L100,100 Z" /></svg>');
  background-size: cover;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-img {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-slow);
}

.about-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.about-sub-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

.about-info {
  padding-left: 40px;
}

.about-us {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--golden-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-head {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-para {
  font-size: 1rem;
  margin-bottom: 30px;
  color: var(--text-medium);
}

.check-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-icons li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.chk-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-red), var(--golden-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-icon svg, .chk-icon i {
  color: white;
  font-size: 16px;
}

/* COUNTER SECTION */
.counter-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23ffffff" opacity="0.05" d="M0,0 L100,0 L100,100 Z" /></svg>');
  background-size: cover;
}

.counter-info {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.counter-info h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--golden-yellow);
  font-family: "Playfair Display", serif;
}

.counter-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PERFECT BLEND SECTION */
.perfect-blend-sec {
  padding: 10px 0;
  background: var(--off-white);
}

.perfect-blend-sec .row {
  align-items: center;
}

.perfect-left {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

#perfectSlider {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

#perfectSlider .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carousel-indicators {
  margin-bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background: var(--golden-yellow);
}

.perfect-flex {
  display: flex;
  justify-content: space-around;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  margin-top: 30px;
  box-shadow: var(--shadow-light);
}

.per-column {
  text-align: center;
}

.per-column p {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.per-column span {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

.perfect-right {
  padding-left: 60px;
}

.perfect-right h2 {
  font-size: 2.25rem;
  color: var(--primary-red);
  margin-bottom: 25px;
}

.perfect-para {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 40px;
  line-height: 1.8;
}

.perfect-prem-flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.prem-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red-light), var(--golden-yellow-light));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prem-icon svg, .prem-icon i {
  color: var(--primary-red);
  font-size: 24px;
}

.prem-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.prem-info ul li:first-child {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.prem-info ul li:last-child {
  font-size: 1rem;
  color: var(--text-medium);
}

.date-btn {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-slow);
  box-shadow: 0 10px 30px rgba(158, 19, 15, 0.2);
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.date-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(158, 19, 15, 0.3);
  color: white;
}

/* WHY CHOOSE SECTION */
.why-choose-sec {
  padding: 90px 0;
  background: var(--cream-light);
}

.arabiz-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.arabiz-head h2 {
  font-size: 2.2rem;
  color: var(--primary-red);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.arabiz-head h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--golden-yellow));
  border-radius: 2px;
}

.arabiz-head p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  /* margin-bottom: 30px; */
  box-shadow: var(--shadow-light);
  transition: var(--transition-slow);
  border: 1px solid rgba(245, 158, 11, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-medium);
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-red), var(--golden-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.feature-card:hover:before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-red-light), var(--golden-yellow-light));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon svg, .feature-icon i {
  color: var(--primary-red);
  font-size: 25px;
}

.feature-card h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 100%);
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.cta-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23ffffff" opacity="0.05" d="M0,0 L100,0 L100,100 Z" /></svg>');
  background-size: cover;
}

.cta-card h2 {
  font-size: 1.9rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.cta-card p {
  font-size: 1rem;
  color: var(--golden-yellow-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-button {
  background: linear-gradient(135deg, var(--golden-yellow), #fbbf24);
  color: var(--text-dark);
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: var(--transition-slow);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fbbf24, var(--golden-yellow));
  opacity: 0;
  transition: var(--transition-fast);
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.cta-button:hover:before {
  opacity: 1;
}

/* FOOTER */
.footer-section {
  background: linear-gradient(135deg, #1a0f0e 0%, #2c1810 100%);
  color: white;
  position: relative;
}

.footer-strip {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  position: relative;
}

.footer-strip .footer-navbar {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.footer-strip .footer-navbar .nav-item .nav-link {
  color: var(--golden-yellow-light);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-strip .footer-navbar .nav-item .nav-link:hover {
  color: white;
}

#toBtn {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--golden-yellow));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: var(--transition-slow);
  border: none;
  opacity: 0;
  visibility: hidden;
}

#toBtn:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#toBtn.show {
  opacity: 1;
  visibility: visible;
}

.footer-info {
  padding: 80px 0 40px;
}

.footer-column h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--golden-yellow);
}

.footer-logo img {
  width: 50%;
  margin-bottom: 25px;
}

.social-icons ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.social-icons ul li a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.social-icons ul li a:hover {
  background: var(--golden-yellow);
  transform: translateY(-5px);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 300;
}

.footer-links li a:hover {
  color: var(--golden-yellow);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  margin-top: 40px;
}

.ft-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ft-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--golden-yellow);
}

.ft-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-info ul li:first-child {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.ft-info ul li:last-child,
.ft-info ul li:last-child a {
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-left p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

.copyright-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.copyright-right ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.copyright-right ul li a:hover {
  color: var(--golden-yellow);
}

#whatsUpIcon {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: var(--transition-slow);
  z-index: 9999;
  border: 3px solid white;
}

#whatsUpIcon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

#whatsUpIcon a svg, #whatsUpIcon a i {
  color: white;
  font-size: 1.9rem;
}

/* PRIVACY & COOKIES PAGE STYLES */
.policy-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--cream) 100%);
  text-align: center;
}

.policy-hero h1 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.policy-hero h1 span {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 30px;
}

.policy-hero p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.policy-content {padding: 70px 0;}

.policy-section h2 {
  font-size: 1.45rem;
  margin-bottom: 15px;
}

.policy-section h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.cookies-table {margin-bottom: 25px;}
.cookies-table tr th, .cookies-table tr td {padding: 10px;}

/* ABOUT US PAGE STYLES */
.about-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--cream) 100%);
  text-align: center;
}

.about-hero h1 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-hero h1 span {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 30px;
}

.about-hero p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-story {
  padding: 70px 0;
}

.story-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-card {
  padding: 40px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.story-card h2 {
  font-size: 1.9rem;
  margin-bottom: 25px;
  color: var(--primary-red);
}

.story-card p {
  margin-bottom: 17px;
  font-size: 1rem;
}
.story-card p:last-of-type {margin-bottom: 0;}

.mission-vision-section {
  padding: 70px 0;
  background: var(--off-white);
}

.mission-card, .vision-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  height: 100%;
  text-align: center;
  transition: var(--transition-slow);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-red-light), var(--golden-yellow-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon svg, .card-icon i {
  color: var(--primary-red);
  font-size: 25px;
}

.mission-card h3, .vision-card h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.values-section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 1.9rem;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-slow);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-red-light), var(--golden-yellow-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon svg, .value-icon i {
  color: var(--primary-red);
  font-size: 25px;
}

.value-card h4 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 30px;
  color: var(--golden-yellow);
  margin-bottom: 10px;
  padding-bottom: 18px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTACT PAGE STYLES */
.contact-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--primary-red-light) 100%);
  text-align: center;
}

.contact-hero h1 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-hero h1 span {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 30px;
}

.contact-section {
  padding: 100px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-card, .contact-form-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.contact-info-card h2, .contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-red);
}

.contact-details {
  margin: 40px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red-light), var(--golden-yellow-light));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--primary-red);
  font-size: 20px;
}

.contact-text h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-text a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.contact-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.business-hours h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-slow);
  box-shadow: 0 10px 30px rgba(158, 19, 15, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(158, 19, 15, 0.3);
}

.map-section {
  padding: 0 0 100px;
}

.map-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-placeholder {
  padding: 60px;
  text-align: center;
  background: var(--off-white);
}

.map-placeholder svg {
  font-size: 5rem;
  color: var(--primary-red);
  margin-bottom: 25px;
}

.map-placeholder h3 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

/* PRODUCTS PAGE STYLES */
.product-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--golden-yellow-light) 0%, var(--cream) 100%);
  text-align: center;
}

.product-hero h1 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.product-hero h1 span {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 30px;
}

.products-section {
  padding: 70px 0;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-intro h2 {
  font-size: 1.9rem;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-slow);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--golden-yellow);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.product-image {
  height: 250px;
  padding: 10px;
  text-align: center;
  overflow: hidden;
}

.product-image img {
  /* width: 100%; */
  height: 100%;
  /* object-fit: cover; */
  transition: var(--transition-slow);
}

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

.product-content {
  padding: 40px;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.product-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red-light), var(--golden-yellow-light));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  color: var(--primary-red);
  font-size: 22px;
}

.product-title span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: var(--text-medium);
}

.product-features h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-medium);
}

.product-features li svg {
  color: var(--primary-red);
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--off-white);
  border-radius: var(--border-radius-md);
}

.spec-item {
  text-align: center;
}

.spec-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-red);
}

.product-actions {
  display: flex;
  gap: 15px;
}

.order-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.phone-btn {
  background: var(--primary-red);
  color: white;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  color: white;
}

.comparison-section {
  padding: 100px 0;
  background: var(--off-white);
}

.comparison-table {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: var(--primary-red);
  color: white;
  padding: 25px 20px;
  text-align: center;
  font-size: 1.2rem;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-yes svg {
  color: #25d366;
}

.feature-no svg {
  color: #dc2626;
}

.distribution-section {
  padding: 70px 0;
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.distribution-card {
  background: var(--white);
  padding: 50px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-slow);
}

.distribution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.distribution-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-red-light), var(--golden-yellow-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.distribution-icon svg, .distribution-icon i {
  color: var(--primary-red);
  font-size: 25px;
}

.distribution-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.distribution-btn {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-slow);
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.distribution-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(158, 19, 15, 0.2);
  color: white;
}

.testimonials-section {
  padding: 70px 0;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-slow);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar svg {
  color: var(--primary-red);
  font-size: 24px;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-rating {
  color: var(--golden-yellow);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 30px;
  justify-content: center;
}

.breadcrumb-item a {
  color: var(--text-medium);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-red);
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .about-head {
    font-size: 2.5rem;
  }
  
  .counter-info h3 {
    font-size: 2.5rem;
  }
  
  .perfect-right h2 {
    font-size: 2.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .distribution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .desk-view {display: none;}
  .mob-view {display: block;}

  header .top-info ul {
    padding: 10px 12px 0;
    justify-content: space-between;
  }
  .navbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .about-info {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .perfect-right {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .hero-video {
    min-height: 500px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-brand {padding: 0;}

  header .navbar .navbar-main .navbar-brand img {
    width: 100%;
    max-height: 60px;
  }

  .navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
  }

  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none !important;
    border-width: 1px !important;
    box-shadow: none;
  }

  .top-info {
    /* width: calc(100% - 24px); */
    padding: 4px 12px 0;
  }

  .top-info ul {
    justify-content: space-between;
    padding: 0;
  }

  .navbar-collapse {
    width: 100%;
    padding-top: 30px;
  }

  .navbar-collapse .navbar-nav .nav-item {margin-bottom: 10px;}
  header .navbar .navbar-nav .nav-item .nav-link:after {display: none;}

  header .navbar .navbar-nav .nav-item .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero-video {
    min-height: 400px;
  }
  
  .counter-info h3 {
    font-size: 2rem;
  }
  
  .perfect-flex {
    flex-direction: column;
    gap: 20px;
  }
  
  .arabiz-head h2 {
    font-size: 2.3rem;
  }
  
  .footer-strip .footer-navbar {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .about-hero h1,
  .contact-hero h1,
  .product-hero h1 {
    font-size: 3rem;
  }
  
  .distribution-grid {
    grid-template-columns: 1fr;
  }
  
  .product-actions {
    flex-direction: column;
  }

  p {font-size: 0.9rem;}

  .hero-video {
    min-height: 350px;
  }

  .about-section, .counter-section, .perfect-blend-sec, .why-choose-sec, .cta-section {padding: 55px 0;}
  .about-main-img {height: auto;}
  .about-us {margin-bottom: 10px;}
  .about-head {font-size: 1.35rem;margin-bottom: 20px;}
  
  .about-sub-img {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
  }
  
  .counter-info h3 {
    font-size: 1.75rem;
  }
  .counter-info p {font-size: 0.75rem;}
  #perfectSlider .carousel-item img {height: auto;}
  .carousel-indicators {display: none;}
  
  .perfect-right h2 {font-size: 1.35rem;margin-bottom: 20px;}
  .perfect-para {font-size: 1rem;}
  .perfect-prem-flex:last-of-type {margin-bottom: 20px;}
  .prem-icon {width: 50px;height: 50px;}
  .prem-icon svg, .prem-icon i {font-size: 18px;}
  .prem-info ul li:first-child {font-size: 1.1rem;}
  
  .date-btn, .cta-button, .submit-btn {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  .arabiz-head {margin-bottom: 30px;}
  .arabiz-head h2 {font-size: 1.4rem;}
  .arabiz-head p {font-size: 0.9rem;}

  .feature-card {
    border-radius: 15px;
    padding: 30px 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }
  .feature-icon svg, .feature-icon i {font-size: 18px;}

  .cta-card {
    padding: 30px 20px;
  }
  .cta-card h2 {font-size: 1.35rem;}
  .cta-card p {font-size: 0.9rem;}
  .footer-strip .footer-navbar .nav-item .nav-link {font-size: 0.9rem;}
  .footer-info {padding: 40px 0;}
  .footer-copyright {padding-bottom: 0;}
  .copyright-right {display: none;}
  .copyright-left p {font-size: 0.7rem;}
  
  #whatsUpIcon {
    width: 55px;
    height: 55px;
    left: 20px;
    bottom: 20px;
  }
  
  #whatsUpIcon a svg {
    font-size: 1.7rem;
  }
  
  .about-hero,
  .contact-hero,
  .product-hero {
    padding: 30px 0;
  }
  
  .about-hero h1,
  .contact-hero h1,
  .product-hero h1 {
    font-size: 1.35rem;
  }
  
  .about-hero h1 span,
  .contact-hero h1 span,
  .product-hero h1 span {
    font-size: 1.2rem;
  }
  .about-hero p,
  .contact-hero p,
  .product-hero p, .story-card p,
  .stat-label, .product-description,
  .product-features li, .testimonial-text {font-size: 0.9rem;}
  .about-hero p, .contact-hero p, .product-hero p, .story-card p, .stat-label {margin-bottom: 0;}
  .story-card h2 {font-size: 1.25rem;margin-bottom: 15px;}
  .section-header h2, .value-card h4, .cta-card h2, .section-intro h2 {font-size: 1.25rem;}
  .product-image {height: 200px;}
  .stat-number {font-size: 2rem;}
  .section-header, .section-intro {margin-bottom: 20px;}
  .about-story, .mission-vision-section, .values-section,
  .stats-section, .products-section, .distribution-section, .testimonials-section,
  .about-section, .counter-section, .perfect-blend-sec, .why-choose-sec, .cta-section,
  .contact-section {padding:  30px 0;}
  .product-title span, .product-features h4, .distribution-card h3,
  .contact-info-card h2, .contact-form-card h2, .map-placeholder h3 {font-size: 1.15rem;}
  .product-content {padding: 20px;}
  .product-card {border-radius: 10px;}
  .product-specs {grid-template-columns: 1fr;}
  .testimonial-card {margin-bottom: 15px;}
  .contact-text h4 {font-size: 1.1rem;}
  .form-row .form-group:first-of-type {margin-bottom: 0;}
  .form-label {margin-bottom: 5px;}
  .form-control {border-radius: 8px;}

  .product-card {
    height: auto;
    margin-bottom: 20px;
  }

  .story-card, .mission-card, .vision-card, .value-card,
  .distribution-card, .testimonial-card, .cta-card,
  .contact-info-card, .contact-form-card, .map-placeholder {
    border-radius: 10px;
    padding: 20px 12px;
  }
}