/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:    #0d3d1e;
  --green-main:    #155a2e;
  --green-mid:     #1e7a3f;
  --green-light:   #2a9a52;
  --green-pale:    #e8f5ec;
  --gold:          #c9a84c;
  --gold-light:    #e4c06a;
  --gold-dark:     #a07830;
  --white:         #ffffff;
  --off-white:     #f8faf8;
  --text-dark:     #1a2e1f;
  --text-mid:      #3a5a42;
  --text-light:    #6b8f74;
  --shadow-sm:     0 2px 8px rgba(13,61,30,.12);
  --shadow-md:     0 6px 24px rgba(13,61,30,.16);
  --shadow-lg:     0 16px 48px rgba(13,61,30,.20);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section {
  padding: 96px 0;
}

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 48px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== LOGO IMAGE (PNG with gold filter) ===== */
.wlc-logo-img {
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter:
    contrast(1.25)
    saturate(1.3)
    brightness(1.0)
    drop-shadow(0 1px 2px rgba(90, 55, 0, 0.9))
    drop-shadow(0 0 8px rgba(200, 150, 10, 0.55));
  transition: filter .3s ease;
}

.wlc-logo-img:hover {
  filter:
    contrast(1.3)
    saturate(1.5)
    brightness(1.15)
    drop-shadow(0 0 10px rgba(212, 160, 20, 0.95))
    drop-shadow(0 0 22px rgba(180, 130, 0, 0.6));
}

/* new class names */
.wlc-logo-img--nav,   .nav-logo-img    { height: 38px  !important; width: auto !important; max-width: 120px !important; }
.wlc-logo-img--hero,  .hero-logo-img   { height: 80px  !important; width: auto !important; max-width: 280px !important; }
.wlc-logo-img--footer,.footer-logo-img { height: 48px  !important; width: auto !important; max-width: 160px !important; }

/* ===== 3D GOLD LOGO (text fallback) ===== */
.wlc-logo-3d {
  font-family: 'Arial Black', 'Arial Bold', sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: .02em;
  line-height: 1;
  display: inline-block;
  /* Gold face colour */
  color: #ffe066;
  /* Stacked shadows build the 3D extrusion downward-right */
  text-shadow:
    1px  1px  0 #d4a800,
    2px  2px  0 #c49200,
    3px  3px  0 #b48000,
    4px  4px  0 #a47000,
    5px  5px  0 #946000,
    6px  6px  0 #845000,
    7px  7px  0 #734000,
    8px  8px  0 #623000,
    /* soft outer shadow for depth */
    9px  9px  8px rgba(0,0,0,.55),
    10px 10px 16px rgba(0,0,0,.35);
}

/* Navbar size */
.wlc-logo-3d { font-size: 1.9rem; }

/* Hero size */
.wlc-logo-3d--hero {
  font-size: clamp(3.5rem, 8vw, 6rem);
  text-shadow:
    1px  1px  0 #d4a800,
    2px  2px  0 #c49200,
    3px  3px  0 #b48000,
    4px  4px  0 #a47000,
    5px  5px  0 #946000,
    6px  6px  0 #845000,
    7px  7px  0 #734000,
    8px  8px  0 #623000,
    9px  9px  0 #512000,
    10px 10px 0 #401000,
    12px 12px 10px rgba(0,0,0,.6),
    14px 14px 20px rgba(0,0,0,.35);
}

/* Footer size */
.wlc-logo-3d--footer {
  font-size: 2.8rem;
}

.logo-solutions {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--green-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 50%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(42,154,82,.15) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.1);
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.05); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero-logo-img {
  height: clamp(56px, 9vw, 100px);
  width: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(201,168,76,.5));
}

.hero-title-suffix {
  display: block;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--green-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.1rem;
}

.pillar h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.pillar p {
  font-size: .82rem;
  color: var(--text-mid);
}

/* ===== VISION MISSION ===== */
.vision-mission {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
}

.vision-mission .section-label { color: var(--gold-light); }
.vision-mission .section-title { color: var(--white); }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.vm-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(201,168,76,.5);
  transform: translateY(-4px);
}

.vm-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.vm-card p {
  color: rgba(255,255,255,.8);
  line-height: 1.8;
}

.vm-card strong { color: var(--gold-light); }

/* ===== SERVICES ===== */
.services { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(13,61,30,.08);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,.2), var(--shadow-md);
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card--featured .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.75;
}

.service-list { display: flex; flex-direction: column; gap: 8px; }

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--text-mid);
}

.service-list li i {
  color: var(--green-light);
  font-size: .7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-card--featured .service-list li i { color: var(--gold); }

/* ===== WHY US ===== */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(13,61,30,.08);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.why-item:hover {
  background: var(--green-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.why-item h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.why-item p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CLIENTS ===== */
.clients {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
}

.clients .section-label { color: var(--gold-light); }
.clients .section-title { color: var(--white); }

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.client-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.client-tag:hover {
  background: rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.5);
  color: var(--gold-light);
}

.client-tag--more {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
  color: var(--gold-light);
  font-style: italic;
}

/* ===== PARTNERS ===== */
.partners { background: var(--off-white); }

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

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13,61,30,.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 90px;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.partner-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .02em;
}

.partner-dell   { color: #007DB8; }
.partner-hp     { color: #0096D6; }
.partner-lenovo { color: #E2231A; }
.partner-acer   { color: #83B81A; }
.partner-sangfor{ color: #003087; }
.partner-tplink { color: #4DCFE3; }
.partner-google {
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.partner-fortinet{ color: #DA1D20; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-item p,
.contact-item a {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.6;
  display: block;
}

.contact-item a:hover { color: var(--green-mid); }

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(13,61,30,.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(13,61,30,.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(30,122,63,.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}

.footer-logo .logo-solutions {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  width: 100%;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a { width: 100%; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
}
