/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #222; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BRAND COLOR VARIABLES ===== */
:root {
  --brand: #3c587d;
  --brand-dark: #2c4060;
  --brand-light: #5a7aa8;
  --brand-bg: #eef2f7;
  --accent: #f5c900;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 65px;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(60, 88, 125, 0.13);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.nav-logo-text { font-size: 20px; font-weight: 700; color: #222; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links li { position: relative; }
.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: .2s;
}
.nav-links li a:hover { color: var(--brand); }
.nav-links li a .fa-chevron-down { font-size: 10px; margin-left: 4px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(60, 88, 125, 0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 2000;
}
.dropdown-menu li a { padding: 10px 18px; font-size: 13.5px; display: block; color: #333; }
.dropdown-menu li a:hover { background: var(--brand-bg); color: var(--brand); }
.nav-links li:hover .dropdown-menu { display: block; }

.nav-investor {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand) !important;
  border-radius: 5px;
  padding: 6px 14px !important;
  font-weight: 600;
  transition: .2s;
}
.nav-investor:hover { background: var(--brand); color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 0 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 1000;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 24px; font-size: 15px; border-bottom: 1px solid #f0f0f0; }
  .nav-links li:last-child a { border-bottom: none; }
  .dropdown-menu { position: static; box-shadow: none; background: #f9f9f9; display: none; }
  .nav-links li.open-sub .dropdown-menu { display: block; }
  .nav-app-btns { display: none; }
  .nav-investor { margin: 10px 24px; display: inline-block; }
}

/* ===========================
   HERO / SLIDER
=========================== */
.hero-section { position: relative; overflow: hidden; height: 420px; }
@media (max-width: 600px) { .hero-section { height: 260px; } }

.hero-slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 60px;
}
@media (max-width: 600px) { .hero-slide-overlay { padding: 0 20px; } }

.hero-slide-overlay h1 { font-size: 38px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px; }
@media (max-width: 600px) { .hero-slide-overlay h1 { font-size: 24px; } }

.hero-slide-overlay .sale-label { font-size: 14px; color: #ddd; }
.hero-slide-overlay .sale-percent { font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 18px; }
@media (max-width: 600px) { .hero-slide-overlay .sale-percent { font-size: 20px; } }

.shop-btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 12px 32px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 5px;
  transition: .2s;
}
.shop-btn:hover { background: var(--brand-dark); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.slider-arrow.left { left: 12px; }
.slider-arrow.right { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 10;
}
.slider-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: .2s;
}
.slider-dots span.active { background: #fff; }

/* ===========================
   DELIVERY BANNER
=========================== */
.delivery-banner {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.delivery-banner i { font-size: 22px; }
.delivery-banner strong { font-weight: 700; }

/* ===========================
   SECTION HEADER BOX
=========================== */
.section-header-box {
  display: inline-block;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  padding: 10px 50px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ===========================
   OUR CATEGORY
=========================== */
.category-section { padding: 55px 40px; text-align: center; background: #fff; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-card {
  border-radius: 14px;
  overflow: hidden;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cat-card.bricks { background: #dce8f0; }
.cat-card.cement { background: #d4e3f5; }
.cat-card.steel  { background: #cdd8ee; }
.cat-card.sand   { background: #c8d8eb; }
.cat-card img { height: 130px; object-fit: contain; }
.cat-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-light); }
.cat-title { font-size: 16px; font-weight: 700; color: #111; }
.quote-btn {
  background: var(--brand);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  margin-top: 4px;
  transition: .2s;
  display: inline-block;
}
.quote-btn:hover { background: var(--brand-dark); }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-section {
  padding: 40px 40px;
  background: var(--brand-bg);
  border-top: 1px solid #d0dce9;
  border-bottom: 1px solid #d0dce9;
}
.why-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 40px;
  border-bottom: 1px solid #c8d8e8;
  padding-bottom: 30px;
}
.why-top-item { text-align: center; padding: 16px 10px; }
.why-top-item i { font-size: 30px; color: var(--brand); margin-bottom: 8px; }
.why-top-item h4 { font-size: 14px; font-weight: 700; color: var(--brand-dark); }
.why-top-item p  { font-size: 12px; color: #666; margin-top: 3px; }
.why-bottom {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.why-card:nth-child(odd)  { background: #d4e3f5; }
.why-card:nth-child(even) { background: #c8d8eb; }
.why-icon-wrap { width: 58px; height: 58px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; }
.why-icon-wrap img { width: 30px; }
.why-card h5 { font-size: 12px; font-weight: 700; color: var(--brand-dark); }
.why-card p  { font-size: 11px; color: #555; line-height: 1.4; }

/* ===========================
   HIRE A CONTRACTOR
=========================== */
.contractor-section { padding: 55px 40px; text-align: center; background: #fff; }
.contractor-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.contractor-left { background: var(--brand); padding: 36px; text-align: left; }
.contractor-left h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.contractor-left p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 22px; }
.contractor-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.contractor-tags span {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 8px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
}
.contractor-tags span:hover { background: rgba(255,255,255,0.3); }
.contractor-right {
  background: var(--brand-dark);
  padding: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.contractor-right-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=600') center/cover;
  opacity: 0.18;
}
.contractor-right-content { position: relative; z-index: 2; }
.contractor-right h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.contractor-right h3 span { color: var(--accent); }
.real-estate-tags { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.re-tag {
  border: 1px solid yellow;
  color: yellow;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  display: inline-block;
  align-self: flex-end;
  border-radius: 3px;
}
.re-req-btn {
  background: var(--accent);
  color: #111;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 5px;
  display: inline-block;
  font-size: 14px;
  transition: .2s;
}
.re-req-btn:hover { background: #e0b800; }

/* ===========================
   APP DOWNLOAD
=========================== */
.app-section {
  background: var(--brand-bg);
  padding: 55px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.app-phone img { height: 280px; border-radius: 18px; box-shadow: 0 12px 40px rgba(60,88,125,0.25); }
.app-text { max-width: 420px; }
.app-text h2 { font-size: 28px; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; }
.app-text p  { font-size: 14px; color: #555; margin-bottom: 22px; }
.app-sms-row {
  display: flex;
  margin-bottom: 12px;
  border: 1px solid #adc3db;
  border-radius: 5px;
  overflow: hidden;
  max-width: 360px;
}
.app-sms-row input { flex: 1; border: none; padding: 11px 14px; font-size: 14px; outline: none; font-family: 'Poppins', sans-serif; min-width: 0; }
.app-sms-row button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  transition: .2s;
}
.app-sms-row button:hover { background: var(--brand-dark); }
.app-sms-note { font-size: 12px; color: #777; margin-bottom: 18px; }
.app-store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btns a img { height: 38px; }

@media (max-width: 768px) {
  .app-section { flex-direction: column; padding: 40px 20px; gap: 28px; align-items: flex-start; }
  .app-phone { width: 100%; display: flex; justify-content: center; }
  .app-phone img { height: 220px; border-radius: 14px; }
  .app-text { width: 100%; max-width: 100%; }
  .app-sms-row { max-width: 100%; }
}

/* ===========================
   BLOGS
=========================== */
.blogs-section { padding: 55px 40px; background: #fff; text-align: center; }
.blogs-subtitle { font-size: 22px; font-weight: 700; margin-bottom: 28px; color: var(--brand-dark); }
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.blog-card { border: 1px solid #d0dce9; border-radius: 8px; overflow: hidden; }
.blog-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.blog-card-body { padding: 16px; }
.blog-card-body h4 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 12px; line-height: 1.5; }
.read-more { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .5px; }
.read-more:hover { color: var(--brand-dark); }

/* ===========================
   FAQ
=========================== */
.faq-section { padding: 55px 40px; text-align: center; background: var(--brand-bg); }
.faq-title-red { font-size: 26px; font-weight: 700; margin-bottom: 24px; color: var(--brand-dark); }
.faq-title-red span { color: var(--brand); }
.faq-list { max-width: 700px; margin: 0 auto 28px; text-align: left; }
.faq-item { border-bottom: 1px solid #c8d8e8; cursor: pointer; overflow: hidden; }
.faq-item:first-child { border-top: 1px solid #c8d8e8; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.faq-question span { font-size: 14px; color: #111; font-weight: 500; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
  line-height: 1;
}
.faq-icon.active  { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-icon.inactive { background: #d0dce9; color: var(--brand); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open  { max-height: 300px; padding-bottom: 16px; }
.faq-answer p { font-size: 13.5px; color: #555; line-height: 1.7; }
.more-faq-btn {
  background: var(--brand);
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  display: inline-block;
  transition: .2s;
}
.more-faq-btn:hover { background: var(--brand-dark); }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(to right, var(--brand), var(--brand-light));
  padding: 28px 40px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}
.cta-banner strong { font-weight: 700; color: var(--accent); }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--brand-dark); padding: 44px 60px 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h5 { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: #fff; }
.social-icons { display: grid; grid-template-columns: repeat(4, 34px); gap: 6px; margin-bottom: 14px; }
.social-icons a { width: 34px; height: 34px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
.si-fb { background: #1877F2; }
.si-x  { background: #000; }
.si-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.si-yt { background: #FF0000; }
.si-li { background: #0A66C2; }
.si-pt { background: #BD081C; }
.si-tm { background: #35465c; }
.si-fl { background: #FF0084; }
.connect-title { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.store-badge { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.store-badge a img { height: 32px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-contact strong { font-weight: 700; color: #fff; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .category-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-bottom         { grid-template-columns: repeat(3, 1fr); }
  .blogs-grid         { grid-template-columns: repeat(2, 1fr); }
  .contractor-banner  { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .category-grid, .why-top, .why-bottom, .blogs-grid { grid-template-columns: 1fr; }
  .quote-btn { font-size: 12px; padding: 10px 16px; }
}

/* ===========================
   QUOTE POPUP
=========================== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 45, 65, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(60, 88, 125, 0.25);
  animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popupIn {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0);       opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.popup-close:hover { color: var(--brand); }
.popup-header { margin-bottom: 22px; }
.popup-header h3 { font-size: 20px; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.popup-header p  { font-size: 13px; color: #888; }
.popup-form { display: flex; flex-direction: column; gap: 14px; }
.popup-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.popup-field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.popup-field label { font-size: 12px; font-weight: 600; color: var(--brand-dark); letter-spacing: 0.3px; }
.popup-field input,
.popup-field select,
.popup-field textarea {
  border: 1.5px solid #d0dce9;
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-family: 'Poppins', sans-serif;
  color: #222;
  outline: none;
  transition: border-color .2s;
  background: #fff;
  width: 100%;
}
.popup-field input:focus,
.popup-field select:focus,
.popup-field textarea:focus { border-color: var(--brand); }
.popup-field textarea { resize: vertical; min-height: 80px; }
.popup-submit {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}
.popup-submit:hover { background: var(--brand-dark); }
.popup-divider { height: 1px; background: #eef2f7; margin: 4px 0; }

@media (max-width: 720px) {
  .popup-box { padding: 30px 20px 24px; margin: 16px; }
  .popup-row { grid-template-columns: 1fr; }
}

/* ===========================
   CONTACT POPUP
=========================== */
.contact-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 45, 65, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.contact-popup-overlay.open { display: flex; }
.contact-popup-box {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px 20px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 20px 60px rgba(60, 88, 125, 0.25);
  animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-popup-box .popup-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 22px; color: #999; cursor: pointer; line-height: 1; transition: color .2s; }
.contact-popup-box .popup-close:hover { color: var(--brand); }
.contact-popup-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.contact-popup-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-popup-icon i { font-size: 22px; color: var(--brand); }
.contact-popup-top h3 { font-size: 20px; font-weight: 700; color: var(--brand-dark); }
.contact-popup-top p  { font-size: 13px; color: #888; margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.contact-form .popup-field label { font-size: 12px; font-weight: 600; color: var(--brand-dark); }
.contact-form .popup-field input,
.contact-form .popup-field textarea {
  border: 1.5px solid #d0dce9;
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-family: 'Poppins', sans-serif;
  color: #222;
  outline: none;
  transition: border-color .2s;
  background: #fff;
  width: 100%;
}
.contact-form .popup-field input:focus,
.contact-form .popup-field textarea:focus { border-color: var(--brand); }
.contact-form .popup-field textarea { resize: vertical; min-height: 70px; }
.contact-submit {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.contact-submit:hover { background: var(--brand-dark); }
.contact-info-strip {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eef2f7;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}
.contact-info-item i { color: var(--brand); font-size: 14px; }

@media (max-width: 520px) {
  .contact-popup-box { padding: 28px 18px 24px; margin: 16px; }
  .contact-info-strip { flex-direction: column; gap: 10px; }
}

/* ===========================
   PRIVACY PAGE — HERO BANNER
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  padding: 70px 40px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: 40px; font-weight: 700; margin-bottom: 12px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb i { font-size: 10px; }

/* ===========================
   PRIVACY PAGE — CONTENT
=========================== */
.privacy-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0px 0px;
}
.privacy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-bg);
  border: 1px solid #c8d8e8;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 36px;
}
.privacy-last-updated i { font-size: 13px; }
.privacy-intro {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 48px;
  padding: 24px 28px;
  background: var(--brand-bg);
  border-left: 4px solid var(--brand);
  border-radius: 0 10px 10px 0;
}
.privacy-section { margin-bottom: 44px; }
.privacy-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.privacy-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-bg);
}
.privacy-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 12px;
}
.privacy-section ul {
  list-style: none;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-section ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}
.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-light);
}
.privacy-highlight-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
}
.privacy-highlight-box strong { color: #333; }
.privacy-contact-card {
  background: var(--brand);
  border-radius: 12px;
  padding: 30px 32px;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 48px;
}
.privacy-contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.privacy-contact-card p  { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 18px; }
.privacy-contact-card a {
  display: inline-block;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 14px;
  transition: .2s;
}
.privacy-contact-card a:hover { background: #e0b800; }

@media (max-width: 600px) {
  .page-hero h1 { font-size: 28px; }
  .privacy-wrapper { padding: 40px 20px 60px; }
}