/* ==============================================
   GOITSI & SONS COOPERATION — MAIN STYLESHEET
   ============================================== */

/* ── Variables ──────────────────────────────── */
:root {
  --primary:        #007bb6;
  --primary-dark:   #005a8a;
  --primary-light:  #2e9fd4;
  --secondary:      #df5655;
  --secondary-dark: #c43f3e;
  --white:          #ffffff;
  --light:          #f4f7fc;
  --gray:           #6c757d;
  --dark:           #323232;
  --text:           #444444;
  --border:         #e0e0e0;
  --shadow:         0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,0.15);
  --transition:     all 0.3s ease;
  --radius:         8px;
}

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Open Sans', sans-serif; color: var(--text); line-height: 1.75; background: var(--white); }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utilities ──────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding  { padding: 90px 0; }

.section-header   { text-align: center; margin-bottom: 55px; }
.section-label    { display: block; color: var(--secondary); font-size: 0.8rem; font-weight: 700;
                    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title    { color: var(--dark); margin-bottom: 16px; }
.section-divider  { width: 56px; height: 4px; background: var(--secondary); border-radius: 2px;
                    margin: 0 auto; }
.text-white       { color: var(--white) !important; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 34px;
       font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
       border-radius: 4px; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary  { background: var(--secondary); color: var(--white); }
.btn-primary:hover  { background: var(--secondary-dark); transform: translateY(-2px);
                      box-shadow: 0 6px 24px rgba(204,0,0,0.35); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover  { background: var(--white); color: var(--primary); }
.btn-blue     { background: var(--primary); color: var(--white); }
.btn-blue:hover     { background: var(--primary-dark); transform: translateY(-2px);
                      box-shadow: 0 6px 24px rgba(0,48,135,0.35); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }


/* ════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════ */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--dark); color: var(--white); padding: 9px 0; font-size: 0.82rem;
  transition: transform 0.35s ease;
}
.top-bar.bar-hidden { transform: translateY(-100%); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: var(--white); transition: opacity 0.2s; }
.top-bar a:hover { opacity: 0.75; }
.top-bar i { margin-right: 6px; color: rgba(255,255,255,0.65); }
.bar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
                  border-radius: 50%; background: rgba(255,255,255,0.15); transition: var(--transition); }
.social-links a:hover { background: var(--secondary); }


/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.navbar {
  background: transparent;
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, top 0.35s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }

/* After user scrolls — becomes solid white */
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

/* Hide when scrolling down */
.navbar.nav-hidden { transform: translateY(-100%); }

/* When top bar is hidden, navbar moves flush to top */
.navbar.bar-hidden { top: 0; }

/* Nav links — white on transparent, dark when scrolled */
.nav-link {
  padding: 8px 14px; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.88rem;
  color: var(--white); border-radius: 4px; transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link:hover, .nav-link.active { color: var(--secondary); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--secondary); }

.nav-cta  { background: var(--secondary); color: var(--white) !important; padding: 10px 22px !important; }
.nav-cta:hover { background: var(--secondary-dark) !important; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 85px; width: auto; filter: brightness(0) invert(1); transition: filter 0.35s ease; }
.navbar.scrolled .nav-logo img { filter: none; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .logo-name   { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
                           color: var(--white); line-height: 1.2; transition: color 0.35s; }
.navbar.scrolled .logo-text .logo-name { color: var(--primary); }
.logo-text .logo-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.75); letter-spacing: 1.5px;
                            text-transform: uppercase; transition: color 0.35s; }
.navbar.scrolled .logo-text .logo-tagline { color: var(--secondary); }

/* Hamburger — styled icon button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.38);
  transition: var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .hamburger {
  background: var(--light);
  border-color: var(--border);
}
.hamburger:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.75);
}
.navbar.scrolled .hamburger:hover {
  background: #e4f2fb;
  border-color: var(--primary);
}
.hamburger span {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}
.navbar.scrolled .hamburger span { background: var(--dark); }
/* Active state — morphs to × */
.hamburger.active {
  background: var(--secondary);
  border-color: var(--secondary);
}
.hamburger.active span { background: var(--white); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }


/* ════════════════════════════════════════════
   PAGE BANNER (inner pages)
   ════════════════════════════════════════════ */
.page-banner {
  position: relative; padding: 158px 0 90px; text-align: center; color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/hero.png') center/cover;
  opacity: 0.12;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 0.88rem;
              color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--secondary); }
.breadcrumb .current { color: var(--secondary); }


/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 88vh;
  background: url('assets/hero.png')
              center/cover no-repeat;
  display: flex; align-items: flex-start;
  padding-top: 118px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0, 26, 78, 0.1) 0%, rgba(0, 0, 0, 0.834) 60%, rgba(5, 42, 117, 0.941) 100%);
}
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 720px; padding: 40px 0; }
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 18px;
  padding-bottom: 8px; border-bottom: 2px solid var(--secondary);
}
.hero-title { font-size: clamp(1.7rem, 3.8vw, 2.8rem); color: var(--white); font-weight: 700;
              line-height: 1.12; margin-bottom: 22px; }
.hero-title .accent { color: var(--secondary); }
.hero-sub  { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 580px; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 55px; padding-top: 32px;
              border-top: 1px solid rgba(255,255,255,0.18); flex-wrap: wrap; }
.hero-stat .num   { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 700;
                    color: var(--white); line-height: 1; }
.hero-stat .num sup { font-size: 1rem; }
.hero-stat .lbl   { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; }


/* ════════════════════════════════════════════
   FEATURE BOXES
   ════════════════════════════════════════════ */
.features-section { position: relative; z-index: 2; margin-top: -72px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); box-shadow: var(--shadow-lg); }
.feature-card { padding: 38px 32px; display: flex; align-items: flex-start; gap: 18px; transition: filter 0.3s; }
.feature-card:nth-child(1) { background: var(--dark); }
.feature-card:nth-child(2) { background: var(--primary); }
.feature-card:nth-child(3) { background: var(--secondary); }
.feature-card:hover { filter: brightness(1.12); }
.feat-icon  { font-size: 2.4rem; color: var(--white); opacity: 0.85; flex-shrink: 0; padding-top: 4px; }
.feature-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p  { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin: 0; line-height: 1.6; }


/* ════════════════════════════════════════════
   ABOUT SECTION (homepage)
   ════════════════════════════════════════════ */
#about { padding: 110px 0; background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

/* Image side */
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 480px; object-fit: cover; object-position: center;
                  border-radius: 12px; box-shadow: var(--shadow-lg); }
.about-exp-badge {
  position: absolute; bottom: -22px; right: -22px; background: var(--secondary); color: var(--white);
  padding: 26px 22px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-lg);
}
.about-exp-badge .exp-num  { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 700; line-height: 1; }
.about-exp-badge .exp-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.88; margin-top: 4px; }

/* Content side */
.about-copy { padding-left: 10px; }
.about-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.about-tag  { background: var(--light); border: 1px solid var(--border); color: var(--gray);
              font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
              padding: 5px 14px; border-radius: 50px; }

/* Tabs */
.tab-nav  { display: flex; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin: 24px 0 20px; }
.tab-btn  { flex: 1; padding: 11px 10px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500;
            text-align: center; cursor: pointer; background: var(--white); color: var(--dark);
            border: none; transition: var(--transition); }
.tab-btn.active { background: var(--primary); color: var(--white); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeUp 0.3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-pane p { color: var(--text); font-size: 0.95rem; }

.check-list li { display: flex; align-items: center; gap: 10px; padding: 7px 0;
                 border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.check-list li:last-child { border-bottom: none; }
.check-list i { color: var(--secondary); font-size: 0.8rem; }

.about-actions { margin-top: 28px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.inline-contact { display: flex; align-items: center; gap: 12px; }
.inline-contact .ic-icon { width: 44px; height: 44px; background: var(--light); border-radius: 50%;
                            display: flex; align-items: center; justify-content: center;
                            color: var(--primary); font-size: 1.1rem; }
.inline-contact .ic-info span { display: block; font-size: 0.74rem; color: var(--gray);
                                 text-transform: uppercase; letter-spacing: 0.5px; }
.inline-contact .ic-info a  { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--dark); font-size: 0.9rem; }


/* ════════════════════════════════════════════
   STATS SECTION
   ════════════════════════════════════════════ */
.stats-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 70px 0; position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/hero.png') center/cover no-repeat;
  filter: grayscale(100%); opacity: 0.06; pointer-events: none;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-section .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.18); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 700; color: var(--white);
              line-height: 1; display: flex; align-items: center; justify-content: center; gap: 2px; }
.stat-plus  { color: var(--secondary); font-size: 2rem; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }


/* ════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════ */
#services { padding: 100px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden;
                box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.svc-img   { position: relative; height: 210px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.service-card:hover .svc-img img { transform: scale(1.07); }
.svc-num   { position: absolute; top: 14px; right: 14px; background: var(--secondary); color: var(--white);
             width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center;
             justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.8rem; }

.svc-body  { padding: 22px 24px 26px; }
.svc-icon  { width: 48px; height: 48px; background: var(--light); border-radius: var(--radius);
             display: flex; align-items: center; justify-content: center; color: var(--primary);
             font-size: 1.3rem; margin-bottom: 14px; transition: var(--transition); }
.service-card:hover .svc-icon { background: var(--primary); color: var(--white); }
.svc-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-body p  { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin: 0; }
.svc-link    { display: inline-flex; align-items: center; gap: 6px; color: var(--primary);
               font-size: 0.83rem; font-weight: 600; margin-top: 14px; transition: var(--transition); }
.svc-link:hover { color: var(--secondary); gap: 10px; }

.services-footer { text-align: center; margin-top: 52px; }


/* ════════════════════════════════════════════
   DIRECTOR / TEAM SECTION
   ════════════════════════════════════════════ */
#director { padding: 100px 0; background: var(--white); }
.director-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.director-img-wrap { position: relative; }
.director-img-wrap::before {
  content: ''; position: absolute; top: -18px; left: -18px;
  width: 140px; height: 140px; border: 4px solid var(--secondary); border-radius: 12px; z-index: 0;
}
.director-img-wrap img { position: relative; width: 100%; height: 500px; object-fit: cover;
                          object-position: top; border-radius: 12px; box-shadow: var(--shadow-lg); z-index: 1; }

/* Shareholder icon cards */
.shareholders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.shareholder-card {
  background: var(--light); border-radius: 12px; padding: 40px 28px;
  text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--primary);
}
.shareholder-card:nth-child(2) { border-top-color: var(--secondary); }
.shareholder-icon {
  width: 200px; height: 200px; border-radius: 12px;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin: 0 auto 20px; box-shadow: var(--shadow);
  overflow: hidden;
}
.shareholder-icon img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  border-radius: 0;
}
.shareholder-card:nth-child(2) .shareholder-icon { background: var(--secondary); }
.shareholder-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--dark); }
.shareholder-card .sh-role { font-size: 0.78rem; color: var(--gray); text-transform: uppercase;
  letter-spacing: 1.5px; display: block; margin-bottom: 16px; }
.shareholder-card .sh-pct {
  font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 700;
  color: var(--primary); line-height: 1;
}
.shareholder-card:nth-child(2) .sh-pct { color: var(--secondary); }
.shareholder-card .sh-label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase;
  letter-spacing: 1px; margin-top: 4px; }
.director-info .role-badge { display: inline-block; background: var(--secondary); color: var(--white);
                              font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
                              padding: 5px 16px; border-radius: 50px; margin-bottom: 14px; }
.director-info h2 { margin-bottom: 6px; }
.director-info .sub-title { color: var(--primary); font-size: 0.9rem; font-weight: 600;
                             text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; display: block; }
.ownership-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.own-badge { background: var(--light); border-left: 3px solid var(--primary); padding: 14px 16px;
             border-radius: 6px; }
.own-badge .pct  { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.own-badge .desc { font-size: 0.76rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }


/* ════════════════════════════════════════════
   CORE VALUES SECTION
   ════════════════════════════════════════════ */
.values-section { padding: 90px 0; background: var(--primary); position: relative; overflow: hidden; }
.values-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/hero.png') center/cover no-repeat;
  filter: grayscale(100%); opacity: 0.07; pointer-events: none;
}
.values-section > * { position: relative; z-index: 1; }
.values-section .section-label { color: rgba(255,255,255,0.65); }
.values-section .section-title { color: var(--white); }
.values-section .section-divider { background: var(--secondary); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
              padding: 34px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); transform: translateY(-4px); }
.value-card .v-icon { font-size: 2.4rem; color: var(--secondary); margin-bottom: 16px; }
.value-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.value-card p  { color: rgba(255,255,255,0.72); font-size: 0.87rem; margin: 0; line-height: 1.6; }


/* ════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════ */
.cta-section { padding: 90px 0; background: linear-gradient(135deg, var(--dark) 0%, #24244a 100%); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/hero.png') center/cover no-repeat;
  filter: grayscale(100%); opacity: 0.06; pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-inner   { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════ */
#contact-section { padding: 100px 0; background: var(--light); }
.contact-layout  { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-col h2 { margin-bottom: 14px; }
.contact-info-col > p { color: var(--text); margin-bottom: 36px; }
.c-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.c-detail .c-icon { width: 48px; height: 48px; background: var(--primary); border-radius: var(--radius);
                    display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.c-detail-text h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 4px; }
.c-detail-text a, .c-detail-text p { font-size: 0.93rem; color: var(--dark); font-weight: 500; transition: color 0.2s; margin: 0; }
.c-detail-text a:hover { color: var(--secondary); }

.contact-form-box { background: var(--white); padding: 42px; border-radius: 12px; box-shadow: var(--shadow); }
.contact-form-box h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--dark);
                    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif; font-size: 0.93rem; color: var(--dark);
  background: var(--white); transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,48,135,0.1); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit  { width: 100%; }


/* ════════════════════════════════════════════
   ABOUT PAGE — Extended sections
   ════════════════════════════════════════════ */
.about-page-section { padding: 90px 0; }
.company-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.company-intro img { width: 100%; height: 460px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-lg); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 50px; }
.vm-card  { background: var(--white); border-radius: var(--radius); padding: 34px;
            box-shadow: var(--shadow); border-top: 4px solid var(--primary); }
.vm-card.red-top { border-top-color: var(--secondary); }
.vm-card .vm-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.vm-card.red-top .vm-icon { color: var(--secondary); }
.vm-card h3 { margin-bottom: 12px; }

.strategy-section { padding: 80px 0; background: var(--light); }
.strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.strategy-item { background: var(--white); border-radius: var(--radius); padding: 30px 24px;
                 box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.strategy-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.strategy-item .s-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 14px; }
.strategy-item h3 { margin-bottom: 10px; }
.strategy-item p  { font-size: 0.88rem; color: var(--gray); margin: 0; }


/* ════════════════════════════════════════════
   SERVICES PAGE — All services
   ════════════════════════════════════════════ */
.all-services { padding: 90px 0; background: var(--light); }
.all-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-full-card { background: var(--white); border-radius: var(--radius); overflow: hidden;
                 box-shadow: var(--shadow); transition: var(--transition); }
.svc-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-full-card .card-img { height: 220px; overflow: hidden; }
.svc-full-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-full-card:hover .card-img img { transform: scale(1.06); }
.svc-full-body { padding: 26px; }
.svc-full-body .svc-cat { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 2px;
                           font-weight: 700; color: var(--secondary); margin-bottom: 8px; display: block; }
.svc-full-body h3 { margin-bottom: 10px; }
.svc-full-body p  { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin: 0; }
.svc-full-body .svc-features { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.svc-full-body .svc-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text); }
.svc-full-body .svc-features i { color: var(--primary); font-size: 0.75rem; }

.hs-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 70px 0; }
.hs-banner .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.hs-banner h2 { color: var(--white); max-width: 500px; margin: 0; }
.hs-banner p  { color: rgba(255,255,255,0.8); max-width: 500px; margin-top: 10px; }


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }

.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.f-logo img { height: 80px; filter: brightness(0) invert(1); }
.f-logo .logo-text .logo-name { color: var(--white); }

.f-social { display: flex; gap: 10px; margin-top: 22px; }
.f-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%;
              display: flex; align-items: center; justify-content: center; color: var(--white);
              transition: var(--transition); }
.f-social a:hover { background: var(--secondary); }

footer h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; color: var(--white);
            margin-bottom: 22px; padding-bottom: 10px; border-bottom: 2px solid var(--secondary);
            display: inline-block; }
.f-links li { margin-bottom: 10px; }
.f-links a  { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: flex; align-items: center;
              gap: 8px; transition: var(--transition); }
.f-links a:hover { color: var(--secondary); padding-left: 5px; }
.f-links i  { color: var(--secondary); font-size: 0.7rem; }

.f-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.86rem; }
.f-contact i  { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.f-contact a  { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.f-contact a:hover { color: var(--secondary); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p   { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a   { color: var(--secondary); }


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-layout    { grid-template-columns: 1fr; gap: 50px; }
  .about-copy      { padding-left: 0; }
  .about-exp-badge { right: 20px; }
  .director-layout { grid-template-columns: 1fr; gap: 40px; }
  .director-img-wrap img { height: 380px; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-section .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.18); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout  { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
  .company-intro   { grid-template-columns: 1fr; gap: 40px; }
  .vm-grid         { grid-template-columns: 1fr; }
  .strategy-grid   { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: 1fr; }
  .features-section { margin-top: 0; }
  .ownership-badges { grid-template-columns: 1fr 1fr; }
  .shareholders-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .shareholders-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  /* No top bar on mobile — navbar sits at top */
  .navbar { top: 0 !important; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 8px 20px 26px;
    box-shadow: 0 14px 45px rgba(0,0,0,0.16);
    gap: 0;
    border-top: 3px solid var(--secondary);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; animation: slideDown 0.28s ease forwards; }
  .nav-menu li { border-bottom: 1px solid var(--border); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-link { width: 100%; color: var(--dark); padding: 14px 16px; border-radius: 8px; display: flex; align-items: center; }
  .nav-link:hover, .nav-link.active { color: var(--secondary); background: rgba(231,76,60,0.06); }
  .nav-cta { background: var(--secondary); color: var(--white) !important; text-align: center;
             justify-content: center; border-radius: 8px !important; margin-top: 10px; }
  .nav-cta:hover { background: var(--secondary-dark) !important; }
  .hamburger { display: flex; }

  #hero { min-height: 100vh; padding-top: 78px; }
  .hero-stats { display: none; }

  .section-padding { padding: 70px 0; }
  #about, #services, #director, .values-section, #contact-section { padding: 70px 0; }

  .services-grid   { grid-template-columns: 1fr; }
  .all-services-grid { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .strategy-grid   { grid-template-columns: 1fr; }
  .cta-btns        { flex-direction: column; align-items: center; }
  .about-img-main  { height: 320px; }
  .director-img-wrap img { height: 320px; }
  .features-section { margin-top: -30px; }
  .ownership-badges { grid-template-columns: 1fr; }
  .stats-section .container { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   SLIDE-DOWN ANIMATION (mobile nav)
   ════════════════════════════════════════════ */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   SMALL SCREENS (≤ 480px)
   ════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container    { padding: 0 16px; }
  .hero-content { padding: 16px 0; }
  .hero-title   { font-size: 2rem; }
  .hero-sub     { font-size: 0.95rem; }
  .values-grid  { grid-template-columns: 1fr; }
  .stat-item    { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.18) !important; }
  .stat-item:last-child { border-bottom: none !important; }
  .stats-section .container { grid-template-columns: 1fr 1fr; }
  .btn-lg       { padding: 14px 22px; font-size: 0.9rem; }
  .shareholder-icon { width: 160px; height: 160px; }
  .contact-form-box { padding: 24px 16px; }
  .page-banner  { padding: 108px 0 54px; }
  .feature-card { padding: 26px 20px; }
  .about-exp-badge { right: 8px; bottom: -14px; padding: 16px 14px; }
  .about-exp-badge .exp-num { font-size: 2rem; }
  .cta-section  { padding: 60px 0; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .all-services-grid { grid-template-columns: 1fr; }
  .shareholder-card { padding: 28px 18px; }
}

@media (max-width: 480px) {
  .container   { padding: 0 16px; }
  .hero-btns   { flex-direction: column; }
  .btn         { justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-section .container { grid-template-columns: 1fr; }
  .stat-item   { border-right: none; }
  .contact-form-box { padding: 26px 20px; }
  .about-exp-badge { position: relative; right: auto; bottom: auto; margin-top: 20px; display: inline-block; }
  .hs-banner .container { flex-direction: column; align-items: flex-start; }
  .ownership-badges { grid-template-columns: 1fr; }
}
