/* ========================================
   ICONIC GROUP — MAIN STYLESHEET
   Colors: White | Green | Orange | Black
   ======================================== */

:root {
  --green: #1a7a3c;
  --green-dark: #0f5229;
  --green-light: #25a853;
  --orange: #e8640c;
  --orange-dark: #c24b09;
  --orange-light: #f47920;
  --black: #111827;
  --dark: #1f2937;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --teal: #0b7a6e;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 14px;
  --font: 'Poppins', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

/* ---- LOADER ---- */
.loader-wrapper {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wrapper.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-rings {
  position: relative; width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 3px solid transparent;
}
.ring-1 {
  width: 120px; height: 120px;
  border-top-color: var(--green);
  border-right-color: var(--green);
  animation: spin 1.2s linear infinite;
}
.ring-2 {
  width: 88px; height: 88px;
  border-bottom-color: var(--orange);
  border-left-color: var(--orange);
  animation: spin 1.8s linear infinite reverse;
}
.ring-3 {
  width: 58px; height: 58px;
  border-top-color: var(--green-light);
  animation: spin 2.4s linear infinite;
}
.loader-monogram {
  display: flex; align-items: center; justify-content: center;
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-monogram img { width: 58px; height: 58px; object-fit: contain; }
.loader-brand { margin-top: 28px; text-align: center; animation: fadeUp 0.8s ease 0.5s both; }
.loader-brand-name {
  color: var(--white); font-size: 22px; font-weight: 800;
  letter-spacing: 6px; text-transform: uppercase;
}
.loader-tagline { color: var(--gray); font-size: 12px; letter-spacing: 3px; margin-top: 6px; }
.loader-progress {
  width: 200px; height: 2px; background: rgba(255,255,255,0.1);
  border-radius: 2px; margin-top: 24px; overflow: hidden;
  animation: fadeUp 0.8s ease 0.6s both;
}
.loader-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 2px;
  animation: progress 2s ease-in-out 0.3s forwards;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes progress { to { width: 100%; } }

/* ---- TYPOGRAPHY ---- */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,122,60,0.1); color: var(--green);
  padding: 6px 16px; border-radius: 50px; font-size: 13px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.2; color: var(--black); margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-subtitle { color: var(--gray); font-size: 17px; max-width: 540px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px; font-size: 14px;
  font-weight: 600; font-family: var(--font);
  transition: var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 16px rgba(26,122,60,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 24px rgba(26,122,60,0.45);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(232,100,12,0.3);
}
.btn-orange:hover {
  background: var(--orange-dark); transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-dark {
  background: transparent; color: var(--black);
  border: 2px solid var(--light-gray);
}
.btn-outline-dark:hover {
  border-color: var(--green); color: var(--green);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ---- CONTAINER ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 100px; overflow: visible;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.navbar-brand { display: flex; align-items: center; height: 100%; }
/* Home page — transparent nav: white logo, no badge */
.nav-logo-white { height: 90px; width: auto; object-fit: contain; display: block; margin-left: 30px; }
/* Home page — scrolled nav: hide white logo, show black logo in badge */
.nav-logo-badge-home { display: none; }
.navbar.scrolled .nav-logo-white { display: none; }
.navbar.scrolled .nav-logo-badge-home { display: flex; }
/* Interior + scrolled-home badge shared styles */
.nav-logo-badge, .nav-logo-badge-home {
  background: #ffffff;
  border-radius: 14px;
  width: 130px; height: 130px;
  align-items: center; justify-content: center;
  padding: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  border: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}
/* Interior badge always visible */
.nav-logo-badge { display: flex; }
.nav-logo-badge img, .nav-logo-badge-home img { max-width: 100%; max-height: 100%; object-fit: contain; }
.footer-logo-img { height: 120px; width: auto; object-fit: contain; display: block; }
.navbar-menu { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; border-radius: 8px; font-size: 14px;
  font-weight: 500; color: rgba(255,255,255,0.85);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-cta { margin-left: 12px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); min-width: 240px;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--dark);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--off-white); color: var(--green); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--white); transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 300px; background: var(--white); z-index: 999;
  padding: 80px 32px 32px;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { right: 0; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-nav-links li a {
  display: block; padding: 14px 16px; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: var(--dark);
  transition: var(--transition);
}
.mobile-nav-links li a:hover { background: var(--off-white); color: var(--green); }
.mobile-contact { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--light-gray); padding-top: 24px; }
.mobile-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray); }
.mobile-contact a i { color: var(--green); width: 16px; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

/* ---- HERO SLIDER ---- */
.hero-section { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.heroSwiper { width: 100%; height: 100%; }
.hero-slide {
  position: relative; height: 100%;
  display: flex; align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1.06); }
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.45);
}
.hero-slide .container {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding-top: 80px;
}
.slide-content { max-width: 620px; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: var(--white); padding: 8px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.coming-soon-tag { background: rgba(232,100,12,0.25); border-color: var(--orange); color: var(--orange); }
.slide-title {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-title span { color: var(--orange); }
.slide-desc {
  font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.7;
  margin-bottom: 32px; max-width: 520px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-visual { flex-shrink: 0; }
.slide-icon-wrapper {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
}
.slide-icon { font-size: 80px; color: rgba(255,255,255,0.7); }
.coming-soon-icon .slide-icon { color: var(--orange); opacity: 0.7; }
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Slide Backgrounds */
.slide-ventures .slide-bg {
  background: linear-gradient(135deg, #0f5229 0%, #1a7a3c 40%, #0a3d1f 100%);
}
.slide-ventures .slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.slide-design-dev .slide-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #c24b09 100%);
}
.slide-design360 .slide-bg {
  background: radial-gradient(ellipse at 70% 50%, #1a7a3c 0%, #111827 60%);
}
.slide-communication .slide-bg {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 50%, #c24b09 100%);
}
.slide-associates .slide-bg {
  background: linear-gradient(160deg, #0f5229 0%, #1a7a3c 30%, #0d3d22 100%);
}
.slide-floriana .slide-bg {
  background: linear-gradient(135deg, #0b4a42 0%, #0b7a6e 50%, #0a2e2a 100%);
}
.slide-floriana-re .slide-bg {
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #111827 100%);
}

/* Hero navigation */
.swiper-button-next, .swiper-button-prev {
  color: var(--white) !important; width: 52px !important; height: 52px !important;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--orange); border-color: var(--orange);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; font-weight: 700 !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--orange) !important; width: 24px !important; border-radius: 4px !important; }
.hero-slide-counter {
  position: absolute; bottom: 32px; right: 80px; z-index: 10;
  color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: 2px;
}
#slideCurrentNum { font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1; }
.counter-divider { margin: 0 6px; opacity: 0.5; }
.counter-total { opacity: 0.6; }
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 2px;
  animation: bounce 2s ease infinite;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-stats-card {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 42px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: var(--gray); margin-top: 6px; font-weight: 500; }
.about-shape-1, .about-shape-2 {
  position: absolute; border-radius: 50%; z-index: -1;
}
.about-shape-1 {
  width: 200px; height: 200px;
  background: rgba(26,122,60,0.08); top: -40px; left: -40px;
}
.about-shape-2 {
  width: 140px; height: 140px;
  background: rgba(232,100,12,0.08); bottom: -30px; right: -30px;
}
.about-content { padding: 20px 0; }
.section-desc { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon { color: var(--green); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.feature-text h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.feature-text p { font-size: 13px; color: var(--gray); }

/* ---- VENTURES CARDS ---- */
.ventures-section { padding: 100px 0; background: var(--white); }
.ventures-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.ventures-grid .venture-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}
.venture-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--light-gray);
  position: relative; overflow: hidden; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.venture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.venture-card:hover .card-bg-icon { opacity: 0.06; transform: rotate(15deg) scale(1.15); }
.card-bg-icon {
  position: absolute; bottom: -20px; right: -20px;
  font-size: 120px; opacity: 0.03; transition: var(--transition);
  color: var(--black);
}
.card-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; color: var(--white);
}
.card-icon-wrap.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.card-icon-wrap.orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.card-icon-wrap.teal { background: linear-gradient(135deg, var(--teal), #065f55); }
.card-icon-wrap.dark { background: linear-gradient(135deg, #374151, var(--black)); }
.card-number {
  position: absolute; top: 28px; right: 28px;
  font-size: 36px; font-weight: 900; color: var(--light-gray);
  line-height: 1;
}
.card-title { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.card-tag { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.5px; margin-bottom: 12px; }
.card-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--green);
  transition: var(--transition);
}
.card-link:hover { gap: 12px; color: var(--orange); }
.coming-soon-badge {
  background: rgba(232,100,12,0.1); color: var(--orange);
  padding: 2px 10px; border-radius: 50px; font-size: 11px;
  font-weight: 700; margin-left: 8px;
}
.coming-soon-card { background: var(--off-white); }

/* ---- LOGO SCROLLER ---- */
.logo-scroller-section { padding: 80px 0; background: var(--off-white); overflow: hidden; }
.logo-track-wrapper {
  overflow: hidden; margin-top: 40px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-track {
  display: flex; gap: 20px; width: max-content;
  animation: scrollLogos 28s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes scrollLogos { to { transform: translateX(-50%); } }
.logo-item { flex-shrink: 0; }
.logo-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 180px; height: 90px; border-radius: 14px;
  padding: 16px; transition: var(--transition); cursor: default;
  border: 2px solid transparent;
}
.logo-box:hover { transform: translateY(-4px) scale(1.04); }
.logo-box.green { background: rgba(26,122,60,0.07); border-color: rgba(26,122,60,0.15); }
.logo-box.green:hover { background: var(--green); border-color: var(--green); }
.logo-box.orange { background: rgba(232,100,12,0.07); border-color: rgba(232,100,12,0.15); }
.logo-box.orange:hover { background: var(--orange); border-color: var(--orange); }
.logo-box.black, .logo-box.dark { background: rgba(17,24,39,0.06); border-color: rgba(17,24,39,0.12); }
.logo-box.black:hover, .logo-box.dark:hover { background: var(--black); border-color: var(--black); }
.logo-box.teal { background: rgba(11,122,110,0.07); border-color: rgba(11,122,110,0.15); }
.logo-box.teal:hover { background: var(--teal); border-color: var(--teal); }
.logo-abbr {
  font-size: 18px; font-weight: 900; letter-spacing: 2px;
  color: var(--black); transition: var(--transition);
}
.logo-box:hover .logo-abbr { color: var(--white); }
.logo-name {
  font-size: 10px; font-weight: 500; color: var(--gray);
  text-align: center; margin-top: 4px; transition: var(--transition);
  line-height: 1.3;
}
.logo-box:hover .logo-name { color: rgba(255,255,255,0.8); }

/* ---- STATS SECTION (PARALLAX) ---- */
.stats-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #1a2a1f 50%, var(--black) 100%);
  background-attachment: fixed;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(26,122,60,0.05) 0, rgba(26,122,60,0.05) 1px, transparent 0, transparent 60px),
              repeating-linear-gradient(90deg, rgba(26,122,60,0.05) 0, rgba(26,122,60,0.05) 1px, transparent 0, transparent 60px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.stat-card {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); backdrop-filter: blur(8px);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(26,122,60,0.15); border-color: rgba(26,122,60,0.3);
  transform: translateY(-4px);
}
.stat-icon { font-size: 28px; color: var(--orange); margin-bottom: 16px; }
.stat-number {
  font-size: 52px; font-weight: 900; line-height: 1; display: inline-block;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-plus { font-size: 28px; font-weight: 900; color: var(--orange); display: inline-block; margin-left: 2px; }
.stat-card .stat-label { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 8px; font-weight: 500; }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.cta-content {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-text h2 span { color: var(--orange); }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(232,100,12,0.4);
}
.cta-section .btn-primary:hover { background: var(--orange-dark); }

/* ---- FOOTER ---- */
.footer { background: var(--black); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; justify-content: flex-start; margin-bottom: 16px; }
.footer-tagline { color: var(--orange); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.footer-about { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.footer-heading { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.5); font-size: 14px;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-links li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-list li i { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li a, .footer-contact-list li span {
  color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6;
  display: block; transition: var(--transition);
}
.footer-contact-list li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 60%, #0f5229 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 0, transparent 40px);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 20px; font-size: 13px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--orange); font-weight: 600; }

/* ---- VENTURES PAGE ---- */
.ventures-page { padding: 80px 0; }
.venture-detail-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: 32px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.venture-detail-card:hover { box-shadow: var(--shadow-lg); }
.venture-card-inner { display: grid; grid-template-columns: 1fr 1.6fr; }
.venture-card-visual {
  padding: 56px 40px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: 16px; position: relative; overflow: hidden;
}
.venture-card-visual.green { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.venture-card-visual.orange { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.venture-card-visual.teal { background: linear-gradient(135deg, #065f55, var(--teal)); }
.venture-card-visual.dark { background: linear-gradient(135deg, #111827, #374151); }
.venture-big-icon { font-size: 72px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.venture-card-visual h3 { font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.3; }
.venture-card-visual .badge {
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 600;
}
/* Venture logo frame & number badge */
.vc-num {
  font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12);
  padding: 4px 14px; border-radius: 30px; margin-bottom: 4px;
}
.vc-logo-frame {
  width: 130px; height: 130px; border-radius: 20px;
  background: rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  padding: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  margin: 4px 0 6px;
}
.vc-logo-frame img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 0;
}
.vc-logo-frame i { font-size: 52px; color: #333; }
.coming-soon-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
}
.coming-soon-overlay span {
  background: var(--orange); color: var(--white);
  padding: 8px 24px; border-radius: 50px; font-size: 14px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
}
.venture-card-body { padding: 48px; }
.venture-card-body h4 { font-size: 13px; font-weight: 600; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.venture-card-body .v-title { font-size: 26px; font-weight: 800; color: var(--black); margin-bottom: 16px; }
.venture-card-body p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.venture-highlights { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.vh-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dark); }
.vh-item i { color: var(--green); width: 16px; }

/* ---- ABOUT PAGE ---- */
.about-page { padding: 80px 0; }
.mission-vision { padding: 80px 0; background: var(--off-white); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.mv-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow); border-top: 4px solid transparent;
  transition: var(--transition);
}
.mv-card:nth-child(1) { border-top-color: var(--green); }
.mv-card:nth-child(2) { border-top-color: var(--orange); }
.mv-card:nth-child(3) { border-top-color: var(--black); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-icon { font-size: 40px; margin-bottom: 20px; }
.mv-card:nth-child(1) .mv-icon { color: var(--green); }
.mv-card:nth-child(2) .mv-icon { color: var(--orange); }
.mv-card:nth-child(3) .mv-icon { color: var(--black); }
.mv-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.mv-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.values-section { padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.value-card {
  padding: 32px 24px; border-radius: var(--radius);
  background: var(--off-white); text-align: center;
  transition: var(--transition); border: 1px solid var(--light-gray);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon {
  width: 60px; height: 60px; border-radius: 14px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.value-card:nth-child(odd) .value-icon { background: rgba(26,122,60,0.1); color: var(--green); }
.value-card:nth-child(even) .value-icon { background: rgba(232,100,12,0.1); color: var(--orange); }
.value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.c-icon.green { background: rgba(26,122,60,0.1); color: var(--green); }
.c-icon.orange { background: rgba(232,100,12,0.1); color: var(--orange); }
.c-icon.dark { background: rgba(17,24,39,0.07); color: var(--black); }
.c-text h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.c-text a, .c-text span { display: block; font-size: 15px; color: var(--gray); transition: var(--transition); }
.c-text a:hover { color: var(--green); }
.contact-form-wrap {
  background: var(--white); border-radius: 20px; padding: 48px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--light-gray);
}
.contact-form-wrap h3 { font-size: 24px; font-weight: 800; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid var(--light-gray); font-family: var(--font);
  font-size: 14px; color: var(--black); background: var(--off-white);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,122,60,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; padding: 16px; border-radius: 10px;
  background: rgba(26,122,60,0.1); color: var(--green);
  border: 1px solid rgba(26,122,60,0.2); font-size: 14px;
  font-weight: 600; margin-top: 16px; align-items: center; gap: 10px;
}
.form-success.show { display: flex; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-logo-white { height: 72px; margin-left: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .venture-card-inner { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .slide-visual { display: none; }
  .ventures-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-slide-counter { right: 24px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 28px; }
}
@media (max-width: 768px) {
  .nav-logo-white { height: 56px; margin-left: 12px; }
}
@media (max-width: 480px) {
  .nav-logo-white { height: 44px; margin-left: 8px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .slide-title { font-size: 32px; }
}

/* ---- INDIVIDUAL VENTURE PAGE ---- */
.venture-hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: center;
}
.venture-hero .container { position: relative; z-index: 2; }
.venture-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.venture-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.55);
}
.venture-hero-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: center;
}
.venture-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; font-size: 13px;
}
.venture-hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.venture-hero-breadcrumb a:hover { color: var(--orange); }
.venture-hero-breadcrumb span { color: rgba(255,255,255,0.25); }
.venture-hero-breadcrumb .current { color: var(--orange); font-weight: 600; }
.venture-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: var(--white); padding: 7px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.2);
}
.venture-hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  color: var(--white); line-height: 1.15; margin-bottom: 14px;
}
.venture-hero h1 span { color: var(--orange); }
.venture-hero-sub { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.7; max-width: 580px; }
.venture-logo-box {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  padding: 28px; display: flex; align-items: center; justify-content: center;
  min-width: 160px; min-height: 160px;
}
.venture-logo-box img { max-width: 130px; max-height: 110px; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5)); }
.venture-logo-box .logo-fallback {
  text-align: center;
}
.venture-logo-box .logo-fallback .abbr {
  font-size: 36px; font-weight: 900; letter-spacing: 2px; color: var(--white); display: block;
}
.venture-logo-box .logo-fallback .name {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
  letter-spacing: 1px; margin-top: 6px; display: block;
}

/* Venture Content Layout */
.venture-content { padding: 80px 0; }
.venture-content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.venture-body h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--black); }
.venture-body h2 span { color: var(--orange); }
.venture-body p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.venture-body h3 { font-size: 20px; font-weight: 700; margin: 32px 0 16px; color: var(--black); }
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: 10px; background: var(--off-white);
  border: 1px solid var(--light-gray); transition: var(--transition);
}
.service-item:hover { background: var(--white); box-shadow: var(--shadow); border-color: transparent; }
.service-item i { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.service-item .s-text h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.service-item .s-text p { font-size: 12px; color: var(--gray); line-height: 1.5; margin: 0; }
.why-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.why-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dark); font-weight: 500; }
.why-item i { color: var(--green); flex-shrink: 0; }
.venture-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sidebar */
.venture-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--light-gray); overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-card-header {
  padding: 16px 20px; font-size: 14px; font-weight: 700;
  color: var(--white); display: flex; align-items: center; gap: 8px;
}
.sidebar-card-header.green { background: var(--green); }
.sidebar-card-header.orange { background: var(--orange); }
.sidebar-card-header.teal { background: var(--teal); }
.sidebar-card-header.dark { background: var(--black); }
.sidebar-card-body { padding: 20px; }
.sidebar-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}
.sidebar-contact-item:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.sidebar-contact-item i { color: var(--green); width: 16px; flex-shrink: 0; margin-top: 3px; }
.sidebar-contact-item a, .sidebar-contact-item span { font-size: 13px; color: var(--gray); display: block; transition: var(--transition); }
.sidebar-contact-item a:hover { color: var(--green); }
.quick-links-list { display: flex; flex-direction: column; gap: 4px; }
.quick-links-list a {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  border-radius: 8px; font-size: 13px; color: var(--dark);
  transition: var(--transition); font-weight: 500;
}
.quick-links-list a:hover { background: var(--off-white); color: var(--green); padding-left: 16px; }
.quick-links-list a i { font-size: 10px; color: var(--gray); }
.venture-tag-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,100,12,0.08); color: var(--orange);
  padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .venture-content-grid { grid-template-columns: 1fr; }
  .venture-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .venture-hero-inner { grid-template-columns: 1fr; }
  .venture-logo-box { display: none; }
  .services-list { grid-template-columns: 1fr; }
  .venture-sidebar { grid-template-columns: 1fr; }
}

/* ---- SLIDE LOGO (right side of hero slides) ---- */
.slide-logo-wrap {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  animation: floatIcon 3.5s ease-in-out infinite;
}
.slide-logo-frame {
  width: 220px; height: 220px; border-radius: 24px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative; overflow: hidden;
}
.slide-logo-frame::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
}
.slide-logo-frame img {
  max-width: 160px; max-height: 160px;
  object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform 0.4s ease;
}
.slide-logo-frame:hover img { transform: scale(1.05); }
.slide-logo-fallback {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.slide-logo-fallback .sfl-abbr {
  font-size: 42px; font-weight: 900; letter-spacing: 3px; color: var(--white);
  line-height: 1; text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-logo-fallback .sfl-line {
  width: 40px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}
.slide-logo-fallback .sfl-name {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  max-width: 140px; text-align: center; line-height: 1.4;
}

/* ---- LOGO SCROLLER with images ---- */
.logo-img-wrap {
  width: 180px; height: 90px; border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 12px 16px; gap: 6px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  transition: var(--transition); cursor: default;
}
.logo-img-wrap:hover { transform: translateY(-4px) scale(1.04); border-color: var(--green); box-shadow: 0 8px 24px rgba(26,122,60,0.15); }
.logo-img-wrap img {
  max-height: 42px; max-width: 130px; object-fit: contain;
  transition: var(--transition); filter: grayscale(20%);
}
.logo-img-wrap:hover img { filter: grayscale(0%); }
.logo-img-wrap .logo-name {
  font-size: 9px; font-weight: 700; color: var(--gray);
  text-align: center; letter-spacing: 0.5px; line-height: 1.3;
  text-transform: uppercase; transition: var(--transition);
}
.logo-img-wrap:hover .logo-name { color: var(--green); }
/* fallback text logo */
.logo-txt-wrap {
  width: 180px; height: 90px; border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  border: 2px solid var(--light-gray); background: var(--off-white);
  transition: var(--transition); cursor: default;
}
.logo-txt-wrap:hover { transform: translateY(-4px) scale(1.04); border-color: var(--orange); box-shadow: 0 8px 24px rgba(232,100,12,0.12); }
.logo-txt-wrap .txt-abbr { font-size: 20px; font-weight: 900; letter-spacing: 2px; color: var(--dark); transition: var(--transition); }
.logo-txt-wrap .txt-name { font-size: 9px; font-weight: 600; color: var(--gray); text-align: center; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.logo-txt-wrap:hover .txt-abbr { color: var(--orange); }
.logo-txt-wrap:hover .txt-name { color: var(--orange); }

/* venture hero logo box — show logos properly */
.venture-logo-box img {
  max-width: 150px; max-height: 130px; object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE FIXES
   Covers: ventures-section, venture pages, gallery,
   contact, navbar, footer — all breakpoints
═══════════════════════════════════════════════════════ */

/* ── 1024px ───────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Ventures homepage grid: 3 → 2 columns */
  .ventures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /* Cancel 7th-card centering at non-3-col layouts */
  .ventures-grid .venture-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  /* Ventures page big cards */
  .venture-card-body { padding: 36px 32px; }
  .venture-card-body .v-title { font-size: 22px; }
  .venture-card-visual { padding: 40px 28px; }
  .venture-big-icon { font-size: 56px; }
  .ventures-page { padding: 60px 0; }

  /* Navbar badge slightly smaller */
  .nav-logo-badge,
  .nav-logo-badge-home {
    width: 105px; height: 105px; padding: 12px;
  }

  /* Individual venture content */
  .venture-content { padding: 60px 0; }
  .venture-hero { padding: 120px 0 60px; }

  /* Gallery group header wrap on tablet */
  .gallery-group-header { flex-wrap: wrap; gap: 12px; }
  .gallery-group-link { margin-left: auto; }
}

/* ── 768px ───────────────────────────────────────── */
@media (max-width: 768px) {
  /* ── Navbar ── */
  .navbar { height: 80px; }
  .nav-logo-badge,
  .nav-logo-badge-home {
    width: 88px; height: 88px; padding: 10px; border-radius: 10px;
  }

  /* ── Ventures homepage grid: 2 → 1 col + fix last-child bug ── */
  .ventures-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ventures-grid .venture-card:last-child:nth-child(3n+1) {
    grid-column: auto !important;
  }
  .ventures-section { padding: 60px 0; }

  /* ── Ventures page big cards (stacked layout) ── */
  .ventures-page { padding: 40px 0; }
  .venture-card-inner { grid-template-columns: 1fr; }
  .venture-card-visual {
    padding: 32px 24px;
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }
  .vc-logo-frame { width: 72px; height: 72px; border-radius: 12px; padding: 8px; }
  .vc-logo-frame i { font-size: 32px; }
  .vc-num { font-size: 11px; padding: 3px 10px; }
  .venture-big-icon { font-size: 40px; margin-bottom: 0; }
  .venture-card-visual h3 { font-size: 18px; }
  .venture-card-visual .badge { font-size: 11px; padding: 4px 12px; }
  .venture-card-body { padding: 24px 20px; }
  .venture-card-body .v-title { font-size: 20px; }
  .venture-card-body p { font-size: 14px; }
  .venture-detail-card { margin-bottom: 20px; border-radius: 14px; }
  .vh-item { font-size: 13px; }

  /* ── Individual venture hero ── */
  .venture-hero { padding: 100px 0 44px; min-height: auto; }
  .venture-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .venture-hero-sub { font-size: 15px; }
  .venture-hero-breadcrumb { font-size: 12px; flex-wrap: wrap; }
  .venture-hero-tag { font-size: 11px; padding: 6px 14px; letter-spacing: 1px; }

  /* ── Individual venture content ── */
  .venture-content { padding: 44px 0; }
  .venture-actions { flex-wrap: wrap; }
  .venture-actions .btn { flex: 1 1 140px; justify-content: center; }

  /* ── Sidebar on tablet stacks to 2 col, then 1 ── */
  .venture-sidebar { grid-template-columns: 1fr; }
  .sidebar-card-body { padding: 16px; }

  /* ── Gallery ── */
  .gallery-section { padding: 48px 0; }
  .gallery-group { margin-bottom: 44px; }
  .gallery-group-header {
    flex-wrap: wrap; gap: 10px;
    padding-bottom: 14px; margin-bottom: 18px;
  }
  .gallery-group-icon { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
  .gallery-group-title h3 { font-size: 17px; }
  .gallery-group-title span { font-size: 12px; }
  .gallery-group-link { font-size: 12px; }
  .gallery-filters { gap: 7px; margin-bottom: 32px; }
  .filter-btn { padding: 8px 14px; font-size: 12px; gap: 6px; }

  /* ── Contact ── */
  .contact-section { padding: 52px 0; }
  .contact-grid { gap: 32px; }
  .contact-items { gap: 16px; }

  /* ── CTA section ── */
  .cta-section { padding: 52px 0; }
  .cta-text h2 { font-size: clamp(20px, 5vw, 32px); }

  /* ── Footer ── */
  .footer-top { padding: 48px 0 32px; }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* ── Section headers ── */
  .section-header { margin-bottom: 32px; }
  .section-subtitle { font-size: 15px; }

  /* ── Page hero ── */
  .page-hero { padding: 100px 0 40px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 48px); }
  .page-hero p { font-size: 15px; }
}

/* ── 480px ───────────────────────────────────────── */
@media (max-width: 480px) {
  /* Container tighter padding */
  .container { padding: 0 14px; }

  /* ── Navbar ── */
  .navbar { height: 70px; }
  .nav-logo-badge,
  .nav-logo-badge-home {
    width: 72px; height: 72px; padding: 8px; border-radius: 10px;
  }

  /* ── Ventures homepage card ── */
  .venture-card { padding: 24px 18px; }
  .card-icon-wrap { width: 44px; height: 44px; font-size: 18px; border-radius: 10px; }
  .card-title { font-size: 15px; }
  .card-desc { font-size: 13px; }

  /* ── Ventures page big cards ── */
  .ventures-page { padding: 28px 0; }
  .venture-card-visual { padding: 22px 16px; gap: 8px; }
  .vc-logo-frame { width: 56px; height: 56px; border-radius: 10px; padding: 6px; }
  .vc-logo-frame i { font-size: 26px; }
  .vc-num { font-size: 10px; }
  .venture-big-icon { font-size: 32px; }
  .venture-card-visual h3 { font-size: 16px; }
  .venture-card-body { padding: 18px 14px; }
  .venture-card-body h4 { font-size: 11px; }
  .venture-card-body .v-title { font-size: 17px; margin-bottom: 10px; }
  .venture-card-body p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
  .venture-highlights { gap: 8px; margin: 16px 0; }
  .vh-item { font-size: 12px; gap: 8px; }
  .venture-detail-card { border-radius: 12px; }

  /* ── Individual venture hero ── */
  .venture-hero { padding: 84px 0 36px; }
  .venture-hero h1 { font-size: 24px; }
  .venture-hero-sub { font-size: 13px; }

  /* ── Individual venture content ── */
  .venture-content { padding: 32px 0; }
  .venture-content h2 { font-size: 20px; }
  .venture-content h3 { font-size: 16px; }
  .services-list { grid-template-columns: 1fr; gap: 10px; }
  .service-item { padding: 12px; }
  .venture-actions { flex-direction: column; gap: 10px; }
  .venture-actions .btn { width: 100%; justify-content: center; }
  .why-item { font-size: 12px; }
  .sidebar-card-body { padding: 12px; }
  .sidebar-contact-item { gap: 10px; font-size: 12px; }

  /* ── Gallery ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item { border-radius: 10px; }
  .filter-btn { padding: 7px 10px; font-size: 11px; }
  .gallery-group-icon { width: 38px; height: 38px; font-size: 15px; }
  .gallery-group-title h3 { font-size: 14px; }
  .lightbox-prev { left: -6px; }
  .lightbox-next { right: -6px; }
  .lightbox-inner img { border-radius: 8px; }

  /* ── Contact / hotline ── */
  .hotline-card { padding: 20px 16px; gap: 12px; }
  .hotline-number { font-size: 20px !important; }
  .hotline-icon-circle { width: 46px; height: 46px; font-size: 18px; }
  .direct-contact-btn { padding: 14px 14px; gap: 12px; border-radius: 10px; }
  .direct-contact-btn .btn-icon { width: 42px; height: 42px; font-size: 18px; border-radius: 10px; }
  .direct-contact-btn .btn-text strong { font-size: 13px; }
  .direct-contact-btn .btn-text small { font-size: 11px; }
  .direct-contact-btn .btn-arrow { display: none; }
  .contact-item { gap: 12px; }
  .c-icon { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; }

  /* ── CTA ── */
  .cta-section { padding: 36px 0; }
  .cta-text h2 { font-size: 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn { justify-content: center; }

  /* ── Footer ── */
  .footer-logo-img { height: 80px; }
  .footer-top { padding: 36px 0 24px; }
  .footer-grid { gap: 24px; }
  .footer-heading { font-size: 13px; }
  .footer-links li a { font-size: 13px; }
  .footer-bottom { padding: 16px 0; }
  .footer-bottom p { font-size: 12px; }

  /* ── Page hero ── */
  .page-hero { padding: 88px 0 32px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 13px; }

  /* ── Section ── */
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 13px; }
  .section-header { margin-bottom: 24px; }
  .ventures-section { padding: 44px 0; }
}
