/* ARKA Paints - Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Theme Variables & Reset */
:root {
  --primary: #4A7164;
  --primary-dark: #1f3f36;
  --lime-green: #85BD67;
  --accent: #ffe100;
  --gold: #D6A84F;
  --badge-bg: #dff0c8;
  --badge-text: #4b8b2b;
  --dark-text: #071f1a;
  --muted-text: #556B64;
  --bg-light: #ffffff;
  --border-color: #e2ede8;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--dark-text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Ticker & Header */
.top-ticker-bar {
  background: #142822;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-content {
  display: flex;
  gap: 35px;
  padding-right: 35px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-bottom: 1px solid #f0f4f2;
}

.main-header .container {
  max-width: 1440px;
  width: 100%;
  padding: 0 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  position: relative;
  gap: 12px;
}

.brand-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo-img:hover img {
  transform: scale(1.02);
}

.main-header nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  justify-content: center;
  flex: 1;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  gap: clamp(2px, 0.65vw, 8px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu > li.has-mega-nav,
.has-mega-nav {
  position: static !important;
}

.nav-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a2e27;
  padding: 8px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap !important;
  line-height: 1;
  text-decoration: none;
}

.nav-link:hover {
  color: #4A7164;
  background: rgba(74, 113, 100, 0.08);
}

.nav-link.active {
  background: #dff0c8;
  color: #356b1e;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 20px;
}

.nav-caret {
  font-size: 8.5px;
  opacity: 0.65;
  transition: transform 0.25s ease;
  margin-left: 2px;
  line-height: 1;
}

.has-about-menu:hover .nav-caret,
.has-mega-nav:hover .nav-caret,
.has-services-flyout:hover .nav-caret,
.has-colour-nav:hover .nav-caret {
  transform: rotate(180deg);
  color: #4A7164;
  opacity: 1;
}

.header-enquiry-btn {
  background: #ffe100;
  color: #142822;
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(255, 225, 0, 0.4);
  white-space: nowrap !important;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.header-enquiry-btn:hover {
  background: #ffd000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 225, 0, 0.55);
  color: #0c1a16;
}

@media (max-width: 1260px) {
  .nav-link {
    font-size: 11px;
    padding: 7px 6px;
    gap: 3px;
  }
  .nav-menu {
    gap: 1px;
  }
  .header-enquiry-btn {
    padding: 9px 16px;
    font-size: 11.5px;
  }
  .brand-logo-img img {
    height: 46px;
  }
}

/* --- 3. Navigation Dropdowns --- */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* A. About Us Mega Dropdown */
.has-about-menu {
  position: relative;
}

.about-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 580px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
  display: none;
  overflow: hidden;
  z-index: 1005;
  margin-top: 0;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.about-mega-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: transparent;
}

.has-about-menu:hover > .about-mega-dropdown,
.has-about-menu.open > .about-mega-dropdown {
  display: block !important;
  animation: dropdownFade 0.2s ease;
}

.about-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 15px;
  padding: 18px;
  background: #fafdfb;
}

.about-dropdown-main-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px;
  background: linear-gradient(135deg, #112620, #1d4337);
  border-radius: 16px;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(17,38,32,0.15);
}

.about-dropdown-main-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17,38,32,0.25);
}

.about-main-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(133, 189, 103, 0.2);
  color: #85BD67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.about-main-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #ffffff;
  margin: 0 0 6px;
  font-weight: 700;
}

.about-main-info p {
  font-size: 12.5px;
  color: #d1d5db;
  line-height: 1.45;
  margin: 0 0 14px;
}

.about-explore-btn {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #85BD67;
  transition: transform 0.2s ease;
}

.about-dropdown-main-card:hover .about-explore-btn {
  transform: translateX(4px);
  color: #9ee081;
}

.about-dropdown-leaders-col {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-leaders-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #4b8b2b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-bottom: 1.5px solid #e2eee8;
  padding-bottom: 6px;
}

.about-leaders-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-leader-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eef4f1;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}

.about-leader-item:hover {
  border-color: #85BD67;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(133,189,103,0.18);
  background: #f4faf6;
}

.about-leader-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #85BD67;
  color: #0c1815;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-leader-text {
  display: flex;
  flex-direction: column;
}

.about-leader-name {
  font-size: 14px;
  font-weight: 700;
  color: #112620;
  line-height: 1.2;
}

.about-leader-role {
  font-size: 10px;
  font-weight: 800;
  color: #4b8b2b;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about-leader-action {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-leader-item:hover .about-leader-action {
  color: #1b4332;
  font-weight: 600;
}

/* B. Products Mega Menu */
.has-mega-nav,
.nav-menu > li.has-mega-nav {
  position: static !important;
}

.mega-menu-exact {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  display: none;
  overflow: hidden;
  z-index: 1005;
  margin-top: 0;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  min-height: 460px;
}

.has-mega-nav:hover > .mega-menu-exact,
.has-mega-nav.open > .mega-menu-exact {
  display: flex !important;
  animation: dropdownFade 0.2s ease;
}

.mega-sidebar { width: 250px; background: #82c341; padding: 20px 0; flex-shrink: 0; display: flex; flex-direction: column; }
.mega-tab-btn {
  padding: 16px 26px; color: #ffffff; font-weight: 600; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; transition: all 0.2s ease;
  user-select: none;
}
.mega-tab-btn:hover, .mega-tab-btn.active { background: #ffffff; color: #4b8b2b; font-weight: 700; padding-left: 30px; }
.mega-tab-btn .arrow { font-size: 16px; transition: transform 0.2s ease; }
.mega-tab-btn:hover .arrow, .mega-tab-btn.active .arrow { transform: translateX(3px); color: #82c341; }

.mega-content-area { flex: 1; padding: 30px 40px; background: #fafdfb; min-height: 460px; border-radius: 0 22px 22px 0; overflow-y: auto; }
.mega-tab-pane { display: none; animation: dropdownFade 0.25s ease; }
.mega-tab-pane.active { display: block; }

.mega-groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 30px; }
.mega-group-col h5 { font-family: 'Playfair Display', serif; font-size: 15px; color: #2b5438; margin-bottom: 14px; font-weight: 700; border-bottom: 2px solid #e2eee8; padding-bottom: 6px; }
.mega-prod-card { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid #eef4f1; border-radius: 14px; background: #ffffff; margin-bottom: 12px; transition: all 0.25s ease; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.mega-prod-card:hover { border-color: #82c341; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(130,195,65,0.18); }
.mega-prod-card img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; transition: transform 0.2s ease; }
.mega-prod-card:hover img { transform: scale(1.08); }
.mega-prod-info { display: flex; flex-direction: column; }
.mega-prod-info .prod-name { font-size: 13.5px; font-weight: 700; color: #1f3f36; line-height: 1.3; }
.mega-prod-info .prod-sub { font-size: 11.5px; color: #777777; margin-top: 2px; }

.view-all-link { display: inline-block; font-size: 13px; font-weight: 700; color: #4b8b2b; margin-top: 8px; transition: all 0.2s ease; }
.view-all-link:hover { color: #82c341; text-decoration: underline; transform: translateX(3px); }

/* C. Services Flyout Menu */
.has-services-flyout {
  position: relative;
}

.services-flyout-main {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  display: none;
  list-style: none;
  padding: 10px 0;
  z-index: 1005;
  margin-top: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

.services-flyout-main::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: transparent;
}

.has-services-flyout:hover > .services-flyout-main,
.has-services-flyout.open > .services-flyout-main {
  display: block !important;
  animation: dropdownFade 0.2s ease;
}

.flyout-parent {
  position: relative;
}

.flyout-parent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 700;
  color: #23473b;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.flyout-parent-link:hover {
  background: #f1f8f4;
  color: #85BD67;
  padding-left: 26px;
}

.flyout-arrow {
  font-size: 14px;
  color: #85BD67;
}

.flyout-sub {
  position: absolute;
  top: 0;
  left: 100%;
  width: 330px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  display: none;
  list-style: none;
  padding: 10px 0;
  border: 1px solid rgba(0,0,0,0.06);
  margin-left: 0;
  max-height: 480px;
  overflow-y: auto;
  z-index: 1010;
}

.flyout-sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  width: 12px;
  height: 100%;
  background: transparent;
}

.flyout-parent:hover > .flyout-sub {
  display: block !important;
  animation: dropdownFade 0.2s ease;
}

.flyout-sub li a {
  display: block;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  transition: all 0.2s ease;
  text-transform: capitalize;
}

.flyout-sub li a:hover {
  background: #f1f8f4;
  color: #4b8b2b;
  padding-left: 24px;
}

/* D. Colour Studio Dropdown */
.has-colour-nav {
  position: relative;
}

.colour-dropdown-exact {
  position: absolute;
  top: 100%;
  left: -60px;
  width: 480px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  display: none;
  overflow: hidden;
  z-index: 1005;
  margin-top: 0;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.colour-dropdown-exact::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: transparent;
}

.has-colour-nav:hover > .colour-dropdown-exact,
.has-colour-nav.open > .colour-dropdown-exact {
  display: block !important;
  animation: dropdownFade 0.2s ease;
}

.arka-colour-menu-box {
  padding: 16px;
  background: #fafdfb;
}

.arka-colour-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.arka-colour-menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eef4f1;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}

.arka-colour-menu-btn:hover {
  border-color: #85BD67;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(133,189,103,0.18);
  background: #f4faf6;
}

.arka-colour-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(133, 189, 103, 0.15);
  color: #3b7322;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.arka-colour-menu-btn span {
  font-size: 13px;
  font-weight: 700;
  color: #112620;
  line-height: 1.2;
}
/* --- 4. Hero Slider & Categories --- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 680px;
  max-height: 85vh;
  overflow: hidden;
  margin-top: -15px;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.35) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(50px, 9vh, 90px);
}

.hero-slide-contents {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  animation: heroContentFade 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-slide-contents.text-center {
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  max-width: 850px;
}

@keyframes heroContentFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand-gold {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  color: #FFE100;
  text-shadow: 0 3px 18px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.9);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-align: center;
}

.hero-brand-white {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.9);
  margin-bottom: 15px;
  text-align: center;
}

.hero-slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0,0,0,0.9);
  text-align: center;
}

.hero-slide-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #f3f4f6;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  text-align: center;
}

.hero-btn-pilled,
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 30px;
  background: #FFE100;
  color: #122822;
  font-weight: 800;
  border-radius: 40px;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 1px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-pilled:hover,
.hero-btn:hover {
  background: #ffffff;
  color: #122822;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 225, 0, 0.45);
}

.hero-nav-arrow,
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(12, 28, 23, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.25);
  user-select: none;
}

.hero-nav-arrow:hover,
.hero-arrow:hover {
  background: #FFE100;
  color: #122822;
  border-color: #FFE100;
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-arrow.prev, .hero-prev { left: 24px; }
.hero-nav-arrow.next, .hero-next { right: 24px; }

.hero-pagination,
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  width: 32px;
  border-radius: 10px;
  background: #FFE100;
}

/* Category Strip */
.arka-category-strip-wrap,
.arka-category-section-wrap {
  width: 100%;
  background: #000000;
  padding: 16px 20px 24px;
}

.arka-category-strip {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 1px solid #eef4f1;
}

.arka-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  text-decoration: none;
  border-right: 1px solid #f0f4f2;
  transition: all 0.3s ease;
  position: relative;
  background: #ffffff;
}

.arka-cat-item:last-child {
  border-right: none;
}

.arka-cat-icon {
  font-size: 26px;
  color: #1a2e27;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.arka-cat-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e27;
  text-align: center;
  transition: all 0.3s ease;
}

.arka-cat-item:hover {
  background: #f7faf8;
}

.arka-cat-item:hover .arka-cat-icon {
  color: #4A7164;
  transform: scale(1.12);
}

.arka-cat-item:hover .arka-cat-title {
  color: #4A7164;
}

/* Home Page Sections */
/* Bring Life / About Video Grid */
.bring-life-grid-container {
  max-width: 1440px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}

.bring-life-left-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  min-width: 0;
  overflow: hidden;
  background: #000000;
}

.bring-life-left-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.bring-life-right-box {
  min-width: 0;
  background: linear-gradient(135deg, #050505 0%, #111111 50%, #000000 100%);
  padding: 40px 36px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bring-life-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.bring-life-title span {
  color: #85BD67;
}

.bring-life-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 18px;
}

.bring-life-view-btn {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 11px 28px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.bring-life-view-btn:hover {
  background: #85BD67;
  color: #0c1815;
  border-color: #85BD67;
  transform: translateY(-2px);
}

/* Est. 2017 Welcome & Stats */
.agp-home {
  padding: 35px 20px 38px;
  background-color: #fdfaf5;
  color: #2b2b2b;
  position: relative;
}

.agp-container {
  max-width: 1440px;
  margin: 0 auto;
}

.agp-eyebrow {
  color: #c97a3e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.agp-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
  line-height: 1.15;
  margin-bottom: 16px;
}

.agp-lead {
  font-size: 17px;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 14px;
}

.agp-container p {
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 14px;
}

.agp-strata {
  display: flex;
  height: 8px;
  margin: 22px 0;
  border-radius: 5px;
  overflow: hidden;
}

.agp-strata span:nth-child(1) { flex: 2; background: #82c341; }
.agp-strata span:nth-child(2) { flex: 1.5; background: #bfe38a; }
.agp-strata span:nth-child(3) { flex: 2.5; background: #c97a3e; }
.agp-strata span:nth-child(4) { flex: 1.8; background: #7a5038; }
.agp-strata span:nth-child(5) { flex: 3; background: #1f3f36; }

.agp-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.agp-fact {
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.agp-fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
  margin-bottom: 2px;
}

.agp-fact-label {
  font-size: 15px;
  color: #444444;
  font-weight: 600;
}

.agp-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.agp-card {
  background: #ffffff;
  padding: 24px 22px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  text-align: center;
}

.agp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.agp-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #1f3f36;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 10px;
}

.agp-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 3px;
}

.agp-role {
  font-size: 13px;
  color: #c97a3e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Featured Products Carousel */
.featured-section-wrap {
  padding: 35px 0 40px;
  background: #ffffff;
  overflow: hidden;
}

.featured-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a332b;
  text-align: center;
  margin-bottom: 22px;
}

.featured-carousel-container {
  overflow: hidden;
  padding: 6px 0 14px;
}

.featured-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

.featured-card-item {
  flex: 0 0 calc(25% - 15px);
  background: #ffffff;
  border: 1px solid #eef4f1;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.featured-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(74,113,100,0.12);
  border-color: var(--lime-green);
}

.featured-card-img-wrap {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.featured-card-img-wrap img {
  max-height: 100%;
  object-fit: contain;
}

.featured-prod-name {
  font-size: 16px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 4px;
}

.featured-prod-cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: #82c341;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.featured-read-btn {
  display: inline-block;
  background: #f1f8f4;
  color: #1f3f36;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.featured-card-item:hover .featured-read-btn {
  background: #85BD67;
  color: #0c1815;
}

/* Colour Catalogue */
.arka-catalogue-full {
  padding: 28px 20px 35px;
  background: #fbfdfc;
  width: 100%;
}

.catalogue-box {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
}

.catalogue-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
  text-align: center;
  margin-bottom: 6px;
}

.catalogue-subtitle {
  text-align: center;
  color: #555555;
  font-size: 16px;
  margin-bottom: 22px;
}

.color-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 25px;
}

.color-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 3.5px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.color-btn:hover, .color-btn.active {
  transform: scale(1.22);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
  border-color: #071f1a;
}

.main-wrap {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 32px;
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  border: 1px solid #eef4f1;
  min-height: 520px;
}

.room-image {
  border-radius: 18px;
  overflow: hidden;
  min-height: 480px;
  height: 100%;
  background: #f0f4f2;
}

.room-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.05) saturate(1.04);
}

.color-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selected-colour-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: #1f3f36;
  margin-bottom: 18px;
}

#shades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.shade {
  padding: 16px 20px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
}

.shade:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Design Inspiration */
.design-section {
  padding: 24px 20px 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.design-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.design-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #1f3f36;
  font-weight: 800;
}

.design-header p {
  color: #555555;
  font-size: 16px;
  margin-top: 4px;
}

.view-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: #1f3f36;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
}

.view-btn:hover {
  background: var(--lime-green);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.design-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.design-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.design-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.04) brightness(1.02);
  transition: transform 0.4s ease;
}

.design-card:hover img {
  transform: scale(1.04);
}

.design-content {
  padding: 16px 16px;
}

.design-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 4px;
}

.design-content p {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.5;
}

/* Products We Offer */
.arka-products-showcase {
  padding: 24px 20px 30px;
  background: #ffffff;
}

.arka-products-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.arka-products-head {
  text-align: center;
  margin-bottom: 22px;
}

.arka-products-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
}

.arka-products-head h2 span {
  color: #85BD67;
}

.arka-products-head p {
  color: #555555;
  font-size: 16px;
  margin-top: 4px;
}

.arka-products-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 24px;
  background: #fafdfb;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #eef4f1;
  align-items: stretch;
}

.arka-product-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arka-product-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1.5px solid #eef4f1;
  border-radius: 14px;
  text-align: left;
  transition: all 0.25s ease;
  width: 100%;
}

.arka-product-tab:hover, .arka-product-tab.active {
  background: #1f3f36;
  border-color: #1f3f36;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(31,63,54,0.15);
}

.arka-tab-icon {
  font-size: 20px;
  color: #85BD67;
  flex-shrink: 0;
}

.arka-product-tab.active .arka-tab-icon {
  color: #ffe100;
}

.arka-tab-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 2px;
}

.arka-tab-text span {
  font-size: 12.5px;
  color: #555555;
  display: block;
}

.arka-product-tab.active .arka-tab-text h4 {
  color: #ffffff;
}

.arka-product-tab.active .arka-tab-text span {
  color: #d1d5db;
}

.arka-product-preview {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  min-height: 480px;
  background: #111111;
  display: flex;
  align-items: flex-end;
}

.arka-product-preview img#arkaProductImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: opacity 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.05) saturate(1.05);
}

.arka-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
  pointer-events: none;
}

.arka-preview-content {
  position: relative;
  z-index: 3;
  padding: 18px 22px;
  color: #ffffff;
  max-width: 480px;
  margin: 18px;
  background: rgba(12, 24, 20, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}

.arka-preview-badge {
  display: inline-block;
  background: rgba(133,189,103,0.92);
  color: #0c1815;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.arka-preview-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.arka-preview-content p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.arka-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe100;
  color: #1a2e27;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.arka-preview-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Colour Inspiration Dual Showcase */
.colour-inspiration-wrap {
  padding: 24px 20px 30px;
  background: #fbfdfc;
  max-width: 1440px;
  margin: 0 auto;
}

.colour-inspiration-head {
  text-align: center;
  margin-bottom: 20px;
}

.colour-inspiration-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
  margin-bottom: 4px;
}

.colour-inspiration-head p {
  color: #555555;
  font-size: 16px;
}

.colour-inspiration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.colour-inspiration-img-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  height: 380px;
}

.colour-inspiration-img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.colour-inspiration-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.05) saturate(1.03);
  transition: transform 0.4s ease;
}

.colour-inspiration-img-box:hover img {
  transform: scale(1.03);
}

/* FAQ Accordion */
.arka-faq-section-full {
  padding: 24px 20px 35px;
  background: #ffffff;
}

.arka-faq-section {
  max-width: 1200px;
  margin: 0 auto;
}

.arka-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
  text-align: center;
  margin-bottom: 22px;
}

.faq-item {
  border: 1px solid #e2ede8;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: #85BD67;
  box-shadow: 0 6px 20px rgba(133,189,103,0.15);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 18px;
  color: #1f3f36;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  color: #85BD67;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fbfdfc;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 16px 24px 20px;
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* --- 6. Inner Pages --- */
/* Products Catalog Page */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.featured-prod-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #eef4f1;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(74,113,100,0.15);
  border-color: #85BD67;
}

.prod-bucket-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.prod-bucket-img-wrap img {
  max-height: 100%;
  object-fit: contain;
}

.prod-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 6px;
}

.prod-cat-tag {
  font-size: 11px;
  font-weight: 700;
  color: #85BD67;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.read-more-green-btn,
.arka-submit-btn {
  display: inline-block;
  background: #1f3f36;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  border: none;
}

.read-more-green-btn:hover,
.arka-submit-btn:hover {
  background: #85BD67;
  color: #0c1815;
  transform: translateY(-2px);
}

.calc-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid #eef4f1;
}

/* About Us Page */
.arka-about-hero {
  padding: 70px 20px 60px;
  background: #ffffff;
}

.arka-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 45px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.arka-about-hero-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  background: #f7faf8;
  max-height: 480px;
}

.arka-about-hero-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.arka-about-hero-text h3 {
  font-size: 13px;
  font-weight: 800;
  color: #85BD67;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.arka-about-hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.3;
  color: #112620;
  font-weight: 800;
  margin-bottom: 20px;
}

.arka-about-hero-text p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 16px;
}

.arka-latest-projects {
  padding: 75px 20px;
  background: #ffffff;
  text-align: center;
}

.arka-latest-projects .sub-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #85BD67;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.arka-latest-projects h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
  margin-bottom: 40px;
}

.project-carousel-wrap {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.project-carousel-track {
  display: flex;
  gap: 20px;
  animation: projectMarquee 28s linear infinite;
  width: max-content;
}

.project-carousel-track:hover {
  animation-play-state: paused;
}

.project-slide {
  width: 320px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes projectMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Why Choose Us - Exact Reference */
.arka-why {
  position: relative;
  overflow: hidden;
  padding: 80px 25px;
  background: linear-gradient(135deg, #fff8f3 0%, #fff3ec 30%, #fef6f1 60%, #ffffff 100%);
}

.arka-why::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #FEC6A8;
  border-radius: 50%;
  filter: blur(120px);
  top: -150px;
  left: -120px;
  opacity: 0.3;
  pointer-events: none;
}

.arka-why::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #85BD67;
  border-radius: 50%;
  filter: blur(120px);
  bottom: -120px;
  right: -120px;
  opacity: 0.25;
  pointer-events: none;
}

.arka-why .arka-container {
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.arka-why .arka-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.arka-why .arka-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #85BD67;
  color: #ffffff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arka-why .arka-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2937;
  margin: 20px 0;
  text-align: left;
}

.arka-why .arka-desc {
  color: #666666;
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.arka-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.arka-feature {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.arka-feature:hover {
  background: #FEC6A8;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(254, 198, 168, 0.4);
}

.arka-feature:hover h4,
.arka-feature:hover p {
  color: #ffffff;
}

.arka-feature .arka-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #85BD67, #5FA945);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.arka-feature:hover .arka-icon {
  background: #ffffff;
  color: #FEC6A8;
  transform: rotateY(360deg);
}

.arka-feature h4 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #1f2937;
  font-weight: 700;
  transition: color 0.3s ease;
}

.arka-feature p {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s ease;
}

/* Right Side Paint Wheel */
.paint-area {
  position: relative;
  height: 420px;
  max-width: 450px;
  margin: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.color-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}

.blob1 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #ff4d6d, #ff8b5e);
  top: 20px;
  left: 10px;
  animation: float1 6s ease-in-out infinite;
}

.blob2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #85BD67, #5FA945);
  bottom: 20px;
  right: 10px;
  animation: float2 7s ease-in-out infinite;
}

.blob3 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #00AEEF, #6C63FF);
  top: 120px;
  right: 70px;
  animation: float3 8s ease-in-out infinite;
}

.paint-wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(#ff4d6d, #ff8b5e, #ffd166, #85BD67, #00AEEF, #6C63FF, #ff4d6d);
  animation: spin 15s linear infinite;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.paint-wheel::before {
  content: "";
  position: absolute;
  inset: 35px;
  background: #ffffff;
  border-radius: 50%;
}

.paint-wheel::after {
  content: "🎨";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

@keyframes float3 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(15px); }
}

/* History Timeline */
.arka-history-v2 {
  padding: 85px 20px;
  background: #ffffff;
}

.arka-history-container {
  max-width: 1280px;
  margin: 0 auto;
}

.arka-history-top {
  text-align: center;
  margin-bottom: 50px;
}

.arka-history-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #85BD67;
  text-transform: uppercase;
}

.arka-history-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #1f3f36;
  margin: 8px 0;
}

.arka-history-top p {
  color: #666666;
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.arka-history-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 45px;
  align-items: start;
}

.arka-history-intro-content {
  background: #fafdfb;
  border: 1px solid #eef4f1;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.arka-history-intro-label {
  font-size: 11px;
  font-weight: 800;
  color: #85BD67;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arka-history-intro-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #1f3f36;
  font-weight: 700;
  margin: 6px 0 14px;
}

.arka-history-intro-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 12px;
}

.arka-history-highlight {
  background: #f1f8f4;
  border-left: 4px solid #85BD67;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  color: #1f3f36;
  margin-top: 18px;
}

.arka-timeline-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arka-timeline-item {
  border: 1px solid #eef4f1;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.arka-timeline-trigger {
  width: 100%;
  padding: 18px 22px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: none;
  cursor: pointer;
}

.arka-timeline-year {
  display: inline-block;
  background: #85BD67;
  color: #0c1815;
  font-weight: 800;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-right: 10px;
}

.arka-timeline-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: #1f3f36;
}

.arka-timeline-detail {
  padding: 0 22px 18px;
  background: #fafdfb;
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
}

/* --- 7. Services Page & Service Detail --- */
.service-hero-wrap {
  width: 100%;
  overflow: hidden;
  background: #000000;
}

.service-hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
  margin: 0 auto;
}

.arka-services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef7f1);
}

.arka-container {
  max-width: 1280px;
  margin: 0 auto;
}

.arka-heading {
  text-align: center;
  margin-bottom: 45px;
}

.arka-heading span {
  display: inline-block;
  padding: 6px 18px;
  background: #85BD67;
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arka-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin: 12px 0 8px;
  color: #111;
  font-weight: 800;
}

.arka-heading p {
  max-width: 780px;
  margin: auto;
  color: #666;
}

.services-category-group {
  margin-bottom: 60px;
}

.services-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #1f3f36;
  border-bottom: 3px solid #85BD67;
  padding-bottom: 8px;
  margin-bottom: 25px;
  display: inline-block;
}

.services-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

.arka-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eef4f1;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.arka-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: #85BD67;
}

.arka-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(133,189,103,0.15);
  color: #85BD67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.arka-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 10px;
}

.arka-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

/* Service Detail Sections */
.arka-service-overview {
  padding: 70px 20px 40px;
  text-align: center;
  background: #ffffff;
}

.arka-service-overview-inner {
  max-width: 880px;
  margin: 0 auto;
}

.arka-service-label {
  display: inline-block;
  background: rgba(133,189,103,0.18);
  color: #3b7322;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.arka-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #85BD67;
  margin-bottom: 15px;
}

.arka-service-icon span {
  width: 50px;
  height: 1.5px;
  background: #85BD67;
}

.arka-service-overview h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #1f3f36;
  font-weight: 800;
  margin-bottom: 15px;
}

.arka-service-overview p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}

.arka-why-service {
  padding: 70px 20px 80px;
  background: #fbfdfc;
}

.arka-why-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #1f3f36;
  text-align: center;
  font-weight: 800;
  margin-bottom: 45px;
}

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

.arka-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 28px;
  border: 1px solid #eef4f1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.arka-why-card:hover {
  transform: translateY(-6px);
  border-color: #85BD67;
  box-shadow: 0 18px 40px rgba(133,189,103,0.15);
}

.arka-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f1f8f4;
  color: #85BD67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.arka-why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 8px;
}

.arka-why-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* Service Offerings Cards Grid */
.arka-service-cards-section {
  padding: 75px 20px 85px;
  background: #ffffff;
}

.arka-service-cards-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: #1f3f36;
  text-align: center;
  margin-bottom: 45px;
}

.arka-service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.arka-service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #eef4f1;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.arka-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(74,113,100,0.16);
  border-color: #85BD67;
}

.arka-service-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f7faf8;
}

.arka-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.arka-service-card:hover .arka-service-img img {
  transform: scale(1.08);
}

.arka-service-img .arka-service-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #85BD67;
  color: #0c1815;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  margin-bottom: 0;
}

.arka-service-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.arka-service-content h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 8px;
  line-height: 1.3;
}

.arka-service-content p {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.6;
}

/* Service 5-Step Process Section */
.arka-process-section {
  padding: 80px 20px 90px;
  background: #fafdfb;
  border-top: 1px solid #eef4f1;
}

.arka-process-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: #1f3f36;
  text-align: center;
  margin-bottom: 50px;
}

.arka-process-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.arka-process-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  border: 1px solid #eef4f1;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arka-process-item:hover {
  transform: translateY(-6px);
  border-color: #85BD67;
  box-shadow: 0 16px 35px rgba(133,189,103,0.18);
}

.arka-process-icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.arka-process-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1f3f36;
  color: #85BD67;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.arka-process-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #f1f8f4;
  color: #85BD67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.arka-process-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 8px;
}

.arka-process-item p {
  font-size: 12.5px;
  color: #666666;
  line-height: 1.5;
}

/* Service CTA Banner */
.service-cta-banner {
  background: linear-gradient(135deg, #1f3f36, #4A7164);
  padding: 55px 20px;
  text-align: center;
  color: #ffffff;
}

.service-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}

.service-cta-inner p {
  font-size: 15.5px;
  opacity: 0.92;
  margin-bottom: 26px;
  line-height: 1.6;
}

.service-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta-btn {
  background: #ffe100;
  color: #1a2e27;
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.service-cta-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.service-cta-call {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.service-cta-call:hover {
  background: #ffffff;
  color: #1f3f36;
}

/* --- 8. Blog Page --- */
.blog-page-wrap {
  padding: 65px 20px 80px;
  background: #fbfdfc;
}

.blog-header-container {
  margin-bottom: 35px;
  text-align: center;
}

.blog-section-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #4A7164;
  text-transform: uppercase;
  background: #eef7f2;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #18372e;
  font-weight: 700;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  border: 1px solid #eef4f1;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(74,113,100,0.16);
  border-color: #b9d2c9;
}

.blog-thumb-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb-wrap img {
  transform: scale(1.08);
}

.blog-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #85bd67;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.blog-date-badge .date-day { font-size: 18px; }
.blog-date-badge .date-month { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category-tag {
  display: inline-block;
  background: #85bd67;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a332b;
  margin-bottom: 15px;
  transition: color 0.2s ease;
}

.blog-title a:hover { color: #4A7164; }

.blog-meta {
  font-size: 13px;
  color: #777777;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: #4b8b2b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-read-more:hover {
  color: #1f3f36;
  transform: translateX(4px);
}

/* --- 9. Contact Us Page --- */
.contact-hero-banner {
  position: relative;
  padding: 75px 20px 85px;
  text-align: center;
  background: linear-gradient(135deg, #0b332e 0%, #118d8b 35%, #3c6e5f 70%, #20463c 100%);
  overflow: hidden;
  color: #ffffff;
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.15);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffe100;
  box-shadow: 0 0 10px #ffe100;
}

.contact-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.contact-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #f1f8f5;
  margin-bottom: 30px;
}

.color-swatch-ribbon {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.color-swatch-pill {
  width: 32px;
  height: 10px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.color-swatch-pill:hover {
  transform: scale(1.3);
}

.contact-cards-section {
  max-width: 1280px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid #eef4f1;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-card-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--card-color, #118D8B);
}

.contact-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px var(--card-shadow, rgba(0,0,0,0.12));
}

.contact-card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #f7faf8;
  color: var(--card-color, #118D8B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-card-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 10px;
}

.contact-card-box p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666666;
}

.visit-office-section {
  max-width: 1280px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.visit-office-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: #fafdfb;
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  border: 1px solid #eef4f1;
}

.visit-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  color: #112620;
  margin-bottom: 12px;
}

.visit-subtitle {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 25px;
}

.office-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  border: 1px solid #e2ede8;
}

.office-card h3 {
  font-size: 18px;
  color: #118D8B;
  font-weight: 800;
  margin-bottom: 16px;
}

.office-info {
  font-size: 13.5px;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 14px;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #85BD67;
  color: #0c1815;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.25s ease;
}

.visit-btn:hover {
  background: #9ee081;
  transform: translateY(-2px);
}

.office-map {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.contact-bottom-wrap {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.contact-faq-side h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: #1f3f36;
  margin-bottom: 20px;
}

.contact-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-faq-item {
  border: 1px solid #e2ede8;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border-left: 5px solid var(--faq-color, #118D8B);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.c-faq-title {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: #1f3f36;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  user-select: none;
}

.c-faq-icon {
  font-size: 18px;
  color: var(--faq-color, #118D8B);
  transition: transform 0.2s ease;
}

.c-faq-item.open .c-faq-icon {
  transform: rotate(180deg);
}

.c-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafdfb;
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
}

.c-faq-item.open .c-faq-body {
  max-height: 250px;
  padding: 0 20px 18px;
}

.contact-form-side {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
  border: 1px solid #eef4f1;
}

.contact-form-side span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #85BD67;
  text-transform: uppercase;
}

.contact-form-side h4 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #1f3f36;
  font-weight: 800;
  margin: 6px 0 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d5e3dc;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #fbfdfc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #118D8B;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(17,141,139,0.15);
}

.btn-ask-question {
  background: linear-gradient(135deg, #118D8B 0%, #85BD67 100%);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 22px rgba(17,141,139,0.3);
}

.btn-ask-question:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17,141,139,0.45);
}

.contact-map-full-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* --- 10. R&D Page --- */
.arka-rd-v2 {
  position: relative;
  width: 100%;
  padding: 85px 20px;
  background: linear-gradient(135deg, #f6faf7 0%, #ffffff 48%, #eef6f1 100%);
  overflow: hidden;
}

.arka-rd-v2-container {
  max-width: 1280px;
  margin: 0 auto;
}

.arka-rd-v2-main-heading {
  text-align: center;
  margin-bottom: 55px;
}

.arka-rd-v2-main-heading span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #85BD67;
  text-transform: uppercase;
}

.arka-rd-v2-main-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #1f3f36;
  margin: 10px 0 12px;
}

.arka-rd-v2-main-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #556B64;
  font-size: 15.5px;
}

.arka-rd-v2-section {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.arka-rd-v2-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arka-rd-v2-number {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #1f3f36;
  color: #85BD67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.arka-rd-v2-line {
  width: 2px;
  height: 100%;
  min-height: 80px;
  background: #d1e5db;
  margin-top: 15px;
}

.arka-rd-v2-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  border: 1px solid #eef4f1;
}

.arka-rd-v2-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.arka-rd-v2-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #85BD67;
  text-transform: uppercase;
}

.arka-rd-v2-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #1f3f36;
  font-weight: 700;
  margin-top: 4px;
}

.arka-rd-v2-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #f1f8f4;
  color: #85BD67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.arka-rd-v2-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.arka-rd-v2-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #444444;
}

.arka-rd-v2-list li::before {
  content: "•";
  color: #85BD67;
  font-size: 22px;
  position: absolute;
  left: 6px;
  top: -2px;
}

.arka-rd-v2-highlight {
  background: #f1f8f4;
  border-left: 4px solid #85BD67;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: #1f3f36;
}

.arka-brochure-v2 {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid #eef4f1;
  margin-top: 50px;
}

.arka-brochure-v2-heading span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #85BD67;
  text-transform: uppercase;
}

.arka-brochure-v2-heading h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #1f3f36;
  font-weight: 800;
  margin: 8px 0;
}

.arka-brochure-v2-heading p {
  color: #666666;
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 15px;
}

.arka-brochure-v2-image img {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.arka-brochure-v2-note {
  font-size: 13px;
  color: #888888;
  margin: 16px 0 24px;
}

.arka-brochure-v2-btn {
  display: inline-block;
  background: #1f3f36;
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.arka-brochure-v2-btn:hover {
  background: #85BD67;
  color: #0c1815;
  transform: translateY(-2px);
}

/* --- 11. Founder Words & Audio TTS Page --- */
.founder-page-hero {
  background: linear-gradient(135deg, #091713 0%, #152d26 50%, #1f4238 100%);
  padding: 70px 20px 50px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.founder-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(133, 189, 103, 0.2);
  border: 1px solid rgba(133, 189, 103, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  color: #85BD67;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.founder-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.25;
}

.founder-page-hero h1 span {
  color: #85BD67;
}

.founder-page-hero p {
  font-size: 16px;
  color: #d1d5db;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.founder-tab-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.founder-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.founder-tab-btn:hover {
  background: rgba(133, 189, 103, 0.25);
  border-color: #85BD67;
  color: #ffffff;
  transform: translateY(-2px);
}

.founder-tab-btn.active {
  background: #85BD67;
  border-color: #85BD67;
  color: #0c1815;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(133, 189, 103, 0.4);
}

.founder-tab-btn .tab-initial {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.founder-tab-btn.active .tab-initial {
  background: #0c1815;
  color: #85BD67;
}

.founder-main-section {
  padding: 60px 20px 80px;
  background: #f8faf9;
}

.founder-card-box {
  max-width: 1050px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.leader-profile-header {
  background: linear-gradient(135deg, #112620, #1b3d33);
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #ffffff;
  flex-wrap: wrap;
}

.leader-avatar-group {
  display: flex;
  align-items: center;
  gap: 22px;
}

.leader-big-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #85BD67;
  color: #0c1815;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.leader-titles h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin: 0 0 5px;
  font-weight: 800;
}

.leader-role-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(133, 189, 103, 0.2);
  color: #85BD67;
  border: 1px solid #85BD67;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tts-player-bar {
  background: #0c1815;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid #85BD67;
  flex-wrap: wrap;
}

.tts-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tts-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 30px;
  background: #85BD67;
  color: #0c1815;
  border: 0;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(133, 189, 103, 0.4);
}

.tts-play-btn:hover {
  background: #9bd67d;
  transform: scale(1.03);
}

.tts-stop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tts-stop-btn:hover {
  background: #e74c3c;
  border-color: #e74c3c;
}

.tts-status-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d1d5db;
  font-size: 13.5px;
}

.tts-wave-visualizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.wave-bar {
  width: 3px;
  height: 6px;
  background: #85BD67;
  border-radius: 3px;
  transition: height 0.2s ease;
}

.tts-speaking .wave-bar:nth-child(1) { animation: waveAnim 0.8s infinite ease-in-out; }
.tts-speaking .wave-bar:nth-child(2) { animation: waveAnim 0.6s infinite ease-in-out 0.15s; }
.tts-speaking .wave-bar:nth-child(3) { animation: waveAnim 0.9s infinite ease-in-out 0.3s; }
.tts-speaking .wave-bar:nth-child(4) { animation: waveAnim 0.7s infinite ease-in-out 0.45s; }
.tts-speaking .wave-bar:nth-child(5) { animation: waveAnim 0.85s infinite ease-in-out 0.2s; }

@keyframes waveAnim {
  0%, 100% { height: 6px; }
  50% { height: 22px; }
}

.tts-speed-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a0aec0;
  font-size: 12.5px;
}

.tts-speed-selector select {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  outline: none;
}

.founder-speech-body {
  padding: 50px 45px;
}

.speech-headline {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #112620;
  margin-bottom: 25px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 15px;
}

.speech-headline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #85BD67;
  border-radius: 4px;
}

.speech-quote-mark {
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
  color: #85BD67;
  opacity: 0.35;
  float: left;
  margin-right: 12px;
  margin-top: -10px;
}

.speech-paragraph {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 22px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.speech-paragraph.reading-highlight {
  background: #ecfdf5;
  border-left: 4px solid #85BD67;
  color: #064e3b;
  font-weight: 500;
}

.leader-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.leader-val-card {
  background: #f9fafb;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.leader-val-card:hover {
  border-color: #85BD67;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.leader-val-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(133, 189, 103, 0.15);
  color: #3b7322;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.leader-val-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #112620;
  margin: 0 0 6px;
}

.leader-val-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.leader-signature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 20px;
}

.leader-signature-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #152d26;
  font-weight: 700;
}

.leader-signature-title {
  color: #6b7280;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.company-official-stamp {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
}

.company-official-stamp img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* --- 12. Global Footer & Enquiry Modal --- */
.arka-final-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.arka-footer-bg-video {
  display: none;
}

.arka-final-footer-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 40px 22px 20px;
  box-sizing: border-box;
}

.arka-footer-lower-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.95fr 1.1fr;
  gap: 22px;
  align-items: start;
}

/* Company Visiting Card */
.arka-footer-company-card {
  position: relative;
  width: 100%;
  padding: 24px 22px;
  border-radius: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.arka-company-card-grid {
  display: block;
}

.arka-company-card-left {
  text-align: center;
  padding-bottom: 10px;
}

.arka-company-card-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

.arka-company-divider {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #24b8b6;
  margin: 0 0 14px;
}

.arka-company-title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 2px;
}

.arka-company-title h2 {
  margin: 0;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.arka-company-tm {
  position: relative;
  top: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid #24b8b6;
  border-radius: 50%;
  color: #24b8b6;
  font-size: 8px;
  font-weight: 700;
}

.arka-company-subtitle {
  margin: 2px 0 14px;
  color: #85bd67;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.arka-footer-about-text {
  color: #d1dcd7;
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 14px;
  text-align: center;
}

.arka-footer-about-link {
  display: inline-block;
  color: #85bd67;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: all 0.25s ease;
}

.arka-footer-about-link:hover {
  color: #a8e888;
  text-decoration: underline;
  transform: translateX(4px);
}

.arka-card-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arka-card-contact-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: flex-start;
}

.arka-card-contact-icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #111111;
  font-size: 10px;
}

.arka-card-contact-content {
  color: #e5ede9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.arka-card-contact-content a {
  display: block;
  color: #e5ede9;
  text-decoration: none;
  transition: .3s ease;
  word-break: break-word;
}

.arka-card-contact-content a:hover {
  color: #85bd67;
}

/* Contact Under Map in Column 4 */
.arka-footer-contact-under-map {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arka-footer-contact-under-map .arka-card-contact-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.arka-footer-contact-under-map .arka-card-contact-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #85BD67;
  color: #0c1815;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.arka-footer-contact-under-map .arka-card-contact-content {
  color: #e5ede9;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.arka-footer-contact-under-map .arka-card-contact-content a {
  color: #e5ede9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.arka-footer-contact-under-map .arka-card-contact-content a:hover {
  color: #85BD67;
}

/* Accordion blocks */
.arka-footer-block {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0d0d0d;
  overflow: hidden;
}

.arka-footer-block-heading {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  cursor: default;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.arka-footer-heading-text {
  position: relative;
  padding-bottom: 8px;
}

.arka-footer-heading-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 5px;
  background: #85bd67;
}

.arka-footer-heading-text::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 0;
  width: 7px;
  height: 3px;
  border-radius: 5px;
  background: #27b8b6;
}

.arka-footer-block-panel {
  padding: 0 18px 16px;
}

.arka-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arka-footer-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.arka-footer-menu li:last-child {
  border-bottom: 0;
}

.arka-footer-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 2px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  transition: .3s ease;
}

.arka-footer-menu a::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #85bd67;
  border-right: 2px solid #85bd67;
  transform: rotate(45deg);
}

.arka-footer-menu a:hover {
  padding-left: 6px;
  color: #85bd67;
}

.arka-footer-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: #000000;
}

.arka-footer-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

.arka-footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 25px auto 0;
}

.arka-footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #ffffff;
  background: #0e0e0e;
  text-decoration: none;
  font-size: 15px;
  transition: .3s ease;
}

.arka-footer-social a:hover {
  color: #132017;
  border-color: #85bd67;
  background: #85bd67;
  transform: translateY(-3px);
}

.arka-footer-copyright-bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #000000;
  padding: 16px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: 25px;
}

.arka-footer-copyright-bar p {
  margin: 0;
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
}

.arka-footer-copyright-bar strong {
  color: #F6D08A;
  font-weight: 700;
}

/* Modal Overlay & Enhanced Popup Form */
.modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(10, 25, 20, 0.82) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 999999 !important;
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  display: flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

.modal-content.arka-popup-modal {
  background: linear-gradient(145deg, #FFFCE6 0%, #FFDE59 45%, #F4C418 100%);
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  padding: 35px 35px 30px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  border: 2px solid #E5B800;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 94vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content.arka-popup-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #152d26;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
}

.modal-header-brand {
  text-align: center;
  margin-bottom: 22px;
}

.modal-logo-wrap {
  width: 140px;
  margin: 0 auto 12px;
}

.modal-brand-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: #112822;
  margin: 0 0 6px;
  line-height: 1.25;
}

.modal-subtitle {
  font-size: 12.5px;
  color: #2b453d;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.form-group.modal-group {
  margin-bottom: 12px;
}

.form-group.modal-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #112822;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group.modal-group label i {
  color: #1f4238;
  font-size: 12px;
}

.form-group.modal-group label span {
  color: #c0392b;
}

.form-group.modal-group input,
.form-group.modal-group textarea {
  width: 100%;
  padding: 11px 15px;
  border-radius: 12px;
  border: 1.5px solid #d8bf62;
  background: #ffffff;
  color: #112822;
  font-size: 13.5px;
  font-family: inherit;
  transition: all 0.25s ease;
  outline: none;
}

.form-group.modal-group input:focus,
.form-group.modal-group textarea:focus {
  border-color: #1f4238;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(31, 66, 56, 0.18);
}

.btn-modal-submit {
  width: 100%;
  background: linear-gradient(135deg, #152d26 0%, #0d1e19 100%);
  border: 1.5px solid #152d26;
  color: #ffe100;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(21, 45, 38, 0.35);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-modal-submit:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.modal-trust-badge {
  text-align: center;
  font-size: 11.5px;
  color: #2b453d;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.modal-trust-badge i {
  color: #152d26;
}

@media (max-width: 600px) {
  .modal-content.arka-popup-modal {
    padding: 25px 20px 20px;
  }
  .modal-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal-title {
    font-size: 20px;
  }
  .modal-logo-wrap {
    width: 110px;
  }
}

/* Floating WhatsApp Widget */
.arka-floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99990;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arka-floating-whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp-icon-box {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  border: 2.5px solid #ffffff;
}

.whatsapp-pulse {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  z-index: 1;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #112620;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(133, 189, 103, 0.3);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #112620;
}

.arka-floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .arka-floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon-box {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
  .whatsapp-pulse {
    width: 52px;
    height: 52px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* Gallery Portfolio */
.gallery-hero-banner {
  position: relative;
  padding: 85px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg, #091713 0%, #152d26 50%, #1f4238 100%);
  color: #ffffff;
  overflow: hidden;
}

.gallery-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(133, 189, 103, 0.2);
  border: 1px solid rgba(133, 189, 103, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  color: #85BD67;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gallery-hero-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

.gallery-hero-banner h1 span {
  color: #85BD67;
}

.gallery-hero-banner p {
  font-size: 16px;
  color: #d1d5db;
  max-width: 780px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.gallery-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.gallery-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-tab-btn:hover {
  background: rgba(133, 189, 103, 0.25);
  border-color: #85BD67;
  transform: translateY(-2px);
}

.gallery-tab-btn.active {
  background: #85BD67;
  border-color: #85BD67;
  color: #0c1815;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(133, 189, 103, 0.35);
}

.gallery-tab-btn .tab-count {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.gallery-tab-btn.active .tab-count {
  background: #0c1815;
  color: #85BD67;
}

.gallery-main-section {
  padding: 70px 20px 90px;
  background: #f8faf9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}

.gallery-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hide {
  display: none !important;
}

.gallery-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef4f1;
  transition: all 0.35s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(74, 113, 100, 0.18);
  border-color: #85BD67;
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #e9f2ed;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.1);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.85) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-category-pill {
  align-self: flex-start;
  background: #85BD67;
  color: #0c1815;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #ffffff;
}

.gallery-card-info h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-zoom-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #1f3f36;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-zoom-btn:hover {
  background: #85BD67;
  color: #0c1815;
  transform: scale(1.15);
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox-container {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #85BD67;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 20;
}

.lightbox-nav:hover {
  background: #85BD67;
  color: #0c1815;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-content {
  background: #111111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.lightbox-img-box {
  width: 100%;
  height: 65vh;
  max-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
}

.lightbox-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  padding: 16px 24px;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.lightbox-cat-badge {
  background: #85BD67;
  color: #0c1815;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-caption h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.lightbox-counter {
  font-size: 13px;
  color: #a0aec0;
  font-weight: 600;
}

/* --- 14. Responsive Breakpoints --- */
@media (max-width: 1200px) {
  .arka-category-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .arka-process-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 1050px) {
  .arka-footer-lower-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .main-header {
    border-radius: 0;
  }
  .bring-life-grid-container {
    grid-template-columns: 1fr;
  }
  .bring-life-left-wrap {
    min-height: 300px;
  }
  .bring-life-right-box {
    padding: 30px 20px;
  }
  .about-mega-dropdown,
  .colour-dropdown-exact {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
  .about-dropdown-inner {
    grid-template-columns: 1fr;
  }
  .arka-about-hero-grid,
  .visit-office-wrap,
  .contact-bottom-wrap,
  .main-wrap,
  .arka-products-grid,
  .arka-card-grid-3,
  .arka-why-service-grid,
  .arka-why-about-grid,
  .arka-history-layout,
  .colour-inspiration-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .arka-grid {
    grid-template-columns: 1fr;
  }
  .arka-process-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-hero-banner h1 {
    font-size: 28px;
  }
  .gallery-tab-btn {
    width: 100%;
    justify-content: center;
  }
  .lightbox-prev, .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .lightbox-prev { left: 5px; }
  .lightbox-next { right: 5px; }
  .lightbox-img-box {
    height: 50vh;
  }
  .arka-footer-lower-grid {
    grid-template-columns: 1fr;
  }
  .arka-category-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .agp-facts {
    grid-template-columns: 1fr;
  }
  .agp-people {
    grid-template-columns: 1fr;
  }
  .blog-grid-container {
    grid-template-columns: 1fr;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .featured-products-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2,
  .form-row-2col,
  .arka-features {
    grid-template-columns: 1fr;
  }
  .leader-values-grid {
    grid-template-columns: 1fr;
  }
  .leader-profile-header {
    padding: 25px 20px;
  }
  .tts-player-bar {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .founder-speech-body {
    padding: 30px 20px;
  }
  .founder-page-hero h1,
  .contact-hero-title,
  .agp-heading,
  .arka-about-hero-text h2,
  .arka-products-head h2,
  .colour-inspiration-head h2,
  .arka-title,
  .arka-service-cards-title,
  .arka-process-title,
  .service-cta-inner h2 {
    font-size: 26px;
  }
  .featured-card-item {
    flex: 0 0 85%;
  }
  .arka-about-hero-img img {
    height: 320px;
  }
  .arka-process-wrap {
    grid-template-columns: 1fr;
  }
  .service-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}