@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Mulish:wght@400;600&family=Montserrat:wght@600&family=Josefin+Sans:wght@400&display=swap');

:root {
  /* Strict Tokens */
  --color-primary: #009DFF;
  --color-success: #AACE90;
  --color-danger: #E96161;
  --color-warning: #E7B510;

  /* Permitted Colors (White/Black/Dark Gray) */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-bg-light: #F9FAFB;

  /* Derived Light Blues (Consistent per user instruction) */
  --color-primary-light: #E5F5FF;
  /* For navbar pill, subcards */
  --color-primary-lighter: #DDF1FF;
  /* For footer */

  /* Typography */
  --font-main: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-bold {
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.placeholder-img {
  background-color: #E5E7EB;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-img::after {
  content: 'Image Placeholder';
  color: #9CA3AF;
  font-size: 14px;
}

/* Header */
.site-header {
  background-color: var(--color-white);
  padding: 0px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-primary);
  text-align: center;
}

.brand-logo {
  max-height: 95px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-pill {
  width: 970px;
  height: 65px;
  background: rgba(163, 220, 255, 0.66);
  border-radius: 9.8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 60px;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 21.45px;
  padding: 8px 0;
}

.nav-link.active {
  color: #069DFB;
  font-weight: 700;
  text-decoration: underline;
}

.header-btn {
  background: #009DFF;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 21.91px;
  color: #FFFFFF;
  padding: 0 40px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  /* hidden on desktop */
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-primary);
  cursor: pointer;
  padding: 10px;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 20px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 61px;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 24px;
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 42px;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 24px;
  max-width: 609px;
}

.hero-feature-block {
  position: relative;
  width: 500px;
  height: 350px;

}

.feature-building-img {
  width: 500px;
  height: 350px;
  border-radius: 24px;
  object-fit: cover;
  margin-top: 60px;
}

.feature-subcard {
  position: absolute;
  width: 390px;
  height: auto;
  left: 210px;
  top: -20px;
  background: rgba(126, 191, 231, 0.47);
  border-radius: 18.18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.feature-subcard .subcard-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.feature-subcard .subcard-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #383838;
  text-align: center;
  margin: 0;
}

.feature-subcard .subcard-btn {
  background: rgba(0, 154, 249, 0.91);
  border-radius: 12.18px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 4px;
}

.hero-visual {
  height: 764px;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 24px;
}

.about-section .section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 47.79px;
  color: #000000;
}

.about-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.about-text-blocks p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 21.79px;
  line-height: 35px;
  letter-spacing: 0.03em;
  color: #000000;
}

.about-content .btn-primary {
  background: #11A0F9;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 12px 24px;
}

.about-visual {
  height: 658px;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.about-logo-overlay {
  position: absolute;
  top: -30px;
  right: -30px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.about-logo-overlay img {
  width: 100%;
  height: auto;
}

.about-visual img.dubai {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 37px;
  display: block;
}


/* Highlight Section */
.highlight-section {
  padding: 80px 0;
  background: url('../images/image 2396.png') no-repeat center center;
  background-size: cover;
  text-align: left;
}

.highlight-content {
  max-width: 1237px;
  margin: 0 auto;
}

.highlight-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24.79px;
  line-height: 39px;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: justify;
  margin-bottom: 40px;
}

.highlight-btn {
  background: #B2E2FF;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #000000;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1144px;
  margin: 0 auto;
}

.features-visual {
  width: 284px;
  height: 765px;
  flex-shrink: 0;
}

.features-visual img {
  width: 100%;
  height: 100%;
  border-radius: 35.84px;
  object-fit: cover;
}

.features-content {
  width: 830px;
  height: 765px;
  background: #ECF8FF;
  border-radius: 34px;
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.clients-stat {
  position: absolute;
  top: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 45.55px;
  font-weight: 700;
  color: #050F27;
  line-height: 1;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #050F27;
  line-height: 1.2;
  margin-top: 4px;
}

.features-content .section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 39px;
  line-height: 1.2;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 24px;
  max-width: 692px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 8px;
}

.feature-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 48px;
}

.testimonials-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 59.15px;
  font-weight: 700;
  color: #1E3240;
  margin-bottom: 24px;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 36.18px;
  font-weight: 400;
  color: #1E3240;
  margin-top: 12px;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text-muted);
  cursor: pointer;
}

.testimonial-card {
  position: relative;
  width: 877px;
  height: 423px;
  margin: 0 auto;
  text-align: left;
}

.t-bg-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background: #EBF8FF;
  border-radius: 28px;
  z-index: 0;
}

.t-bg-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 250px);
  height: 163px;
  background: #EBF8FF;
  border-radius: 0 0 28px 28px;
  z-index: 0;
}

.t-bg-inner-curve {
  position: absolute;
  left: 222px;
  top: 260px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at bottom left, transparent 28px, #EBF8FF 28.5px);
  z-index: 0;
}

.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.quote-icon {
  position: absolute;
  top: 40px;
  left: 60px;
  font-family: Arial, sans-serif;
  font-size: 140px;
  color: #0596F1;
  line-height: 1;
  font-weight: 700;
}

.stars-pill {
  position: absolute;
  top: 40px;
  right: 40px;
  background: #EBEBEB;
  border-radius: 13px;
  padding: 8px 16px;
  display: flex;
  gap: 4px;
}

.stars-pill i {
  color: #FDD835;
  font-size: 18px;
}

.testimonial-heading {
  position: absolute;
  top: 126px;
  left: 297px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1E3240;
}

.testimonial-text {
  position: absolute;
  top: 190px;
  left: 297px;
  width: 540px;
  font-family: 'Poppins', sans-serif;
  font-size: 17.5px;
  font-weight: 300;
  color: #1E3240;
  line-height: 27px;
}

.testimonial-author-info {
  position: absolute;
  top: 320px;
  left: 297px;
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: 'Mulish', sans-serif;
  font-size: 25.96px;
  font-weight: 600;
  color: #1E3240;
}

.author-role {
  font-family: 'Mulish', sans-serif;
  font-size: 19.47px;
  font-weight: 400;
  color: #1E3240;
}

.author-avatar {
  position: absolute;
  top: 280px;
  left: 43px;
  width: 156px;
  height: 157px;
  border-radius: 75px;
  object-fit: cover;
  z-index: 2;
}

/* About Us Page */
.about-page-main {
  position: relative;
  background: #FFFFFF;
  padding-top: 40px;
  overflow: hidden;
}



.about-hero-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.about-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}



.about-hero-grid {
  display: flex;
  gap: 0;
  /* Remove gap so left and right connect perfectly */
  width: 100%;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 80px;
  /* The cutout gap (40px top curve + 40px bottom curve) */
  width: 364px;
  flex-shrink: 0;
}

.hero-right-col {
  flex: 1;
}

.hero-card {
  background: #E4F5FF;
  position: relative;
  /* Removed default border-radius, assigned per card */
}

/* Top Left Card */
.hero-card-tl {
  padding: 48px;
  border-radius: 40px 0 0 40px;
}

.hero-card-tl::after {
  content: '';
  position: absolute;
  bottom: -40px;
  /* extends into the cutout gap */
  right: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at bottom left, transparent 40px, #E4F5FF 40.5px);
  z-index: 1;
}

/* Bottom Left Card */
.hero-card-bl {
  padding: 48px;
  border-radius: 40px 0 0 40px;
  flex: 1;
  /* Stretch to fill available height */
}

.hero-card-bl::before {
  content: '';
  position: absolute;
  top: -40px;
  /* extends into the cutout gap */
  right: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at top left, transparent 40px, #E4F5FF 40.5px);
  z-index: 1;
}

/* Right Card */
.hero-card-right {
  padding: 60px 80px;
  height: 100%;
  border-radius: 0 40px 40px 0;
  display: flex;
  flex-direction: column;
}

.stats-block {
  margin-bottom: 24px;
}

.stats-block h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 45.5521px;
  color: #050F27;
  line-height: 54px;
}

.stats-block p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #050F27;
  line-height: 18px;
}

.stats-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #000000;
  line-height: 26px;
  letter-spacing: -0.02em;
}

.hero-card-bl p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14.79px;
  color: #000000;
  line-height: 25px;
  text-align: justify;
  letter-spacing: -0.03em;
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 58.3654px;
  color: #050F27;
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}

.about-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #050F27;
  line-height: 35px;
  text-align: justify;
  letter-spacing: 0.01em;
  margin-bottom: 50px;
}

.about-main-img {
  width: 100%;
  height: 475px;
  border-radius: 37px;
  object-fit: cover;
}

.mission-vision-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.mission-vision-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.mission-img {
  flex: 1;
  border-radius: 24px;
  height: 472px;
  object-fit: cover;
}

.mission-vision-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mv-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  margin-bottom: 16px;
}

.mv-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #000000;
  text-align: justify;
}

.why-choose-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.why-choose-bg {
  background: #E2F4FF;
  border-radius: 53px;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-title-wrapper {
  grid-column: span 2;
  display: flex;
  align-items: center;
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 88px;
  color: #050F27;
  line-height: 1;
}

.why-card {
  background: #FFFFFF;
  border-radius: 29px;
  padding: 40px;
}

.why-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  margin-bottom: 16px;
  text-align: center;
}

.why-card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #000000;
  margin-bottom: 16px;
}

/* Footer */
.site-footer {
  background: #C3E8FF;
  padding: 60px 0;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 14px;
}

.footer-brand .brand-text {
  flex-direction: row;
  gap: 8px;
  font-size: 20px;
}

.footer-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 22.33px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
  max-width: 80%;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--color-black);
  font-size: 20px;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28.14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 21.45px;
  font-weight: 400;
  color: #000000;
}

.footer-contact li {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 25.64px;
  font-weight: 400;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  color: var(--color-primary);
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
  padding: 80px 0;
}

.contact-page-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 43.48px;
  line-height: 1.25;
  color: #1C1C1B;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1168px;
  margin: 0 auto;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 54px;
}

/* Row 1 */
.contact-image {
  flex: 1;
  max-width: 557px;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 9px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container {
  flex: 1;
  max-width: 557px;
  background: #FFFFFF;
  box-shadow: 0px 0.9px 9px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  padding: 40px;
}

.form-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.form-card h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 36.23px;
  color: #1C1C1B;
  margin-bottom: 8px;
}

.form-card .subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14.49px;
  color: #636366;
  margin-bottom: 30px;
}

.form-card form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-input {
  width: 100%;
  padding: 12px 18px;
  background: #FFFFFF;
  border: 0.9px solid #E0E0E0;
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14.49px;
  color: #1C1C1B;
}

.contact-input::placeholder {
  color: #636366;
}

.contact-input:focus {
  outline: none;
  border-color: #254B86;
}

.btn-submit {
  width: 100%;
  background: #254B86;
  border-radius: 9px;
  padding: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14.49px;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #1c3b6b;
}

.terms-text {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14.49px;
  color: #636366;
  margin-top: 15px;
}

.terms-text a {
  color: #636366;
  text-decoration: underline;
}

/* Row 2 */
.contact-info-col {
  flex: 1;
  max-width: 535px;
}

.contact-info-col h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 36.23px;
  color: #1C1C1B;
  margin-bottom: 15px;
}

.info-desc {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14.49px;
  color: #636366;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.info-list p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14.49px;
  color: #636366;
}

.info-list span {
  font-weight: 700;
  color: #1C1C1B;
  margin-right: 8px;
}

.social-icons-contact {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: #F2F2F2;
  border-radius: 3.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon.tw {
  color: #46A5F0;
}

.social-icon.fb {
  color: #4A5890;
}

.social-icon.ig {
  background: linear-gradient(225deg, #F7C760 0%, #EA634E 47.4%, #BE48A2 100%);
  color: #fff;
  border-radius: 3.6px;
  border: 2px solid #F2F2F2;
}

.social-icon.ig i {
  background: transparent;
}

.social-icon.yt {
  color: #DB5336;
}

.contact-map {
  flex: 1;
  max-width: 557px;
  width: 100%;
  height: 353px;
}

/* Contact page mobile */
@media (max-width: 768px) {

  /* Global Mobile Spacing Overrides */
  section,
  .hero-section,
  .about-section,
  .features-section,
  .testimonials-section,
  .mission-vision-section,
  .why-choose-section,
  .contact-section {
    padding: 48px 0 !important;
  }

  .container {
    padding: 0 20px !important;
  }

  .section-title {
    margin-bottom: 16px !important;
  }

  .section-subtitle {
    margin-bottom: 32px !important;
  }

  .hero-card,
  .hero-card-tl,
  .hero-card-bl,
  .hero-card-right,
  .feature-card,
  .testimonial-card {
    padding: 24px !important;
  }

  .contact-row {
    flex-direction: column;
    gap: 40px;
  }
}

/* ==========================================================================
   FEATURES PAGE STYLES
   ========================================================================== */

/* Hero Section */
.features-hero-section {
  padding: 80px 0;
  margin-top: 40px;
}

.features-hero-card {
  background: linear-gradient(90deg, #C1DEE8 0%, #FBD9B9 100%);
  border-radius: 12.8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  min-height: 469px;
  position: relative;
  overflow: hidden;
}

.features-hero-content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}

.features-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 57.17px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 24px;
}

.features-hero-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 25.17px;
  line-height: 137%;
  color: #000000;
}

.features-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}

.features-hero-image img {
  max-width: 552px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Zigzag Section */
.features-zigzag-section {
  padding: 80px 0;
}

.zigzag-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1050px;
  margin: 0 auto;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.zigzag-row.reverse {
  flex-direction: row-reverse;
}

.zigzag-image {
  flex: 1;
  max-width: 479px;
}

.zigzag-image img {
  width: 100%;
  height: 308px;
  object-fit: cover;
  border-radius: 24px;
}

.zigzag-content {
  flex: 1;
  max-width: 484px;
}

.zigzag-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32.79px;
  line-height: 43px;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 16px;
}

.zigzag-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}

/* CTA Section */
.features-cta-section {
  padding: 80px 0;
}

.features-cta-banner {
  background: url('../images/image 2396.png') center/cover no-repeat;
  background-color: #f8f9fa;
  /* fallback */
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}



.features-cta-banner p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24.79px;
  line-height: 39px;
  letter-spacing: 0.05em;
  color: #000000;
  max-width: 1139px;
  margin: 0 auto;
}

.features-cta-banner .btn-explore {
  background: #B2E2FF;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36.79px;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.features-cta-banner .btn-explore:hover {
  background: #9bd7fc;
  transform: translateY(-2px);
}

/* Responsive (Matching the mobile screenshot) */
@media (max-width: 768px) {

  /* Global Mobile Spacing Overrides */
  section,
  .hero-section,
  .about-section,
  .features-section,
  .testimonials-section,
  .mission-vision-section,
  .why-choose-section,
  .contact-section {
    padding: 48px 0 !important;
  }

  .container {
    padding: 0 20px !important;
  }

  .section-title {
    margin-bottom: 16px !important;
  }

  .section-subtitle {
    margin-bottom: 32px !important;
  }

  .hero-card,
  .hero-card-tl,
  .hero-card-bl,
  .hero-card-right,
  .feature-card,
  .testimonial-card {
    padding: 24px !important;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 20px;
    /* Reduced vertical padding */
  }

  .header-container .brand-logo {
    max-height: 55px;
    /* Shrinks the logo only in the header to prevent tall header */
    width: auto;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 211px;
    height: 28px;
    background: rgba(163, 220, 255, 0.66);
    border-radius: 8.22px;
    padding-right: 12px;
    color: #009DFF;
    font-size: 18px;
  }

  .nav-pill {
    display: none;
    /* hidden by default */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background: #FFFFFF;
    height: auto;
    width: auto;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    align-items: stretch;
    gap: 20px;
  }

  .nav-menu.active .nav-pill {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .header-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    height: 48px;
  }

  .nav-link {
    font-size: 16px;
    padding: 5px 0;
  }

  .about-container,
  .features-container {
    grid-template-columns: 1fr;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-content {
    display: contents;
    /* Allows children to be sorted by flex container */
  }

  .hero-title {
    order: 1;
    font-size: 19.38px;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: left;
    width: 100%;
  }

  .hero-description {
    order: 2;
    font-size: 13.56px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    letter-spacing: -0.02em;
    margin-bottom: 0px;
    width: 100%;
  }

  .hero-visual {
    order: 3;
    height: auto;
    margin: 20px 0;
  }

  .hero-feature-block {
    order: 4;
  }

  .subcard-title {
    font-size: 9.5px;
  }

  .subcard-text {
    font-size: 8.2px;
  }

  .subcard-btn {
    font-size: 14.29px;
  }

  .about-content .section-title {
    font-size: 20.14px;
    text-align: left;
  }

  .about-text-blocks p {
    font-size: 15.97px;
    line-height: 20px;
    text-align: justify;
    letter-spacing: 0.03em;
  }

  .about-content .btn {
    font-size: 12.75px;
  }

  /* About Us Page Hero Responsive */
  .about-hero-grid {
    flex-direction: column;
    gap: 40px;
    /* Gap between About Us and Stats block */
  }

  .hero-right-col {
    order: -1;
    /* Move About Us box to the very top */
  }

  .hero-card-right {
    border-radius: 40px !important;
    /* All 4 corners rounded for independent box */
    padding: 40px 30px !important;
  }

  .hero-left-col {
    width: 100%;
    gap: 80px;
    /* Space for the right-sided U-cutout */
  }

  .hero-card-tl {
    border-radius: 40px 40px 40px 0 !important;
    /* Cutout starts below right */
    padding: 40px 30px !important;
  }

  .hero-card-tl::after {
    left: 0 !important;
    right: auto !important;
    bottom: -40px !important;
    width: 40px !important;
    height: 40px !important;
    background: radial-gradient(circle at bottom right, transparent 40px, #E4F5FF 40.5px) !important;
    display: block !important;
  }

  .hero-card-bl {
    border-radius: 0 40px 40px 40px !important;
    /* Cutout ends above right */
    padding: 40px 30px !important;
  }

  .hero-card-bl::before {
    left: 0 !important;
    right: auto !important;
    top: -40px !important;
    width: 40px !important;
    height: 40px !important;
    background: radial-gradient(circle at top right, transparent 40px, #E4F5FF 40.5px) !important;
    display: block !important;
  }

  .highlight-content {
    text-align: center;
  }

  .highlight-text {
    font-size: 14.62px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
  }

  .highlight-btn {
    font-size: 21.69px;
    padding: 10px 20px;
    /* pill shape adjustment */
  }

  .stat-number {
    font-size: 24.87px;
  }

  .stat-label {
    font-size: 6.24px;
  }

  .features-content .section-title {
    font-size: 25.94px;
    text-align: justify;
  }

  .feature-title,
  .feature-desc {
    font-size: 24.87px;
    line-height: 43px;
  }

  .testimonials-header .section-title {
    font-size: 33.98px;
    text-align: center;
  }

  .testimonials-header .section-subtitle {
    font-size: 20.78px;
    text-align: center;
  }

  .testimonial-text {
    font-size: 12.8px;
  }

  .author-name {
    font-size: 15.65px;
  }

  .author-role {
    font-size: 11.73px;
  }

  .hero-visual,
  .about-visual,
  .features-visual {
    height: auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    padding-left: 20px;
  }

  .footer-brand .logo {
    align-items: flex-start;
  }

  .footer-desc {
    max-width: 100%;
  }

  /* --- Structural Fixes for Mobile Responsiveness --- */

  /* Hero Section */
  .hero-feature-block {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Safe for all mobiles */

    display: flex;
    justify-content: flex-start;
    padding-top: 15px;
    /* Space for the overlapping card */
    box-sizing: border-box;
  }

  .feature-building-img {
    position: relative;
    width: 400px;
    height: auto;
    aspect-ratio: 290 / 198;
    object-fit: cover;
    border-radius: 11.6px;
    display: block;
    z-index: 1;
    margin-top: 0;
  }

  .feature-subcard {
    position: absolute;
    width: 250px;
    /* Fixed width to prevent shrinking */
    height: auto;
    right: auto;
    /* Locks to right side */
    left: 135px;
    /* Overrides desktop left */
    top: 0;
    /* Overlays the top edge */
    background: rgba(126, 191, 231, 0.47);
    border-radius: 8.8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
    box-sizing: border-box;
    z-index: 2;
    /* Ensures it sits above image */
  }

  .feature-subcard .subcard-title {
    font-size: 9.5px;
    line-height: 19px;
    color: #020202;
    text-align: left;
    margin: 0;
    width: 100%;
    white-space: normal !important;
  }

  .feature-subcard .subcard-text {
    font-size: 8.2px;
    line-height: 14px;
    color: #383838;
    text-align: left;
    margin: 0;
    width: 100%;
    white-space: normal !important;
  }

  .feature-subcard .subcard-btn {
    width: 100%;
    /* Replaces 160px */
    max-width: 160px;
    height: 28px;
    font-size: 12px;
    background: rgba(0, 154, 249, 0.91) !important;
    color: #FFFFFF !important;
    border-radius: 5.9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    margin-top: 4px;
  }

  /* About Section */
  /* About Section */
  .about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-logo-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-logo-overlay img {
    width: 100%;
    height: auto;
  }

  .about-visual img.dubai {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    border-radius: 20px;
    display: block;
  }

  /* Testimonials Section */
  .carousel-wrapper {
    position: relative;
    padding: 0 20px;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-btn.prev {
    left: 0;
  }

  .carousel-btn.next {
    right: 0;
  }

  .testimonial-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    /* Now dynamic based on content */
    margin: 0 auto;
    position: relative;
    background: transparent;
    padding-bottom: 20px;
    /* Padding for the bottom of the card */
  }

  .t-bg-main {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #EBF8FF;
    border-radius: 20px 20px 0 20px;
    z-index: 0;
  }

  .t-bg-sub {
    display: block;
    position: absolute;
    top: 120px;
    right: 0;
    width: calc(100% - 90px);
    height: calc(100% - 120px);
    /* Matches dynamic height automatically */
    background: #EBF8FF;
    border-radius: 0 0 20px 20px;
    z-index: 0;
  }

  .t-bg-inner-curve {
    display: block;
    position: absolute;
    left: 90px;
    top: 120px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at bottom left, transparent 20px, #EBF8FF 20.5px);
    z-index: 0;
  }

  .card-content {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Ensure children can stretch */
  }

  .quote-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    line-height: 1;
    color: #009DFF;
    margin: 0;
  }

  .stars-pill {
    position: absolute;
    top: 25px;
    right: 20px;
    background: #F3F4F6;
    padding: 5px 10px;
    border-radius: 20px;
    color: #FBBF24;
    font-size: 12px;
    margin: 0;
  }

  .testimonial-heading {
    position: relative;
    margin-top: 100px;
    padding-left: 110px;
    padding-right: 20px;
    width: 100% !important;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    top: auto;
    right: auto;
    bottom: 20px;
  }

  .testimonial-text {
    position: relative;
    margin-top: 15px;
    padding-left: 110px;
    padding-right: 20px;
    width: 100% !important;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.5;
    color: #4B5563;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    top: auto;
    right: auto;
    bottom: 20px;

    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
  }

  .testimonial-author-info {
    position: relative;
    margin-top: 20px;
    padding-left: 110px;
    padding-right: 20px;
    width: 100% !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }

  .author-name {
    font-size: 14px;
    font-weight: 700;
    display: block;
  }

  .author-role {
    font-size: 11px;
    color: #6B7280;
  }

  .author-avatar {
    position: absolute;
    left: 10px;
    top: 140px;
    /* Align with the heading */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #FFF;
    z-index: 2;
  }

  /* About Page Mobile */
  .about-hero-desktop-bg {
    display: none;
  }

  .about-hero-grid {
    flex-direction: column;
  }

  .hero-left-col {
    width: 100%;
  }

  .hero-card {
    background: #E4F5FF;
  }

  .hero-card-tl,
  .hero-card-bl,
  .hero-card-right {
    padding: 30px;
    height: auto;
  }

  .about-title {
    font-size: 40px;
  }

  .mission-vision-container {
    flex-direction: column;
  }

  .why-choose-bg {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .why-title-wrapper {
    grid-column: span 1;
  }

  .why-title {
    font-size: 48px;
  }

  /* --- Global Overflow Fixes --- */
  .features-container {
    display: flex;
    flex-direction: column;
  }

  .features-visual {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    height: 500px !important;
  }

  .features-content {
    order: 2;
    width: calc(100% + 48px) !important;
    /* Pulls it out of container */
    margin-left: -24px !important;
    /* Counters the .container 24px padding */
    margin-right: -24px !important;
    height: auto !important;
    padding: 30px 24px !important;
    box-sizing: border-box;
    border-radius: 50 !important;
    /* Usually full-width blocks shouldn't have rounded corners */
  }

  .features-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-header-wrapper .section-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: left;
    max-width: 60%;
  }

  .clients-stat {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin: 0 !important;
    align-items: flex-end;
  }

  .clients-stat .stat-number {
    font-size: 20px;
  }

  .clients-stat .stat-label {
    font-size: 10px;
    text-align: right;
  }

  .features-btn {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 30px auto 0;
    text-align: center;
    background: #009DFF;
    border-radius: 12px;
  }

  .testimonial-text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-feature-block,
  .feature-subcard,
  .testimonial-card,
  .card-content {
    box-sizing: border-box;
  }

  img,
  svg,
  video {
    max-width: 100%;
    height: auto;
  }

  /* Features Page Mobile */
  .features-hero-card {
    flex-direction: column;
    padding: 30px 20px;
  }

  .features-hero-content h1 {
    font-size: 40px;
    text-align: center;
  }

  .features-hero-content p {
    font-size: 18px;
    text-align: center;
  }

  .features-hero-image img {
    margin-top: 30px;
  }

  .zigzag-row,
  .zigzag-row.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .zigzag-content {
    text-align: center;
  }

  .zigzag-content h2 {
    font-size: 28px;
  }

  .zigzag-content p {
    font-size: 18px;
  }

  .features-cta-banner p {
    font-size: 18px;
    line-height: 1.4;
  }

  .features-cta-banner .btn-explore {
    font-size: 24px;
    padding: 15px 30px;
  }

  .hero-section {
    padding-bottom: 0 !important;
  }

  .about-section {
    padding-top: 0px !important;
  }
}

/* ==========================================================================
   PRIVACY POLICY PAGE STYLES
   ========================================================================== */

.privacy-hero {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
  padding: 80px 0 60px 0;
  text-align: center;
}

.privacy-hero-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.privacy-badge {
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.privacy-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--color-black);
  margin: 0;
}

.privacy-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0;
}

.privacy-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-main);
  text-align: center;
  margin-top: 10px;
}

.privacy-content-section {
  padding: 60px 0 100px 0;
  background-color: var(--color-white);
}

.privacy-layout-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 120px; /* offset for sticky header */
}

.toc-card {
  background: var(--color-bg-light);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
}

.toc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E7EB;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-link {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
}

.toc-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.toc-link.active {
  color: var(--color-primary);
  font-weight: 700;
  border-left: 3px solid var(--color-primary);
  padding-left: 8px;
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.privacy-intro-card {
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
}

.privacy-intro-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  margin: 0;
}

.privacy-section {
  scroll-margin-top: 130px; /* behavior offset when scrolling to id */
}

.privacy-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-section h2 .sec-number {
  background: var(--color-primary-light);
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.policy-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.policy-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-main);
}

.policy-bullet-list li i {
  color: var(--color-primary);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 16px;
}

.policy-note-box {
  background: var(--color-bg-light);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 20px;
}

.policy-note-box i {
  color: var(--color-warning);
  font-size: 20px;
  margin-top: 2px;
}

.policy-note-box.warning {
  border-left: 4px solid var(--color-danger);
}

.policy-note-box.warning i {
  color: var(--color-danger);
}

.policy-note-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.policy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.policy-link-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.warning-paragraph {
  background-color: #FFF5F5;
  border-left: 4px solid var(--color-danger);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  color: #C53030 !important;
  font-size: 14px !important;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.warning-paragraph i {
  margin-top: 4px;
}

.email-request-card {
  display: flex;
  gap: 20px;
  background: var(--color-bg-light);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}

.email-request-card .icon {
  background: #F3F4F6;
  color: var(--color-danger);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.email-request-card .content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 8px 0;
}

.email-request-card .content p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background-color: #0087db;
}

.contact-card-box {
  background: var(--color-bg-light);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}

.contact-card-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 4px 0;
}

.contact-card-box .managed-by {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 16px 0;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--color-text-main);
}

.contact-detail-row i {
  color: var(--color-primary);
  font-size: 16px;
}

.contact-detail-row a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-detail-row a:hover {
  text-decoration: underline;
}

/* Privacy Responsive styling */
@media (max-width: 992px) {
  .privacy-layout-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .privacy-sidebar {
    position: static;
  }
  
  .toc-card {
    padding: 16px;
  }
  
  .toc-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .toc-link {
    background: #F3F4F6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
  }
  
  .toc-link.active {
    border-left: none;
    padding-left: 12px;
    background: var(--color-primary);
    color: var(--color-white);
  }
  
  .toc-link:hover {
    transform: none;
    background: #E5E7EB;
  }
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 60px 0 40px 0;
  }
  
  .privacy-title {
    font-size: 32px;
  }
  
  .privacy-intro {
    font-size: 15px;
  }
  
  .privacy-body {
    gap: 36px;
  }
  
  .privacy-section h2 {
    font-size: 20px;
  }
  
  .email-request-card {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}