/* =========================================================
   RAK ICC — Main Stylesheet
   ========================================================= */

/* 0. Reset & Base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: #669999; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 1. Alert Banner
   --------------------------------------------------------- */
.alert-banner {
  background: #669999;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  position: relative;
  z-index: 1000;
}
.alert-banner a {
  color: #e7be7e;
  margin-left: 8px;
  text-decoration: underline;
  font-weight: 700;
}
.alert-banner a:hover { color: #fff; }

/* 2. Header & Navigation
   --------------------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  height: 90px;
}

/* Logo */
.site-logo img { height: 56px; width: auto; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: block;
  padding: 0 16px;
  line-height: 90px;
  font-size: 13.5px;
  font-weight: 600;
  color: #484848;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: #669999; }

/* Dropdown */
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-top: 3px solid #669999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s;
  z-index: 998;
}
.main-nav > ul > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #484848;
  font-weight: 400;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s, color .15s;
}
.main-nav .dropdown li a:hover {
  background: #f7f7f7;
  color: #669999;
  padding-left: 26px;
}

/* Header search icon */
.header-search {
  margin-left: 20px;
  color: #484848;
  font-size: 16px;
  cursor: pointer;
  transition: color .2s;
}
.header-search:hover { color: #669999; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #484848;
  border-radius: 2px;
  transition: all .3s;
}

/* 3. Hero Slider
   --------------------------------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #1a2e3b;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }

.slide-1 {
  background: linear-gradient(100deg, rgba(15,40,55,.85) 50%, rgba(15,40,55,.4) 100%),
              url('/images/banner-1.jpg') center/cover no-repeat;
}
.slide-2 {
  background: linear-gradient(100deg, rgba(15,40,55,.85) 50%, rgba(15,40,55,.4) 100%),
              url('/images/banner-2.jpg') center/cover no-repeat;
}
.slide-3 {
  background: linear-gradient(100deg, rgba(15,40,55,.85) 50%, rgba(15,40,55,.4) 100%),
              url('/images/banner-3.png') center/cover no-repeat;
}

.slide-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  color: #fff;
  max-width: 620px;
}
.slide-content .tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e7be7e;
  margin-bottom: 16px;
  display: block;
}
.slide-content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.slide-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: .9;
}
.btn-primary {
  display: inline-block;
  background: #669999;
  color: #fff;
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #557a7a; color: #fff; transform: translateY(-1px); }

.btn-gold {
  display: inline-block;
  background: #e7be7e;
  color: #484848;
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.btn-gold:hover { background: #d4a96a; color: #333; transform: translateY(-1px); }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
}
.slider-dot.active { background: #e7be7e; transform: scale(1.2); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
  border-radius: 2px;
}
.slider-arrow:hover { background: rgba(255,255,255,.25); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* 4. Stats Bar
   --------------------------------------------------------- */
.stats-bar {
  background: #484848;
  padding: 28px 30px;
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #e7be7e;
  line-height: 1;
}
.stat-number span { font-size: 28px; }
.stat-label {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  opacity: .85;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.2);
}

/* 5. About Section
   --------------------------------------------------------- */
.about-section {
  padding: 80px 30px;
  background: #fff;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #669999;
  margin-bottom: 12px;
  display: block;
}
.about-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: #484848;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.about-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #669999;
}

/* 6. Benefits Cards
   --------------------------------------------------------- */
.benefits-section {
  background: #f7f9f9;
  padding: 80px 30px;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading .section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #669999;
  display: block;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #484848;
}
.section-heading .underline-accent {
  width: 60px;
  height: 3px;
  background: #e7be7e;
  margin: 14px auto 0;
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  border-radius: 2px;
  padding: 36px 30px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border-top: 4px solid #669999;
  transition: box-shadow .3s, transform .3s;
}
.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.benefit-card-icon {
  width: 52px;
  height: 52px;
  background: #669999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 22px;
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #484848;
  margin-bottom: 16px;
}
.benefit-card ul {
  list-style: none;
}
.benefit-card ul li {
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.benefit-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #669999;
  font-weight: 700;
  font-size: 12px;
}

/* 7. Products Grid
   --------------------------------------------------------- */
.products-section {
  padding: 80px 30px;
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  padding: 30px 24px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #669999;
  transform: scaleX(0);
  transition: transform .3s;
}
.product-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.product-card:hover::after { transform: scaleX(1); }
.product-card-icon {
  width: 64px;
  height: 64px;
  background: #f0f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #669999;
  font-size: 26px;
  transition: background .3s;
}
.product-card:hover .product-card-icon { background: #669999; color: #fff; }
.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #484848;
  line-height: 1.4;
}
.product-card p {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
  line-height: 1.5;
}

/* 8. Enquiry Form Section
   --------------------------------------------------------- */
.enquiry-section {
  background: #484848;
  padding: 80px 30px;
}
.enquiry-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.enquiry-text { color: #fff; }
.enquiry-text .section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e7be7e;
  display: block;
  margin-bottom: 10px;
}
.enquiry-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.enquiry-text p {
  font-size: 15px;
  line-height: 1.8;
  opacity: .85;
  margin-bottom: 24px;
}
.enquiry-contact-info { margin-top: 30px; }
.enquiry-contact-info .cinfo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  opacity: .9;
}
.enquiry-contact-info .cinfo .icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e7be7e;
  font-size: 14px;
}

.enquiry-form-wrap {
  background: #5b5b5b;
  padding: 36px;
  border-radius: 2px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #ccc;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #669999;
  background: rgba(255,255,255,.12);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #484848; color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: #e7be7e;
  color: #484848;
  padding: 13px 36px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  width: 100%;
  transition: background .2s;
  margin-top: 6px;
}
.form-submit:hover { background: #d4a96a; }

/* 9. Testimonials
   --------------------------------------------------------- */
.testimonials-section {
  padding: 80px 30px;
  background: #f7f9f9;
}
.testimonials-inner { max-width: 900px; margin: 0 auto; }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 10px 40px;
}
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-size: 80px;
  color: #e7be7e;
  opacity: .4;
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-author { font-size: 14px; font-weight: 700; color: #484848; }
.testimonial-author span { color: #669999; font-weight: 400; display: block; font-size: 13px; margin-top: 2px; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.testimonial-dot.active { background: #669999; }

/* 10. Newsletter Section
   --------------------------------------------------------- */
.newsletter-section {
  background: #669999;
  padding: 56px 30px;
  text-align: center;
}
.newsletter-section h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter-section p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 2px 0 0 2px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.newsletter-form button {
  background: #484848;
  color: #fff;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 2px 2px 0;
  transition: background .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.newsletter-form button:hover { background: #333; }

/* 11. Footer
   --------------------------------------------------------- */
.site-footer {
  background: #1a2e3b;
  color: rgba(255,255,255,.8);
}
.footer-top {
  padding: 60px 30px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo { height: 44px; margin-bottom: 20px; filter: brightness(10); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  opacity: .75;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item .icon { color: #e7be7e; flex-shrink: 0; margin-top: 2px; font-size: 13px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e7be7e;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px;
  opacity: .75;
  transition: opacity .2s, padding-left .2s;
}
.footer-col ul li a:hover { opacity: 1; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 30px;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 12px;
  opacity: .6;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: .7;
  transition: background .2s, opacity .2s;
}
.footer-social a:hover { background: #669999; opacity: 1; }
.footer-disclaimer {
  font-size: 11px;
  opacity: .45;
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
  max-width: 1280px;
  margin: 14px auto 0;
  padding: 0 30px;
}

/* 12. Inner Page Banner
   --------------------------------------------------------- */
.page-banner {
  background: linear-gradient(135deg, #1a2e3b 0%, #2a4a5e 100%);
  padding: 60px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
}
.page-banner-inner { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: #e7be7e; }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: #e7be7e; }
.page-banner-accent {
  width: 60px;
  height: 3px;
  background: #e7be7e;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* 13. Document Verification Page
   --------------------------------------------------------- */
.doc-verify-section {
  padding: 60px 30px 80px;
  background: #fff;
}
.doc-verify-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.doc-verify-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.doc-verify-intro p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Tabs */
.verify-tabs {
  display: flex;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: 40px;
  gap: 0;
}
.verify-tab-btn {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
  transition: color .2s, border-color .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.verify-tab-btn.active {
  color: #669999;
  border-bottom-color: #669999;
}
.verify-tab-btn:hover:not(.active) { color: #484848; }

.verify-tab-pane { display: none; }
.verify-tab-pane.active { display: block; }

/* Verify Form */
.verify-form-card {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 44px 44px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.verify-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #484848;
  margin-bottom: 8px;
}
.verify-form-card .form-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 28px;
}
.verify-input-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 20px;
}
.verify-input-wrap .form-group { flex: 1; margin-bottom: 0; }
.verify-input-wrap input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color .2s;
  letter-spacing: 1px;
}
.verify-input-wrap input:focus { border-color: #669999; }
.verify-input-wrap input::placeholder { letter-spacing: 0; color: #aaa; }
.btn-verify {
  background: #669999;
  color: #fff;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  border: none;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.btn-verify:hover { background: #557a7a; }

/* Result display */
.verify-result {
  display: none;
  margin-top: 24px;
  border-radius: 4px;
  padding: 24px;
  border: 1px solid;
}
.verify-result.valid {
  background: #f0f9f0;
  border-color: #4caf50;
  display: block;
}
.verify-result.invalid {
  background: #fff3f3;
  border-color: #e53935;
  display: block;
}
.verify-result.expired {
  background: #fff8e6;
  border-color: #ff9800;
  display: block;
}
.verify-result-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.verify-result-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.valid .verify-result-icon { background: #4caf50; color: #fff; }
.invalid .verify-result-icon { background: #e53935; color: #fff; }
.expired .verify-result-icon { background: #ff9800; color: #fff; }
.verify-result-title {
  font-size: 17px;
  font-weight: 700;
  color: #484848;
}
.valid .verify-result-title { color: #2e7d32; }
.invalid .verify-result-title { color: #c62828; }
.expired .verify-result-title { color: #e65100; }
.verify-result-subtitle { font-size: 13px; color: #777; margin-top: 2px; }

.result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.result-field { display: flex; flex-direction: column; gap: 2px; }
.result-field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #999;
}
.result-field-value { font-size: 14px; font-weight: 600; color: #484848; }

/* Admin Panel */
.admin-login-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  text-align: center;
}
.admin-login-card .lock-icon {
  width: 60px;
  height: 60px;
  background: #f0f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #669999;
}
.admin-login-card h3 { font-size: 22px; font-weight: 700; color: #484848; margin-bottom: 8px; }
.admin-login-card p { font-size: 14px; color: #777; margin-bottom: 28px; }
.admin-login-card input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  outline: none;
  margin-bottom: 14px;
  transition: border-color .2s;
}
.admin-login-card input:focus { border-color: #669999; }
.admin-login-card button {
  width: 100%;
  background: #669999;
  color: #fff;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}
.admin-login-card button:hover { background: #557a7a; }

/* Admin Dashboard */
.admin-panel { display: none; }
.admin-panel.visible { display: block; }
.admin-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-top-bar h3 { font-size: 22px; font-weight: 700; color: #484848; }
.btn-add-doc {
  background: #669999;
  color: #fff;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-add-doc:hover { background: #557a7a; }

/* Add Document Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.modal-header h3 { font-size: 20px; font-weight: 700; color: #484848; }
.modal-close {
  font-size: 22px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  transition: color .2s;
}
.modal-close:hover { color: #484848; }
.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus { border-color: #669999; }
.modal-form .form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #666;
  margin-bottom: 6px;
  display: block;
}
.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-form .form-group { margin-bottom: 18px; }
.modal-form .status-options { display: flex; gap: 12px; margin-top: 4px; }
.modal-form .status-radio { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #555; cursor: pointer; }
.modal-form .status-radio input { width: auto; margin: 0; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }
.btn-cancel {
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  color: #666;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.btn-cancel:hover { background: #f5f5f5; }
.btn-save {
  padding: 11px 28px;
  font-size: 13px;
  font-weight: 700;
  background: #669999;
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.btn-save:hover { background: #557a7a; }

/* Document Table */
.doc-table-wrap {
  overflow-x: auto;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.doc-table th {
  background: #f7f9f9;
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #666;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}
.doc-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #484848;
  vertical-align: middle;
}
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:hover td { background: #fafafa; }
.doc-table .doc-id { font-family: monospace; font-size: 13px; color: #669999; font-weight: 600; }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.status-badge.valid { background: #e8f5e9; color: #2e7d32; }
.status-badge.expired { background: #fff3e0; color: #e65100; }
.status-badge.revoked { background: #fce4ec; color: #b71c1c; }
.btn-delete {
  background: none;
  border: 1px solid #e53935;
  color: #e53935;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.btn-delete:hover { background: #e53935; color: #fff; }
.empty-table-msg {
  text-align: center;
  padding: 50px 20px;
  color: #aaa;
  font-size: 14px;
}
.empty-table-msg .empty-icon { font-size: 40px; margin-bottom: 12px; }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #484848;
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s;
  z-index: 10000;
  max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #4caf50; }
.toast.error { border-left: 4px solid #e53935; }

/* 14. Utility
   --------------------------------------------------------- */
.section-inner { max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 15. Responsive
   --------------------------------------------------------- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .enquiry-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { gap: 40px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .result-details { grid-template-columns: 1fr; }
  .modal-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-slider { height: 500px; }
  .slide-content h1 { font-size: 30px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .verify-form-card { padding: 28px 22px; }
  .admin-login-card { padding: 28px 22px; }
  .modal-box { padding: 24px 20px; }
  .verify-input-wrap { flex-direction: column; align-items: stretch; }
  .stats-bar-inner { flex-direction: column; gap: 24px; }
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 990;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #1a2e3b;
  z-index: 995;
  overflow-y: auto;
  transition: right .3s ease;
  padding: 80px 0 40px;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav > ul > li > a {
  display: block;
  padding: 14px 28px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.mobile-nav .mobile-sub {
  display: none;
  background: rgba(255,255,255,.03);
}
.mobile-nav .mobile-sub a {
  display: block;
  padding: 10px 28px 10px 44px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}
.mobile-nav .has-sub > a::after {
  content: ' +';
  float: right;
  opacity: .5;
}

/* Loading state */
.loading-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  display: none;
}
.loading-overlay.show { display: flex; }

/* =========================================================
   Inner-page specific styles
   ========================================================= */

/* Card grid used across Services / Registry / Library */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 550px) { .card-grid { grid-template-columns: 1fr; } }

.img-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  border: 1px solid #eee;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.img-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.13); transform: translateY(-4px); }
.img-card-thumb { width: 100%; height: 220px; object-fit: cover; display: block; }
.img-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.img-card-body h3 { font-size: 17px; font-weight: 700; color: #484848; margin-bottom: 10px; }
.img-card-body p  { font-size: 14px; color: #666; line-height: 1.7; flex: 1; }
.img-card-body a.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 13px; font-weight: 700;
  color: #669999; text-transform: uppercase; letter-spacing: .5px;
  transition: gap .2s;
}
.img-card-body a.card-link:hover { gap: 10px; }

/* Two-column content layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.content-img {
  width: 100%; border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  object-fit: cover;
}

/* Prose / rich content */
.prose h2 { font-size: 28px; font-weight: 700; color: #484848; margin: 32px 0 12px; }
.prose h3 { font-size: 20px; font-weight: 700; color: #484848; margin: 24px 0 10px; }
.prose p  { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 16px; }
.prose ul { list-style: none; margin: 0 0 16px 0; }
.prose ul li {
  font-size: 14px; color: #555; line-height: 1.6;
  padding: 5px 0 5px 22px; position: relative;
}
.prose ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: #669999; font-weight: 700; font-size: 12px; top: 7px;
}
.prose ol { counter-reset: prose-ol; list-style: none; margin: 0 0 16px; }
.prose ol li {
  font-size: 14px; color: #555; line-height: 1.6;
  padding: 6px 0 6px 32px; position: relative; counter-increment: prose-ol;
}
.prose ol li::before {
  content: counter(prose-ol); position: absolute; left: 0;
  width: 22px; height: 22px; background: #669999; color: #fff;
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  top: 7px;
}
.prose blockquote {
  border-left: 4px solid #669999; margin: 24px 0;
  padding: 14px 24px; background: #f7f9f9;
  font-style: italic; color: #555; border-radius: 0 3px 3px 0;
}

/* Step cards (company formation) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto 60px;
  position: relative;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr; } }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px; left: 12%; right: 12%;
  height: 2px; background: #e8e8e8;
  z-index: 0;
}
@media (max-width: 900px) { .steps-grid::before { display: none; } }
.step-card {
  text-align: center; padding: 32px 20px 28px;
  background: #fff; border-radius: 3px;
  border: 1px solid #eee; position: relative; z-index: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.step-icon {
  width: 80px; height: 80px; margin: 0 auto 18px;
  background: #f0f5f5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step-icon img { width: 40px; height: 40px; object-fit: contain; }
.step-num {
  position: absolute; top: 0; right: 0;
  width: 24px; height: 24px; background: #669999; color: #fff;
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 15px; font-weight: 700; color: #484848; margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: #666; line-height: 1.6; }

/* Board member cards */
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .members-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 700px)  { .members-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px)  { .members-grid { grid-template-columns: 1fr; } }
.member-card {
  background: #fff; border-radius: 3px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07); border: 1px solid #eee;
  text-align: center; transition: transform .3s, box-shadow .3s;
}
.member-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.member-photo {
  width: 100%; height: 240px; object-fit: cover; object-position: top;
  display: block; background: #e8f0f0;
}
.member-info { padding: 20px 16px; }
.member-info h3 { font-size: 15px; font-weight: 700; color: #484848; margin-bottom: 4px; }
.member-info p  { font-size: 12px; color: #669999; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff; border-radius: 3px; padding: 32px 24px;
  border: 1px solid #eee; box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border-top: 4px solid #669999;
}
.value-card .v-icon {
  width: 48px; height: 48px; background: #f0f5f5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: #669999; font-size: 20px;
}
.value-card h3 { font-size: 16px; font-weight: 700; color: #484848; margin-bottom: 10px; }
.value-card p  { font-size: 13px; color: #666; line-height: 1.65; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-box { }
.contact-info-box h3 {
  font-size: 22px; font-weight: 700; color: #484848; margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 2px solid #f0f0f0;
}
.contact-detail {
  display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start;
}
.contact-detail .cd-icon {
  width: 44px; height: 44px; border-radius: 50%; background: #f0f5f5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #669999; font-size: 16px;
}
.contact-detail h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: #999; margin-bottom: 4px; }
.contact-detail p  { font-size: 14px; color: #484848; line-height: 1.5; }
.contact-detail a  { color: #669999; }
.office-divider { border: none; border-top: 1px solid #f0f0f0; margin: 28px 0; }
.contact-form-box {
  background: #f7f9f9; border-radius: 4px; padding: 36px;
  border: 1px solid #e8e8e8;
}
.contact-form-box h3 { font-size: 20px; font-weight: 700; color: #484848; margin-bottom: 24px; }
.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #ddd; border-radius: 2px;
  font-size: 14px; font-family: inherit; color: #333;
  outline: none; transition: border-color .2s; background: #fff;
}
.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus { border-color: #669999; }
.contact-form-box .form-group label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .7px; color: #666; margin-bottom: 6px; display: block;
}
.contact-form-box .form-group { margin-bottom: 16px; }
.contact-form-box .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .contact-form-box .form-row { grid-template-columns: 1fr; } }
.contact-form-box textarea { resize: vertical; min-height: 100px; }
.btn-contact-submit {
  background: #669999; color: #fff; padding: 13px 32px;
  font-size: 14px; font-weight: 700; border: none; border-radius: 2px;
  font-family: inherit; cursor: pointer; transition: background .2s; width: 100%;
}
.btn-contact-submit:hover { background: #557a7a; }

/* Notices / Press table */
.list-section { padding: 60px 30px 80px; }
.content-list { max-width: 900px; margin: 0 auto; }
.list-item {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid #f0f0f0; align-items: flex-start;
}
.list-item:last-child { border-bottom: none; }
.list-date {
  flex-shrink: 0; width: 70px; text-align: center;
  background: #f0f5f5; border-radius: 3px; padding: 10px 8px;
}
.list-date .day   { font-size: 26px; font-weight: 700; color: #669999; line-height: 1; }
.list-date .month { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #999; letter-spacing: .5px; margin-top: 4px; }
.list-item-content h4 { font-size: 16px; font-weight: 700; color: #484848; margin-bottom: 6px; }
.list-item-content h4 a { color: #484848; transition: color .2s; }
.list-item-content h4 a:hover { color: #669999; }
.list-item-content p  { font-size: 13px; color: #777; line-height: 1.6; }
.list-item-tag {
  display: inline-block; padding: 2px 10px; background: #e8f0f0;
  color: #669999; font-size: 11px; font-weight: 700; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px; margin-top: 8px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gallery-item { border-radius: 3px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* Regulation download list */
.doc-download-list { max-width: 900px; margin: 0 auto; }
.doc-download-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px; background: #fff; border: 1px solid #e8e8e8;
  border-radius: 3px; margin-bottom: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.doc-download-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #669999; }
.doc-download-icon {
  width: 44px; height: 44px; background: #f0f5f5; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: #669999; font-size: 20px; flex-shrink: 0;
}
.doc-download-item h4 { font-size: 14px; font-weight: 700; color: #484848; margin-bottom: 3px; flex: 1; }
.doc-download-item p  { font-size: 12px; color: #999; }
.btn-dl {
  background: #669999; color: #fff; padding: 8px 18px;
  font-size: 12px; font-weight: 700; border-radius: 2px;
  border: none; cursor: pointer; font-family: inherit;
  white-space: nowrap; transition: background .2s;
  display: flex; align-items: center; gap: 6px;
}
.btn-dl:hover { background: #557a7a; }

/* Intro block with image */
.intro-block {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) { .intro-block { grid-template-columns: 1fr; } .intro-block-img { display: none; } }
.intro-block-img { border-radius: 3px; overflow: hidden; }
.intro-block-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* Vision mission split */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 700px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
  padding: 40px; background: #fff; border-radius: 3px;
  border: 1px solid #eee; box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.vm-card .vm-icon {
  width: 60px; height: 60px; background: #f0f5f5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #669999; font-size: 24px;
}
.vm-card h2 {
  font-size: 22px; font-weight: 700; color: #484848;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0;
}
.vm-card p { font-size: 15px; color: #555; line-height: 1.8; }

/* Section separators */
.section-sep { border: none; border-top: 1px solid #f0f0f0; margin: 0; }
