/* per section  */
:root {
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --primary: #163a4a;
  --secondary: #5f8f9d;
  --accent: #c9a66b;
  --background: #f7f8f7;
  --white: #ffffff;
  --text: #1d2a30;
  --fs-xs: 0.75rem; /* 12px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-base: 1rem; /* 16px */
  --fs-md: 1.125rem; /* 18px */
  --fs-lg: 1.25rem; /* 20px */
  --fs-xl: 1.5rem; /* 24px */
  --fs-2xl: 2.2rem; /* 32px */
  --fs-3xl: 2.5rem; /* 40px */
  --fs-4xl: 3rem; /* 48px */
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}

body {
  max-width: 100%;
  /* لا تحطي overflow-x: hidden هنا */
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--fs-base);
  color: var(--text);
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px;
}
h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  font-size: 1rem;
}
/* ======================================================== */
.section-header {
  width: 100%;
  background-color: var(--primary);
  padding: 22px 20px 24px;
  margin-bottom: 30px;
  text-align: center;
  box-sizing: border-box;
}

.section-title {
  font-size: var(--fs-2xl);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--fs-base);
  color: var(--white);
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header {
    padding: 16px 20px 18px;
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }
} /* =================================
    Header
================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

/* ===== Top Bar ===== */

.header-topbar {
  background-color: var(--primary);
  color: var(--white);
  max-height: 3rem;
  overflow: hidden;
  opacity: 1;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
}

/* ===== Scrolled State ===== */

.site-header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===== Topbar Inner ===== */

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 15px;
  transition: padding 0.35s ease;
}

.topbar-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--white);
  opacity: 0.9;
  min-width: 0;
}

.topbar-location svg {
  flex-shrink: 0;
}

.topbar-location span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--fs-sm);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  flex-shrink: 0;
}

.topbar-actions .icon-link {
  color: var(--white);
}

.topbar-actions .icon-link:hover {
  color: var(--accent);
}

/* ===== Main Row ===== */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9375rem 0;
  transition: padding 0.35s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.logo-img {
  height: 3.5rem;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.35s ease;
}

.brand-name {
  font-size: var(--fs-lg);
  color: var(--primary);
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Edu VIC WA NT Hand Precursive", cursive;
  line-height: 1.2;
}

.icon-link {
  color: var(--secondary);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

/* ===== Navigation - Desktop ===== */

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5625rem;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: var(--fs-base);
  transition: color 0.3s ease;
  display: block;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
}

.main-nav > ul > li {
  position: relative;
  padding-bottom: 0.625rem;
}

/* ===== Mobile Toggle ===== */

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  cursor: pointer;
  padding: 0.3125rem;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 1.5625rem;
  height: 0.1875rem;
  background: var(--secondary);
  transition: 0.3s;
  display: block;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

/* ===== Responsive ===== */

@media (max-width: 62rem) {
  .topbar-location span {
    max-width: 55vw;
  }

  .brand-name {
    font-size: var(--fs-sm);
  }

  .logo-img {
    height: 2.5rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.25rem 0;
  }

  .main-nav.show {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
  }

  .main-nav > ul > li {
    padding-bottom: 0;
    width: 100%;
    text-align: center;
  }

  .site-header.scrolled .header-main {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 30rem) {
  .topbar-inner {
    gap: 0.5rem;
  }

  .topbar-location span {
    max-width: 40vw;
  }

  .topbar-actions {
    gap: 0.625rem;
  }
}
/* =================================
   Floating Contact Buttons
=================================  */

.floating {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  z-index: 999999;
  pointer-events: none;
}

/* Shared button styles */
.floating-button,
.floating-button-phone {
  position: fixed;
  right: 1.875rem;

  width: 3.125rem;
  height: 3.125rem;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--white) !important;
  text-decoration: none;

  font-size: var(--fs-lg) !important;

  cursor: pointer;

  z-index: 999999;

  pointer-events: auto;

  transition: transform 0.3s ease;
}

.floating-button {
  bottom: 5.3125rem;
  background-color: #25d366;
}

.floating-button-phone {
  bottom: 1.25rem;
  background-color: var(--secondary);
}

.floating-button::before,
.floating-button::after,
.floating-button-phone::before,
.floating-button-phone::after {
  content: "";
  position: absolute;

  inset: -0.4375rem;

  border: 1px solid;
  border-radius: 50%;

  animation: animatePulse 1.5s linear infinite;

  opacity: 0;

  pointer-events: none;
}

.floating-button::before,
.floating-button::after {
  border-color: #25d366;
}

.floating-button-phone::before,
.floating-button-phone::after {
  border-color: var(--secondary);
}

.floating-button::after,
.floating-button-phone::after {
  animation-delay: 0.5s;
}

.floating-button:hover,
.floating-button-phone:hover {
  transform: scale(1.1);
}

@keyframes animatePulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

html[lang="ar"] .floating-button,
html[lang="ar"] .floating-button-phone {
  right: auto;
  left: 1.875rem;
}

@media screen and (max-width: 26.5625rem) {
  .floating-button,
  .floating-button-phone {
    width: 2.75rem;
    height: 2.75rem;

    right: 0.75rem;

    font-size: var(--fs-sm);
  }

  .floating-button {
    bottom: 5rem;
  }

  .floating-button-phone {
    bottom: 1.25rem;
  }

  html[lang="ar"] .floating-button,
  html[lang="ar"] .floating-button-phone {
    left: 0.75rem;
    right: auto;
  }
}
/* =================================
   hero section 
=================================  */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/assets/images/hero_bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-attachment: scroll;
  width: 100%;
  background-color: #dee3e6;
}

.hero .container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-content {
  width: 35%;
  max-width: 500px;
  margin-left: 8%;
  text-align: left;
  z-index: 2;
}

.hero-title {
  font-size: var(--fs-2xl);
  color: var(--primary);
  font-weight: 400;
  margin: 0;
  text-align: left;
}

.hero-priority {
  font-size: var(--fs-2xl);
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 30px 0;
  text-align: left;
}

.hero-description {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 400;
  text-align: left;
}

.hero-signature {
  font-size: var(--fs-base);
  color: var(--secondary);
  font-weight: bold;
  text-align: left;
}

/* cap it so text doesn't sprawl on ultra-wide monitors */
@media (min-width: 1600px) {
  .hero-content {
    max-width: 700px;
  }
}

.hero-footer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--primary);
}

/* --- MOBILE STYLES --- */
@media (max-width: 992px) {
  .hero {
    background-image: url("/assets/images/hero_bg.webp");
    background-position: center center;
    background-size: contain;
    min-height: 60vh;
    min-height: 60dvh;
  }

  .hero-content {
    max-width: 80%;
    padding-left: 20px;
  }

  .hero-title,
  .hero-priority {
    font-size: var(--fs-2xl);
  }
}

@media (max-width: 576px) {
  .hero {
    background-position: center center;
    background-size: contain;
    align-items: flex-start;
    padding-top: 50px;
    min-height: 50vh;
    min-height: 50dvh;
  }

  .hero-content {
    max-width: 50%;
  }
  .hero-title,
  .hero-priority {
    font-size: var(--fs-lg);
  }
}
/* =================================
   before and after section 
=================================  */

.results-section {
  background-color: var(--background);
  padding: 50px 20px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.result-card {
  display: flex;
  flex-direction: column;
}

.result-image {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--secondary);
}

.result-description {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--primary);
  margin: 0;
  font-weight: bold;
  max-width: 90%;
}

/* Tablet */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .result-description {
    font-size: var(--fs-sm);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .results-section {
    padding: 50px 20px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .result-description {
    max-width: 100%;
    text-align: left;
  }
}
/* =================================
 men  section 
=================================  */
.men-section {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background Image */
  background: url("/assets/images/men_bg.webp") no-repeat center center;
  background-size: cover;
  background-position: top center;
  background-attachment: scroll;
}

/* Overlay using primary color */
.men-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Primary color overlay */
  background: rgba(22, 58, 74, 0.726);

  z-index: 1;
}

.men-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.men-title {
  color: var(--white);
  font-family: var(--font-family);
  font-size: clamp(24px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.men-text {
  color: var(--background);
  font-family: var(--font-family);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Button using accent color */
.btn-red {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 15px 45px;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: var(--fs-sm);
  letter-spacing: 1px;
}

.btn-red:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(22, 58, 74, 0.3);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .men-section {
    min-height: 450px;
  }

  .men-title {
    font-size: var(--fs-xl);
  }

  .men-text {
    font-size: var(--fs-sm);
  }

  .men-text br {
    display: none;
  }
}
/* =================================
         services  section
=================================  */
.services-section {
  text-align: center;
  min-height: 75vh;
  background-color: var(--background);
  color: var(--text);
  font-family: var(--font-family);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;

  /* Use theme colors */
  border: 8px solid var(--white);
  box-shadow: 0 10px 25px rgba(22, 58, 74, 0.12);

  margin: 0 auto 20px;
}

.service-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-name {
  font-family: var(--font-family);
  font-size: var(--fs-sm);
  color: var(--primary);
  height: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* =================================
    cosmetic section
=================================  */
.cosmetic-banner-section {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: url("/assets/images/cosmetic-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: bottom center;

  margin: 40px 0;
  font-family: var(--font-family);
}

/* Dark Overlay */
.cosmetic-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 58, 74, 0.55);
  z-index: 1;
}

.cosmetic-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.cosmetic-title {
  color: var(--white);
  font-size: clamp(var(--fs-xl), 5vw, var(--fs-3xl));
  letter-spacing: 3px;
  line-height: 1.2;
  margin: 0 0 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.cosmetic-text {
  color: var(--white);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin: 0 0 40px;
  font-weight: 300;
}

/* Button */
.cosmetic-btn {
  position: relative;
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s ease-in-out;
  border: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cosmetic-btn.up::before,
.cosmetic-btn.up::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--white);
  transition: all 0.6s ease-in-out;
}

.cosmetic-btn.up::before {
  top: -1em;
  left: -2em;
  transform: translate(-50%, -50%);
}

.cosmetic-btn.up::after {
  left: calc(100% + 2em);
  top: calc(100% + 1em);
  transform: translate(-50%, -50%);
}

.cosmetic-btn.up:hover {
  color: var(--primary);
}

.cosmetic-btn.up:hover::before,
.cosmetic-btn.up:hover::after {
  height: 500px;
  width: 500px;
}

/* Mobile */
@media (max-width: 768px) {
  .cosmetic-banner-section {
    min-height: 400px;
    margin: 30px 0;
  }

  .cosmetic-container {
    padding: 0 20px;
  }

  .cosmetic-title {
    letter-spacing: 2px;
    font-size: var(--fs-xl);
  }

  .cosmetic-text {
    font-size: var(--fs-base);
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .cosmetic-text br {
    display: none;
  }

  .cosmetic-btn {
    padding: 14px 32px;
    font-size: var(--fs-sm);
  }
}

/* =================================
   state section
=================================  */

.our-numbers {
  position: relative;
  padding: 80px 0;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-family);
  overflow: hidden;
  isolation: isolate;
}

/* Subtle background effect */

.our-numbers::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(95, 143, 157, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(201, 166, 107, 0.1),
      transparent 35%
    );

  pointer-events: none;
  z-index: -1;
}

.numbers-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px;
}

.numbers-title {
  margin: 0 0 14px;

  color: var(--white);

  font-size: var(--fs-2xl);
  font-weight: 700;

  line-height: 1.4;
}

.numbers-line {
  display: block;

  width: 45px;
  height: 3px;

  margin: 0 auto 18px;

  background-color: var(--accent);
  border-radius: 3px;
}

.numbers-subtitle {
  margin: 0 auto;

  max-width: 650px;

  color: var(--white);
  opacity: 0.75;

  font-size: var(--fs-base);
  line-height: 1.8;
}

.number-items {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  max-width: 1000px;

  margin: 0 auto;
}

.number-item {
  position: relative;

  min-height: 220px;

  padding: 35px 25px;

  background-color: var(--white);

  color: var(--primary);

  border-radius: 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.number-item:hover {
  transform: translateY(-7px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.number-item::after {
  content: "";

  position: absolute;

  bottom: 0;
  right: 0;

  width: 45px;
  height: 45px;

  background-color: var(--accent);

  border-top-left-radius: 45px;

  opacity: 0.9;
}

.number-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 15px;

  border-radius: 50%;

  background-color: var(--primary);

  color: var(--accent);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: var(--fs-md);

  position: relative;
  z-index: 1;
}

.number-item .num {
  margin-bottom: 8px;

  color: var(--primary);

  font-size: var(--fs-3xl);

  font-weight: 700;

  line-height: 1.1;

  letter-spacing: 1px;

  position: relative;
  z-index: 1;
}

.number-item .text {
  color: var(--secondary);

  font-size: var(--fs-base);

  line-height: 1.6;

  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .our-numbers {
    padding: 65px 0;
  }

  .number-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .number-item {
    min-height: 200px;
    padding: 30px 20px;
  }

  .number-item .num {
    font-size: var(--fs-2xl);
  }

  .number-item .text {
    font-size: var(--fs-sm);
  }
}

@media (max-width: 768px) {
  .our-numbers {
    padding: 55px 0;
  }

  .numbers-header {
    margin-bottom: 35px;
    padding: 0 15px;
  }

  .numbers-title {
    font-size: var(--fs-xl);
  }

  .numbers-subtitle {
    font-size: var(--fs-sm);
  }

  .number-items {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 15px;
  }

  .number-item {
    min-height: 170px;
    padding: 25px 20px;
  }

  .number-item .num {
    font-size: var(--fs-2xl);
  }
}

@media (max-width: 425px) {
  .our-numbers {
    padding: 45px 0;
  }

  .number-item {
    min-height: 155px;
  }

  .number-icon {
    width: 44px;
    height: 44px;
    font-size: var(--fs-base);
  }

  .number-item .num {
    font-size: var(--fs-xl);
  }

  .number-item .text {
    font-size: var(--fs-sm);
  }
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
  padding: 80px 0;
  background-color: var(--background);
  font-family: var(--font-family);
}

.faq-header {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.faq-badge {
  display: inline-block;

  margin-bottom: 12px;
  padding: 6px 14px;

  background-color: rgba(95, 143, 157, 0.1);
  color: var(--secondary);

  border-radius: 30px;

  font-size: var(--fs-xs);
  font-weight: 600;
}

.faq-title {
  margin: 0 0 14px;

  color: var(--primary);

  font-size: var(--fs-2xl);
  font-weight: 700;

  line-height: 1.4;
}

.faq-subtitle {
  max-width: 650px;
  margin: 0 auto;

  color: var(--text);

  font-size: var(--fs-base);
  line-height: 1.8;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;

  background-color: var(--white);

  border: 1px solid rgba(95, 143, 157, 0.15);
  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 6px 20px rgba(22, 58, 74, 0.05);

  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(201, 166, 107, 0.45);

  box-shadow: 0 8px 25px rgba(22, 58, 74, 0.08);
}

.faq-question {
  width: 100%;

  padding: 22px 25px;

  border: 0;
  outline: none;

  background: transparent;

  color: var(--primary);

  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: 600;

  text-align: right;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  cursor: pointer;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-icon {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  border-radius: 50%;

  background-color: var(--primary);
  color: var(--white);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: var(--fs-xs);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-answer p {
  margin: 0;

  padding: 0 25px 22px;

  color: var(--text);

  font-size: var(--fs-sm);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header {
    margin-bottom: 35px;
    padding: 0 15px;
  }

  .faq-title {
    font-size: var(--fs-xl);
  }

  .faq-subtitle {
    font-size: var(--fs-sm);
  }

  .faq-question {
    padding: 20px;
    font-size: var(--fs-sm);
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: var(--fs-sm);
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-item {
    margin-bottom: 12px;
  }

  .faq-question {
    padding: 18px 15px;
    gap: 12px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-answer p {
    padding: 0 15px 18px;
    line-height: 1.8;
  }
}

/* ========================================
   expertise SECTION
======================================== */
.expertise-main-photo {
  width: 100%;
  max-width: 650px;
  margin: -50px auto 50px;
  position: relative;
  z-index: 10;
}

.expertise-main-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 15px 30px rgba(22, 58, 74, 0.12);
  border-radius: 4px;
}

.expertise-main-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 15px 30px rgba(22, 58, 74, 0.12);
  border-radius: 4px;
}

/* --- GRID --- */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* --- HEADER --- */
.expertise-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.expertise-header h3 {
  font-size: var(--fs-xl);
  color: var(--primary);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* --- TEXT --- */
.expertise-text p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 18px;
}

/* --- BUTTONS --- */
.expertise-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.btn-dark {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  width: 180px;
  text-align: center;
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* --- TABLET / MOBILE --- */
@media (max-width: 992px) {
  .expertise-main-photo {
    max-width: 600px;
    margin: -40px auto 45px;
    padding: 0 20px;
  }

  .expertise-main-photo img {
    height: 300px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .expertise-btns {
    align-items: center;
  }
}

/* --- SMALL MOBILE --- */
@media (max-width: 576px) {
  .expertise-main-photo {
    max-width: 100%;
    margin: -25px auto 35px;
    padding: 0 15px;
  }

  .expertise-main-photo img {
    height: 220px;
  }

  .expertise-grid {
    gap: 30px;
    padding: 0 15px;
  }

  .expertise-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .expertise-header h3 {
    font-size: var(--fs-lg);
  }

  .expertise-text p {
    font-size: var(--fs-sm);
  }

  .btn-dark {
    width: 100%;
    max-width: 220px;
  }
}
/* =================================  
   CONTACT SECTION
======================================== */

.contact-section {
  padding: 80px 0;
  background-color: var(--background);
  font-family: var(--font-family);
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-main-title {
  font-size: var(--fs-2xl);
  color: var(--primary);
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-subtitle {
  color: var(--text);
  font-size: var(--fs-base);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-left {
  min-width: 0;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 350px;

  border-radius: 15px;
  overflow: hidden;

  background-color: var(--white);

  box-shadow: 0 10px 30px rgba(22, 58, 74, 0.08);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.info-card {
  width: 100%;
  min-height: 100px;

  padding: 25px;

  background-color: var(--white);

  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  box-sizing: border-box;

  text-decoration: none;
  color: inherit;

  box-shadow: 0 10px 25px rgba(22, 58, 74, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateX(-6px);

  box-shadow: 0 12px 30px rgba(22, 58, 74, 0.12);
}

.card-text {
  min-width: 0;
  text-align: left;
}

.card-text span {
  display: block;

  margin-bottom: 6px;

  font-size: var(--fs-xs);
  color: var(--secondary);

  line-height: 1.5;
}

.card-text strong {
  display: block;

  font-size: var(--fs-md);
  color: var(--primary);

  font-weight: 600;
  line-height: 1.5;

  word-break: break-word;
}

.card-icon-circle {
  width: 52px;
  height: 52px;

  flex-shrink: 0;

  border-radius: 50%;

  background-color: var(--accent);
  color: var(--white);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: var(--fs-md);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.info-card:hover .card-icon-circle {
  transform: scale(1.05);
}

.whatsapp-bg {
  background-color: #25d366;
}

@media (max-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .map-wrapper {
    height: 350px;
    min-height: 350px;
  }

  .map-wrapper iframe {
    height: 350px;
    min-height: 350px;
  }

  .contact-right {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 45px 0;
  }

  .contact-intro {
    margin-bottom: 35px;
  }

  .contact-main-title {
    font-size: var(--fs-xl);
  }

  .contact-subtitle {
    font-size: var(--fs-sm);
    padding: 0 15px;
  }

  .map-wrapper {
    height: 280px;
    min-height: 280px;
    border-radius: 12px;
  }

  .map-wrapper iframe {
    height: 280px;
    min-height: 280px;
  }

  .info-card {
    min-height: 90px;
    padding: 20px;
    border-radius: 15px;
  }

  .card-text span {
    font-size: var(--fs-xs);
  }

  .card-text strong {
    font-size: var(--fs-base);
  }

  .card-icon-circle {
    width: 46px;
    height: 46px;

    font-size: var(--fs-base);
  }
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 20px;
  font-family: var(--font-family);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-section .logo-circle {
  width: 45px;
  height: 45px;

  background-color: var(--white);
  color: var(--primary);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
}

.footer-brand-name {
  font-size: var(--fs-lg);
  letter-spacing: 1px;
  margin: 0;
  color: var(--white);
}

.footer-text {
  color: var(--white);
  opacity: 0.75;
  line-height: 1.8;
  font-size: var(--fs-md);
}

.footer-heading {
  font-size: var(--fs-md);
  color: var(--white);

  margin: 0 0 30px;

  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";

  position: absolute;
  margin-top: 10px;
  inset-inline-start: 0;

  width: 65px;
  height: 2px;
  top: 100%;
  background-color: var(--accent);
}

.footer-links-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li,
.footer-contact-list li {
  margin-bottom: 15px;
}

.footer-links-list a,
.footer-contact-list a {
  color: var(--white);
  opacity: 0.75;

  text-decoration: none;

  font-size: var(--fs-md);

  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;

  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
  color: var(--accent);
  opacity: 1;
  transform: translateX(5px);
}

.icon {
  font-size: var(--fs-lg);
  color: var(--white);
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  padding-top: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: var(--fs-xs);
  color: var(--white);
  opacity: 0.7;
}

.footer-bottom-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;

  transition: color 0.3s ease;
}

.footer-bottom-bar a:hover {
  color: var(--white);
}

@media (max-width: 992px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 20px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 50px 0 20px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-heading {
    margin-bottom: 20px;
  }
}

/* services */
/********************* Start page-header section *********************/

/********************* Start page-header section *********************/
.page-top {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 58, 74, 0.72);
  z-index: -1;
}

.page-top .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-top .page-info {
  padding: 180px 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.page-top .page-info .page-head {
  margin: 0;
  color: var(--white);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.4;
}

.page-top .breadcrumb-con {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-size: var(--fs-base);
}

.page-top .breadcrumb-m {
  color: var(--white);
}

.page-top .breadcrumb-m a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-top .breadcrumb-m a:hover {
  color: var(--accent);
}

@media screen and (max-width: 992px) {
  .page-top .page-info {
    padding: 80px 0 45px;
  }
}

@media screen and (max-width: 425px) {
  .page-top .page-info {
    padding: 55px 0 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .page-top .page-info .page-head {
    font-size: var(--fs-lg);
  }

  .page-top .breadcrumb-con {
    font-size: var(--fs-sm);
  }
}

.page-top .page-info.lg {
  padding: 180px 0 190px;
}

@media screen and (max-width: 992px) {
  .page-top .page-info.lg {
    padding: 80px 0;
  }
}
