:root {
  --primary-color: #6B5B95;
  --secondary-color: #4B3C75;
  --text-dark: #2E1A47;
  --text-medium: #4a3d5f;
  --background-light: #f7f8fc;
  --radius-lg: 40px;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* HERO SECTION */
.label-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 8%;
  background: linear-gradient(135deg, #6b5b95 0%, #9d8fc3 70%);
  border-radius: 0 0 50px 50px;
  color: #fff;
  gap: 60px;
  flex-wrap: wrap;
  overflow: hidden;
}

/* النص */
.label-hero__content {
  flex: 1 1 45%;
  text-align: left;
  z-index: 2;
}

.label-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.85;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.label-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 56px);
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #E9E0F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.label-hero__subtitle {
  font-weight: 600;
  color: #F2ECFF;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.label-hero__text {
  line-height: 1.8;
  font-size: clamp(15px, 2vw, 17px);
  color: #fff;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 90%;
}

.label-hero__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* الأزرار */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--primary {
  background: linear-gradient(90deg, var(--primary-color), #b8a1d9);
  color: #fff;
  box-shadow: 0 6px 25px rgba(107, 91, 149, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107, 91, 149, 0.5);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* الفيديو */
.label-hero__video {
  flex: 1 1 45%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  background: #000;
  position: relative;
}

.label-hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .label-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
  }

  .label-hero__content {
    flex: 1 1 100%;
    text-align: center;
  }

  .label-hero__text {
    margin: 0 auto 25px;
  }

  .label-hero__video {
    flex: 1 1 100%;
    margin-top: 25px;
  }


  .label-hero__actions {
    justify-content: center;
  }
}

/* Offer Section */
.offer-section {
  text-align: center;
  padding: 80px 6%;
  background-color: #f9f8fc;
}

.offer-header h2 {
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.offer-header p {
  color: #6f6a7d;
  font-size: 1rem;
  margin-bottom: 50px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.offer-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.offer-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 0;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
}

.offer-item:hover .overlay {
  background: linear-gradient(90deg, var(--primary-color), #bba3da);
  color: #fff;
}


.production {
  text-align: center;
  padding: 60px 0;
}

.prod-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.prod-sub {
  color: #6B5B95;
  font-weight: 500;
  margin-bottom: 40px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 5%;
}

.prod-item img {
  width: 90px;
  margin-bottom: 15px;
}

.prod-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2E1A47;
  margin-bottom: 5px;
}

.prod-item p {
  color: #6B5B95;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

.prod-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.prod-item img {
  width: 70px;
  margin: 0;
  /* منع المسافة تحت الصورة */
}

.prod-item h3 {
  margin: 0;
}

.prod-item p {
  margin: 5px 0 0;
}



:root {
  --alisar-main: #6B5B95;
  --alisar-light: #B8A1D9;
  --text-dark: #2E1A47;
}

.gmp-section {
  background: #f9f8fc;
  padding: 70px 5%;
  text-align: center;
  border-radius: 20px;
  margin: 50px 0;
}

.gmp-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--alisar-main);
  margin-bottom: 15px;
}

.gmp-sub {
  max-width: 650px;
  margin: 0 auto 50px;
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.6;
}

.gmp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
}

.gmp-card {
  background: white;
  padding: 40px 35px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.gmp-card:hover {
  transform: translateY(-5px);
}

.gmp-img {
  width: 120px;
  margin-bottom: 20px;
}

.gmp-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--alisar-main);
  margin-bottom: 15px;
}

.gmp-card p {
  color: #444;
  line-height: 1.7;
}

.gmp-foot {
  max-width: 750px;
  margin: 50px auto 0;
  color: var(--text-dark);
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .gmp-grid {
    grid-template-columns: 1fr;
  }

  .gmp-card {
    padding: 30px 25px;
  }
}



.cert-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(130, 40, 128, 0.2);
}

.cert-btn:hover {
  background-color: var(--alisar-light);
  box-shadow: 0 6px 18px rgba(130, 40, 128, 0.35);
}


.cert-page {
  background: #f9f8fc;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.cert-container {
  max-width: 800px;
  text-align: center;
}

.cert-title {
  font-size: 32px;
  color: #2E1A47;
  font-weight: 700;
  margin-bottom: 10px;
}

.cert-sub {
  color: #6B5B95;
  font-size: 18px;
  margin-bottom: 40px;
}

.cert-image-box img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.cert-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.cert-btn:hover {
  background-color: var(--alisar-main);
}



/* FOOTER */
.footer-section {
  background-color: #2E1A47;
  color: #ffffff;
  padding: 70px 20px;
  /* Adjusted padding */
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 280px;
}

.footer-about h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  background: linear-gradient(90deg, #B8A1D9, #6B5B95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 5px;
}

.footer-about span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #B8A1D9;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-about p {
  line-height: 1.7;
  color: #EDE6F7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #B8A1D9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #B8A1D9;
}

.footer-contact p,
.footer-contact a {
  color: #EDE6F7;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
  /* Prevents overflow */
}

.footer-social a {
  margin-right: 12px;
  font-size: 22px;
  color: #ffffff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #B8A1D9;
  transform: scale(1.15);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #4A3D5F;
  color: #CFC9DD;
  font-size: 14px;
}




.alisar-contact-section {
  padding: 60px 10%;
  text-align: center;

}

.alisar-subtitle {
  color: #6B5B95;
  font-size: 16px;
  margin-bottom: 5px;
}

.alisar-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.alisar-person h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2E1A47;
}

.alisar-role {
  color: #6B5B95;
  margin-bottom: 10px;
}

.alisar-contact-info p {
  margin: 0;
  color: #2E1A47;
  font-size: 15px;
}

.alisar-contact-info i {
  color: var(--alisar-main);
  margin-right: 6px;
}

.alisar-form {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alisar-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.alisar-row input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.alisar-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  justify-content: center;
}

.alisar-checkboxes label {
  font-size: 14px;
  color: #2E1A47;
}

textarea {
  width: 100%;
  height: 130px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.alisar-consent {
  margin: 15px 0;
  color: #2E1A47;
  font-size: 14px;
}

.alisar-send-btn {
  margin-top: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.alisar-send-btn:hover {
  background-color: #6B1F68;
}

/* Responsive */
@media(max-width: 700px) {
  .alisar-row {
    flex-direction: column;
  }
}