/* ================================================
   IGI APPRAISAL — Pixel-Perfect Stylesheet
   Fonts: Cormorant Garamond (headings) + Jost (body)
   Colors extracted directly from PDF design
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --beige:        #e8e0d5;   /* hero / section backgrounds */
  --cream:        #f0ebe3;   /* lighter cream sections */
  --tan:          #9e8472;   /* dark tan / brown section bg */
  --tan-dark:     #7a6555;   /* darker brown for gem section */
  --footer-dark:  #2b2520;   /* near-black footer */
  --gold:         #8c7355;   /* gold accent / buttons */
  --gold-hover:   #6e5a40;
  --text-dark:    #2b2520;
  --text-mid:     #4a3f38;
  --text-light:   #7a6f6a;
  --white:        #ffffff;
  --border:       #d0c4b8;
  --input-line:   #b8afa6;
  --font-head:    'Avante', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --max-w:        1180px;
  --ease:         0.22s ease;
}


h1, h2,h3,h4{  font-family: 'Avante';}
@font-face {
    font-family: 'Avante';
    src: url('../fonts/Avante.woff2') format('woff2'),
        url('../fonts/Avante.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text-dark); background: var(--white);  }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

.wrap { max-width:1200px; margin: 0 auto;   }

/* ================================================
   NAVBAR
   ================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height:84px;
  display: flex; align-items: center;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img{ width:150px;}
.nav-crest { width: 42px; height: 42px; }
.nav-name {
  
  font-size: 28px; font-weight: 600; letter-spacing: 2px;
  color: var(--text-dark);
}

.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu a {
  font-size: 16px; font-weight: 500; letter-spacing: 0.12em;
  color: var(--text-mid);
  padding: 0 18px;
  transition: color var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-sep { color: var(--border); font-size: 12px; user-select: none; }

.nav-contact-btn {
  background: var(--gold);
  color:#fff !important;
   font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding:8px 22px !important;
  transition: background var(--ease);
}
.nav-contact-btn:hover { background: var(--gold-hover); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-dark); transition: var(--ease); }

/* ================================================
   HERO
   ================================================ */
.hero {
  margin-top: 64px;
  background: url(../images/banner.png) no-repeat center; background-size:cover;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

/* Left: content */
.hero-left { display: flex; align-items: center; padding: 60px 0 60px 0; }
.hero-left .wrap { padding-right: 20px; }

.hero-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.hero-title {
   font-size: 52px; font-weight: 400; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 20px;
}
.hero-title strong { font-weight: 600;  }

.hero-desc {
    line-height: 1.75;
  color: var(--text-mid); max-width: 380px; margin-bottom: 32px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 26px; transition: var(--ease);
}
.btn-dark { background: var(--text-dark); color: var(--white); }
.btn-dark:hover { background: var(--gold); }
.btn-outline {
  background: transparent; color: var(--text-dark);
  border: 1px solid var(--text-dark);
}
.btn-outline:hover { background: var(--text-dark); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-gold-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--white);
}
.btn-gold-outline:hover { background: var(--white); color: var(--gold); }

.hero-accred {
  display: flex; align-items: center; gap: 20px;
  margin-top: 40px; flex-wrap: wrap;
}
.hero-accred img { height: 32px; width: auto; filter: grayscale(20%); }
.accred-text {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light);
  line-height: 1.3; max-width: 80px;
}
.accred-divider { width:500px; padding-top:40px;  }
.accred-divider  img{border-radius:10px; border: 1px solid #c8cdcf; }
/* Right: photo */
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Floating badges — right edge */
.hero-badges {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  z-index: 2;
}
.hbadge {
  background: rgba(255,255,255,0.93);
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; min-width: 170px;
  border-bottom: 1px solid rgba(200,180,160,0.3);
}
.hbadge img{ width:42px;}
.hbadge:last-of-type { border-bottom: none; }
.hbadge-icon { width: 32px; height: 32px; flex-shrink: 0; }
.hbadge-text { font-size: 11px; font-weight: 500; line-height: 1.4; color: var(--text-dark); }
.hbadge-link {
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; gap: 6px;
  padding: 12px 18px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; transition: background var(--ease);
}
.hbadge-link:hover { background: var(--gold-hover); }
.hbadge-link svg { width: 12px; }

/* ================================================
   CONTACT + OFFERS SECTION
   ================================================ */
.co-section { background: var(--cream); padding:90px 0; }
.co-section .wrap { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }

/* Contact card */
.contact-card {
  background: var(--white);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);  ;
}
.cc-title {  font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.cc-contact-row {
  display: flex; align-items: center; gap: 6px;
   color: var(--text-mid); margin: 10px 0 4px;
  flex-wrap: wrap; gap: 14px;
}
.cc-contact-row span { display: flex; align-items: center; gap: 5px; }
.cc-sub { font-size: 14px; color: var(--text-light); margin-bottom: 18px; line-height:20px; }

.cc-form { display: flex; flex-direction: column; gap: 0; }
.cc-form input, .cc-form textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 12.5px;
  color: var(--text-dark); background: transparent;
  border: none; border-bottom: 1px solid var(--input-line);
  padding: 11px 0; outline: none;
  transition: border-color var(--ease);
}
.cc-form input::placeholder, .cc-form textarea::placeholder { color: #b0a89e; font-size: 12px; }
.cc-form input:focus, .cc-form textarea:focus { border-color: var(--gold); }
.cc-form textarea { resize: none; height: 72px; margin-top: 4px; }
.cc-form .btn { margin-top: 20px; width: 100%; justify-content: center; font-size: 10.5px; letter-spacing: 0.14em; }

/* Offers side */
.offers-title {  font-size: 30px; font-weight: 400; color: var(--text-dark); padding-bottom:15px;   }
.offers-list { display: flex; flex-direction: column; gap: 20px; }
.offer-item { display: flex; gap: 14px; }
.offer-arrow {
  flex-shrink: 0; margin-top: 12px;
  width: 10px; height:9px;
  /* diagonal arrow matching PDF */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 14L14 2M14 2H6M14 2v8' stroke='%238c7355' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.space-40{ height:40px; display:inline-block;     width: 100%;}
.offer-item h4 {   font-weight: 600; color: var(--text-dark); margin-bottom: 3px; display: inline; }
.offer-item p { font-size: 19px; color: var(--text-mid); line-height: 1.65; display: inline; }

/* ================================================
   GEM & JEWELRY SECTION (brown/tan)
   ================================================ */
.gem-section {
  background: var(--tan-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.gem-section::before {
  content: '';
  position: absolute; left: 30px; top: 50%; transform: translateY(-50%);
  width: 180px; height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 95,30 95,70 50,95 5,70 5,30' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1'/%3E%3Cpolygon points='50,20 80,35 80,65 50,80 20,65 20,35' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='50' y1='5' x2='50' y2='95' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cline x1='5' y1='30' x2='95' y2='70' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cline x1='5' y1='70' x2='95' y2='30' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") center/contain no-repeat;
}
.gem-left { padding: 72px 60px 72px 60px; display: flex; align-items: center; }
.gem-title {  font-size:36px; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.gem-desc {   color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 340px; margin-bottom: 32px; }

.gem-right { position: relative; min-height: 440px; }
.gem-right img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================
   CTA BANNER — "World's Largest…"
   ================================================ */
.cta-banner {
  background: var(--cream);
  padding:120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
/* diamond wireframe decoration */
.cta-banner::after {
  content: '';
  position: absolute; right: 40px; bottom: 20px;
  width: 120px; height: 120px; opacity: 0.15;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 98,28 98,72 50,98 2,72 2,28' fill='none' stroke='%238c7355' stroke-width='1.5'/%3E%3Cpolygon points='50,18 82,34 82,66 50,82 18,66 18,34' fill='none' stroke='%238c7355' stroke-width='1'/%3E%3Cline x1='50' y1='2' x2='50' y2='98' stroke='%238c7355' stroke-width='0.75'/%3E%3Cline x1='2' y1='28' x2='98' y2='72' stroke='%238c7355' stroke-width='0.75'/%3E%3Cline x1='2' y1='72' x2='98' y2='28' stroke='%238c7355' stroke-width='0.75'/%3E%3C/svg%3E") center/contain no-repeat;
}
.cta-banner-title {
   font-size:36px; font-weight: 400;
  color: var(--text-dark); line-height: 1.25;
  max-width:950px; margin: 0 auto 14px;
}
.cta-banner-sub {  color: var(--text-light); margin-bottom: 36px; }
.btn-contact-igi {
  background: transparent; color: var(--text-dark);
  border: 1px solid var(--text-dark);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em;
  padding: 11px 28px;
}
.btn-contact-igi:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ================================================
   TRUSTED PARTNER — SERVICES
   ================================================ */
.services-section {
 
  padding: 72px 0 150px;
  position: relative;
  overflow: hidden; background: linear-gradient(to top, #ffffff 50%, #8d7a68 50%); 
}
/* circle pattern bg */
.services-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 60px, transparent 60px),
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 100px, transparent 100px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04) 80px, transparent 80px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03) 130px, transparent 130px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.04) 70px, transparent 70px);
  pointer-events: none;
}
.services-heading {
   font-size: 30px; font-weight: 400;
  color:#fff; text-align: center;
  margin-bottom: 48px; position: relative;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.svc-card { background: var(--white); padding: 28px 22px; border:1px solid #ddd; }
.svc-card h3 {  font-size: 20px; font-weight: 500; color: var(--text-dark); margin-bottom: 14px; line-height: 1.25; }
.svc-divider { width: 28px; height: 2px; background: var(--gold); margin-bottom: 16px; }
.svc-card p {  color: var(--text-mid); line-height: 1.7; }

/* ================================================
   DID YOU KNOW
   ================================================ */
.dyk-section {
  background: var(--tan-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.dyk-left { padding: 72px 60px; display: flex; align-items: center; }
.dyk-title {  font-size: 38px; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 28px; }
.dyk-list { display: flex; flex-direction: column; gap: 12px; }
.dyk-list li { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.65; position: relative; padding-left: 0; }
.dyk-right { position: relative; min-height: 480px; }
.dyk-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ================================================
   GET IN TOUCH (bottom)
   ================================================ */
.touch-section { background: var(--cream); padding: 80px 0; text-align: center; }
.touch-title {  font-size: 44px; font-weight: 300; color: var(--text-dark); margin-bottom: 8px;margin-top: 70px; }
.touch-sub { font-size: 13px; color: var(--text-light); margin-bottom: 44px; }

.touch-form { text-align: left; width:70%; margin:auto; padding-bottom:90px; }
.touch-row1 {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; border-bottom: none; margin-bottom: 0;
}
.touch-row1 input {
  font-family: var(--font-body); font-size: 13px;
  color: var(--text-dark); background: transparent;
  border: none; border-bottom: 1px solid var(--input-line);
  padding: 12px 0; outline: none;
  margin-right: 24px;
  transition: border-color var(--ease);
}
.touch-row1 input:last-child { margin-right: 0; }
.touch-row1 input::placeholder { color: #b0a89e; }
.touch-row1 input:focus { border-color: var(--gold); }

.touch-row2 { display: grid; grid-template-columns: 1fr auto; gap: 24px; margin-top: 0; align-items: end; }
.touch-row2 textarea {
  font-family: var(--font-body); font-size: 13px;
  color: var(--text-dark); background: transparent;
  border: none; border-bottom: 1px solid var(--input-line);
  padding: 12px 0; outline: none; resize: none; height: 56px;
  transition: border-color var(--ease);
}
.touch-row2 textarea::placeholder { color: #b0a89e; }
.touch-row2 textarea:focus { border-color: var(--gold); }
.touch-row2 .btn { white-space: nowrap; font-size: 11px; letter-spacing: 0.12em; }

/* floating icons bottom corners */
.corner-icon {
  position: fixed; bottom: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 100;
  transition: var(--ease); box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.corner-icon:hover { border-color: var(--gold); }
.corner-icon-left { left: 24px; }
.corner-icon-right { right: 24px; }

/* ================================================
   FORM MESSAGE POPUP
   ================================================ */
.message-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 12, 9, 0.65);
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 20px;
}
.message-popup-overlay.show {
  display: flex;
}
.message-popup-card {
  width: min(460px, 100%);
  background: #1f1a16;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 26px 24px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.message-popup-title {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
}
.message-popup-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}
.message-popup-btn {
  background: #9ec1ff;
  color: #0f172a;
  border: none;
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  margin-left: auto;
  display: block;
  transition: transform var(--ease), opacity var(--ease);
}
.message-popup-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.message-popup-overlay.success .message-popup-btn {
  background: #b9d8c8;
  color: #183124;
}
.message-popup-overlay.error .message-popup-btn {
  background: #f0b6b0;
  color: #4a1713;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--footer-dark);
  padding: 56px 0 28px;
  position: relative;
}
/* curved top edge */
.footer::before {
  content: '';
  position: absolute; top: -40px; left: 0; right: 0; height: 80px;
  background: var(--footer-dark);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; position: relative; }

.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-brand img{ width:220px;}
.footer-crest { width: 60px; height: 60px; opacity: 0.9; }
.footer-igi-text {  font-size: 36px; font-weight: 600; letter-spacing: 2px; color: var(--white); }
.footer-tagline {   color: rgba(255,255,255,0.4); line-height: 1.5; padding-left:20px;  }

.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-links-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; }

.footer-social { display: flex; flex-direction: column; gap: 9px; }
.footer-social a { font-size: 12.5px; color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-social a:hover { color: rgba(255,255,255,0.9); }
.footer-email { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 8px; }

.footer-bottom {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.3); }


  
 .dark-section {
  background: var(--tan-dark); padding:90px 0px; width:100%; height:500px; display:inline-block; 
 }
  .dark-section .wraper{ width:1200px; margin:auto}
  .dark-section .wraper .left{ width:50%; float:left }
  .dark-section .wraper .right{ width:50%; float:left } 
   .dark-section .wraper .right img{ width:80%; margin-top:-150px; z-index:9; position: relative;}
   
.dark-section ul { padding-right:80px; padding-top:40px;}
.dark-section ul li{ color:#fff; line-height:20px; padding-bottom:10px;}



/* Popup Background Overlay */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Content */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width:65%;
    position: relative;
}

/* Close Button Style */
.close-btn {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Open Button Style */
.open-btn {
     
 
    cursor: pointer;
}

/* Close Button Hover Effect */
.close-btn:hover {
    color: red;
}
.boxes  li{ width:240px; padding:20px 35px; background:#fff; float:left; min-height:95px; margin-right:10px;font-size: 16px; border-left:5px solid #8c7355 }
.boxes h4{ font-size:22px; width:40px; height:40px; background:#8c7355; color:#fff;    text-align: center;
    padding-top:2px; border-radius:100%; margin-bottom:15px;}
	.mobile-banner{ display:none; }
	 .top-title{ font-size:18px; display: block; padding-bottom:5px;}
	 .mobile-on{ display:none; }
	 .mobile-image-logos{ display:none}

/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .co-section .wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { max-width: 100%;
        margin: unset;}
   .dark-section .wraper, .nav .wrap{ width:900px;}
   .wrap { width:96%}
   .hero-left{ padding-left:40px; padding-top:60px; padding-bottom:60px;}
   .offers-title{  }
   .boxes3-mobile{ width:100%;  padding:5%;}
  
   .cta-banner{ display:none}
   .touch-section{ padding-top:10px;}
   
.mobile-image-logos{ margin:20px 0px; text-align:center;width: 100%; display:block; width:100%    }
.accred-divider{width:100%  }
 .boxes li{ width: 30%;     padding: 20px 30px; }
 
 
   .hero-left{ padding-left:40px; padding-top:60px; padding-bottom:60px;}
   .dark-section .wraper .left{ padding-left:40px; padding-right:25px;}
    .dark-section .wraper .right img{ margin-top:0px;     width: 70%;  padding-left:75px;}
	.dark-section{ padding-bottom:60px; }
	.dark-section ul{ padding-right:0px; padding-top:0px;}
	.services-section{    background: linear-gradient(to top, #8d7a68 50%, #8d7a68 50%); padding-bottom:60px;}
	.mobile-image-logos{ display:none}
	.hero-badges{ top:70%}
	.boxes3-mobile{ padding-bottom:0px;}
	.footer-tagline{ display:none}
 
}

/* ================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }

  /* nav */
  .nav-menu {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top:85px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 8px 0; gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 13px 24px; border-bottom: 1px solid var(--cream); font-size: 16px; }
  .nav-sep { display: none; }
  .nav-contact-btn { margin: 8px 20px; text-align: center; }
  .hamburger { display: flex; }

  /* hero */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 20px; }
  .hero-left .wrap { padding: 0 20px; }
  .hero-title { font-size: 36px; }
  /* .hero-right { min-height: 280px; } */
  .hero-right { min-height: 0; }
  


  .hero-badges {   }
  .hero-accred { gap: 12px; }

  /* gem */
  .gem-section { grid-template-columns: 1fr; }
  .gem-left { padding: 48px 20px; }
  .gem-title { font-size: 30px; }
  .gem-right { min-height: 260px; }

  /* dyk */
  .dyk-section { grid-template-columns: 1fr; }
  .dyk-left { padding: 48px 20px; }
  .dyk-title { font-size: 28px; }
  .dyk-right { min-height: 260px; order: -1; }

  /* cta */
  .cta-banner { padding: 56px 0; }
  .cta-banner-title { font-size: 28px; }

  /* services */
  .services-grid { grid-template-columns: 1fr; }
  .services-heading { font-size: 26px; }

  /* touch */
  .touch-title { font-size: 32px; }
  .touch-row1 { grid-template-columns: 1fr; }
  .touch-row1 input { margin-right: 0; }
  .touch-row2 { grid-template-columns: 1fr; }
  .touch-row2 .btn { width: 100%; justify-content: center; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer::before { display: none; }
  .footer-links-2col { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .corner-icon { display: none; }
  .message-popup-card {
    padding: 22px 18px 18px;
  }
  .message-popup-title {
    font-size: 22px;
  }
  .message-popup-text {
    font-size: 14px;
  }

  

 .mobile-banner{ display:block; margin-bottom:35px; border:4px solid #fff} 
 .top-title{ font-size:14px;}
  .dark-section .wraper, .nav .wrap{ width:760px;}
  .boxes3-mobile{ padding:0px;}

.popup-content {  width: 95%;}
  .hero-right .hero-badges{ display:none}



.mobile-on{ display:block; }
.mobile-on .col-25{ text-align:center; width:33.3%; float:left}
.mobile-on .col-25{ text-align:center; min-height:150px;}
.mobile-on .col-25  p{ line-height:18px; padding:8px;}
.mobile-on .col-25 img{ display:inherit; text-align:center;      display: inline;}
.hero{ background:#d3dce0}
.mobile-off{ display:none}
.mobile-image-logos{ display:block}
.boxes li{width: 31.5%; padding: 20px 20px;}
.touch-form{ padding-bottom:0px;}
.dark-section .wraper .right img{ width:85%}
  
}

@media (max-width: 480px) {
.hero{ background:#d3dce0}
  .hero-title { font-size: 30px; }
  .cta-banner-title { font-size: 22px; }
  .gem-title { font-size: 26px; }
  .touch-title { font-size: 26px; }
  .dark-section .wraper{ width:100%}
   .dark-section .wraper .left{ width:100%;}
  .dark-section .wraper .right{ width:100%;}
  .wrap { max-width:100%; margin: 0 auto;   }
  .accred-divider{ width:100%;}
  /* .hero-right{ display:none  } */
    .hero-right .hero-badges{ display:none}
  .dark-section .wraper .right img{ margin-top:0px;}
  .dark-section{ padding:60px 20px; height:inherit}
  .dark-section .wraper .right img{ width:100%; margin-top:40px;}
  .boxes li {
    width: 100%;  margin-bottom: 10px;

}
.dark-section .wraper .right img{ padding-left:0px;}
.dark-section .wraper .left{ padding-left:0px;}
.hbadge-link { text-align:center; width:100%; display:inline-block }



}
