/* ============================================
   SBINC × GROWFY — ULTRA HD WEBSITE STYLES
   Brand Colors: Forest Green + Amber Gold
   ============================================ */

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

:root {
  --green-dark:   #0d3320;
  --green-main:   #1a5c35;
  --green-mid:    #246b3e;
  --green-light:  #2e8050;
  --amber:        #f5a623;
  --amber-dark:   #d4891a;
  --amber-light:  #ffc355;
  --white:        #ffffff;
  --off-white:    #f8f6f2;
  --gray-light:   #f0ede8;
  --gray-mid:     #b0a99a;
  --gray-dark:    #3a3530;
  --text-dark:    #1c1a17;
  --text-mid:     #5a5550;
  --shadow-lg:    0 20px 60px rgba(13,51,32,0.18);
  --shadow-md:    0 8px 30px rgba(13,51,32,0.12);
  --shadow-sm:    0 3px 12px rgba(13,51,32,0.08);
  --radius-lg:    20px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --transition:   all 0.38s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-dark); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar-main {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}
.navbar-main.scrolled {
  background: var(--green-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-main.scrolled .navbar-inner { border-bottom: none; }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand-text { display: flex; flex-direction: column; }
.brand-sbinc {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.brand-sep { width: 1px; height: 36px; background: var(--amber); opacity: 0.5; }
.brand-growfy { font-size: 1.4rem; font-weight: 700; color: var(--amber); line-height: 1; }
.brand-tagline { font-size: 0.65rem; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85); text-transform: uppercase;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--amber);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav {
  background: var(--amber); color: var(--green-dark) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,0.4); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 75px; left: 0; right: 0; z-index: 9998;
  background: var(--green-dark);
  padding: 24px;
  border-top: 2px solid var(--amber);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu ul li a {
  display: block; padding: 14px 0;
  color: var(--white); font-size: 1rem; font-weight: 500;
}
.mobile-menu ul li a:hover { color: var(--amber); padding-left: 8px; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 50%, #1a3d26 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,166,35,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%),
    linear-gradient(45deg, rgba(255,255,255,0.015) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.015) 75%);
  background-size: cover, cover, 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: rgba(245,166,35,0.08); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(46,128,80,0.15); bottom: -100px; left: -100px; }
.orb-3 { width: 300px; height: 300px; background: rgba(245,166,35,0.05); top: 30%; left: 30%; }

.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
  color: var(--amber-light); padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; animation: pulse 2s infinite; }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.35s both;
}
.hero-headline .accent { color: var(--amber); display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.65s both;
}
.btn-primary-hero {
  background: var(--amber); color: var(--green-dark);
  padding: 16px 36px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.3px; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary-hero:hover { background: var(--amber-light); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(245,166,35,0.45); }
.btn-secondary-hero {
  background: transparent; color: var(--white);
  padding: 16px 36px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35); cursor: pointer;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-secondary-hero:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s ease 0.8s both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--amber); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  padding-top: 100px;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.hero-card-main {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  max-width: 420px;
  width: 100%;
}
.hero-card-main::before {
  content: '';
  position: absolute; top: -1px; left: 30px; right: 30px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 0 0 3px 3px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--white);
  margin-bottom: 24px; font-weight: 700;
  text-align: center;
}
.hero-solutions-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.hero-sol-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.hero-sol-item:hover { background: rgba(245,166,35,0.12); border-color: var(--amber); transform: translateY(-2px); }
.hero-sol-icon { font-size: 1.5rem; margin-bottom: 6px; display: block; }
.hero-sol-label { font-size: 0.72rem; color: rgba(255,255,255,0.75); line-height: 1.3; }

.hero-promise-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--amber); color: var(--green-dark);
  border-radius: 50%; width: 100px; height: 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(245,166,35,0.5);
  animation: float 3s ease-in-out infinite;
}
.promise-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.promise-text { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.5px; text-align: center; text-transform: uppercase; line-height: 1.3; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--amber-dark); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 1; height: 1px; background: var(--amber); opacity: 0.4; min-width: 24px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title .accent { color: var(--amber-dark); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}
.section-title-white { color: var(--white); }
.section-desc-white { color: rgba(255,255,255,0.72); }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us { background: var(--off-white); }
.why-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(245,166,35,0.2); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 70px; height: 70px; border-radius: 18px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(26,92,53,0.25);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); background: linear-gradient(135deg, var(--amber-dark), var(--amber)); }
.why-title { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.why-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* =========================================
   SOLUTIONS GRID
   ========================================= */
.solutions-section { background: var(--white); }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.sol-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,92,53,0.1);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.sol-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.sol-card-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 32px 28px 24px;
  position: relative; overflow: hidden;
}
.sol-card-header::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.sol-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem; color: var(--amber);
  letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 12px;
  opacity: 0.8;
}
.sol-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.sol-title { font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 0; }
.sol-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.sol-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.sol-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.sol-tag {
  background: var(--gray-light); color: var(--green-main);
  padding: 4px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 600;
}
.sol-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-main); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: var(--transition);
}
.sol-link:hover { color: var(--amber-dark); gap: 12px; }

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section { background: var(--green-dark); overflow: hidden; position: relative; }
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
}
.process-steps { display: flex; gap: 0; position: relative; z-index: 1; flex-wrap: wrap; }
.process-connector {
  flex: 1; display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 1.5rem; opacity: 0.5;
  min-width: 40px;
}
.process-step {
  flex: 1; min-width: 140px;
  text-align: center; padding: 40px 20px;
  position: relative;
}
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(245,166,35,0.1); border: 2px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.process-step:hover .step-circle { background: var(--amber); border-color: var(--amber); transform: scale(1.1); }
.step-num {
  position: absolute; top: 36px; right: calc(50% - 48px);
  background: var(--amber); color: var(--green-dark);
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--amber); margin-bottom: 10px; }
.step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* =========================================
   INDUSTRIES
   ========================================= */
.industries-section { background: var(--off-white); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.industry-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 20px; text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.industry-card:hover { border-color: var(--green-main); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.industry-name { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); }

/* =========================================
   USP BANNER
   ========================================= */
.usp-banner {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  padding: 80px 0; position: relative; overflow: hidden;
}
.usp-banner::after {
  content: '100%';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 18rem; font-weight: 900; opacity: 0.04;
  color: var(--amber); line-height: 1;
}
.usp-content { position: relative; z-index: 2; }
.usp-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--white);
  font-weight: 700; line-height: 1.35;
  margin-bottom: 24px;
}
.usp-quote em { color: var(--amber); font-style: normal; }
.usp-pledge {
  font-size: 0.95rem; color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.75;
}
.usp-badge-area { display: flex; justify-content: center; align-items: center; }
.usp-shield {
  background: var(--amber);
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  width: 220px; height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--green-dark);
  box-shadow: 0 20px 50px rgba(245,166,35,0.5);
  animation: float 3.5s ease-in-out infinite;
}
.shield-pct {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; line-height: 1;
}
.shield-label { font-size: 0.85rem; font-weight: 800; letter-spacing: 1px; text-align: center; text-transform: uppercase; }
.shield-stars { font-size: 1.1rem; letter-spacing: 3px; margin-top: 6px; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-block { margin-bottom: 36px; }
.contact-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber-dark);
  margin-bottom: 6px;
}
.contact-val { font-size: 1rem; color: var(--text-dark); font-weight: 500; line-height: 1.7; }
.contact-val a:hover { color: var(--green-main); }

.contact-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-radius: var(--radius-lg); padding: 48px 40px;
  color: var(--white);
}
.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--white);
  margin-bottom: 28px;
}
.contact-card-title span { color: var(--amber); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-control-custom {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm);
  color: var(--white); padding: 13px 16px; font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-control-custom::placeholder { color: rgba(255,255,255,0.35); }
.form-control-custom:focus { border-color: var(--amber); background: rgba(255,255,255,0.12); }
.btn-submit {
  width: 100%; background: var(--amber); color: var(--green-dark);
  padding: 16px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(245,166,35,0.4); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 28px; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub { font-size: 0.82rem; color: var(--amber); font-weight: 600; letter-spacing: 1px; }
.footer-about { font-size: 0.88rem; line-height: 1.75; max-width: 300px; margin-top: 14px; }
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  color: var(--amber); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,166,35,0.2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--amber); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; align-items: flex-start; }
.footer-contact-icon { color: var(--amber); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-text { font-size: 0.82rem; }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; color: var(--amber); font-style: italic;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.07), transparent 70%);
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title .accent { color: var(--amber); }
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 560px; line-height: 1.7; }
.breadcrumb-custom {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; font-size: 0.8rem;
}
.breadcrumb-custom a { color: rgba(255,255,255,0.5); }
.breadcrumb-custom a:hover { color: var(--amber); }
.breadcrumb-custom span { color: var(--amber); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-intro { background: var(--white); }
.about-text { font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.about-highlight {
  border-left: 4px solid var(--amber);
  padding: 20px 28px; margin: 32px 0;
  background: var(--off-white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-highlight p { font-size: 1.1rem; font-style: italic; color: var(--green-dark); font-weight: 500; margin: 0; }

.vision-mission { background: var(--off-white); }
.vm-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px 36px;
  border-top: 4px solid var(--green-main); box-shadow: var(--shadow-sm);
  height: 100%;
}
.vm-card.amber-top { border-top-color: var(--amber); }
.vm-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.vm-title { font-size: 1.4rem; color: var(--green-dark); margin-bottom: 16px; font-weight: 700; }
.vm-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-dot { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--green-main), var(--green-light)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.value-text h5 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 4px; font-weight: 700; }
.value-text p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* =========================================
   SOLUTIONS PAGE
   ========================================= */
.sol-detail-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(26,92,53,0.1);
  overflow: hidden; box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  transition: var(--transition);
}
.sol-detail-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,0.3); }
.sol-detail-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  padding: 28px 32px;
  display: flex; align-items: center; gap: 20px;
}
.sol-detail-icon-wrap {
  width: 60px; height: 60px; background: rgba(255,255,255,0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.sol-detail-header-text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.sol-detail-header-text p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }
.sol-detail-body { padding: 28px 32px; }
.sol-includes-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; color: var(--amber-dark); text-transform: uppercase; margin-bottom: 14px; }
.sol-includes-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.sol-includes-list li {
  background: var(--gray-light); color: var(--green-dark);
  padding: 6px 14px; border-radius: 6px; font-size: 0.82rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.sol-includes-list li::before { content: '✓'; color: var(--green-main); font-weight: 800; }

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-section { background: var(--off-white); }
.gallery-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 22px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  border: 2px solid var(--green-main); color: var(--green-main);
  background: transparent; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--green-main); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  background: var(--green-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  color: rgba(255,255,255,0.6);
  gap: 10px;
}
.gallery-placeholder-icon { font-size: 3rem; opacity: 0.5; }
.gallery-placeholder-text { font-size: 0.85rem; opacity: 0.5; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(13,51,32,0.75);
  display: flex; align-items: flex-end;
  padding: 24px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 0.9rem; font-weight: 600; }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9997;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: #20b857; color: white; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { flex-direction: column; gap: 0; }
  .process-connector { display: none; }
}

@media (max-width: 767px) {
  .section-pad { padding: 70px 0; }
  .hero-stats { gap: 28px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary-hero, .btn-secondary-hero { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .usp-banner::after { display: none; }
}

/* ============================================
   PROFESSIONAL REDESIGN OVERRIDES
   Cleaner institutional look, HD image below menu
   ============================================ */

:root {
  --green-dark: #0b2f20;
  --green-main: #145b38;
  --green-mid: #1f7048;
  --green-light: #32835a;
  --amber: #f3a51b;
  --amber-dark: #c97c08;
  --amber-light: #ffd27a;
  --off-white: #f6f8f5;
  --gray-light: #eef2ee;
  --text-dark: #142019;
  --text-mid: #5b675f;
  --shadow-lg: 0 22px 60px rgba(11,47,32,0.14);
  --shadow-md: 0 12px 34px rgba(11,47,32,0.10);
  --shadow-sm: 0 4px 14px rgba(11,47,32,0.08);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.62;
}

h1, h2, h3, h4, h5, h6,
.hero-headline,
.section-title,
.page-hero-title,
.brand-sbinc {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  letter-spacing: -0.035em;
}

.navbar-main {
  position: sticky;
  top: 0;
  background: rgba(8, 28, 20, 0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
}

.navbar-main.scrolled {
  background: rgba(8, 28, 20, 0.98);
}

.navbar-inner {
  padding: 14px 0;
  border-bottom: 0;
}

.brand-sbinc,
.brand-growfy {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  text-transform: lowercase;
}

.brand-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.nav-links {
  gap: clamp(18px, 2vw, 30px);
  margin-bottom: 0;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.btn-nav {
  border-radius: 6px;
  padding: 11px 20px !important;
  box-shadow: none;
}

.menu-image-band {
  width: 100%;
  background: #07150f;
  border-bottom: 1px solid rgba(20,91,56,0.16);
}

.menu-image-band img {
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.hero {
  min-height: auto;
  padding: clamp(70px, 8vw, 118px) 0;
  background:
    linear-gradient(135deg, rgba(8,28,20,0.98), rgba(20,91,56,0.94)),
    radial-gradient(circle at 80% 20%, rgba(243,165,27,0.12), transparent 32%);
}

.hero-content {
  padding-top: 0;
}

.hero-bg-pattern,
.hero-orb {
  display: none;
}

.hero-badge,
.section-eyebrow {
  border-radius: 6px;
  background: rgba(243,165,27,0.10);
  border-color: rgba(243,165,27,0.22);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.hero-headline {
  font-size: clamp(2.65rem, 5.6vw, 5.7rem);
  line-height: 0.98;
  max-width: 820px;
}

.hero-sub,
.page-hero-desc,
.section-desc,
.why-desc,
.solution-desc,
.about-text,
.footer-about {
  font-size: 0.98rem;
  color: var(--text-mid);
}

.hero .hero-sub {
  color: rgba(255,255,255,0.76);
}

.btn-primary-hero,
.btn-secondary-hero,
.cta-button,
.filter-btn,
.form-submit {
  border-radius: 6px !important;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-card-main,
.why-card,
.solution-card,
.case-card,
.gallery-item,
.contact-card,
.faq-item,
.value-card,
.team-card,
.timeline-item,
.stat-box {
  border-radius: 8px !important;
  box-shadow: var(--shadow-sm);
}

.hero-card-main {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.why-card:hover,
.solution-card:hover,
.case-card:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.section-pad {
  padding: clamp(72px, 8vw, 108px) 0;
}

.section-title,
.page-hero-title {
  font-weight: 900;
  line-height: 1.04;
}

.page-hero {
  min-height: auto;
  padding: clamp(76px, 9vw, 122px) 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
}

.gallery-placeholder {
  background:
    linear-gradient(rgba(11,47,32,0.78), rgba(11,47,32,0.78)),
    url('../images/school-technology-hd.png') center / cover;
}

.footer {
  background: #07150f;
}

@media (max-width: 991px) {
  .navbar-main {
    position: sticky;
  }

  .mobile-menu {
    top: 68px;
  }

  .hero-visual {
    display: block;
    margin-top: 44px;
  }
}

@media (max-width: 767px) {
  .menu-image-band img {
    height: 300px;
  }

  .hero-headline {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  .hero-ctas {
    flex-direction: column;
  }
}
