/* ============================================================
   UCS – Unique Cable Systems | styles.css
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --orange:      #e8811a;
  --orange-dark: #c96e10;
  --dark:        #1a1a2e;
  --dark-footer: #1c1c2e;
  --light-bg:    #f5f5f5;
  --text:        #444444;
  --text-light:  #777777;
  --white:       #ffffff;
  --border:      #e0e0e0;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.btn-orange:hover { background: var(--orange-dark); }

/* ---- Section Title ---- */
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--dark);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}
.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.8);
}
.top-bar-item i { color: var(--orange); font-size: 11px; }
.top-bar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  transition: all 0.2s ease;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

/* Logo (centered) */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 2px;
}
.logo-grid span {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 1px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--orange);
  line-height: 1;
}
.logo-tagline {
  font-size: 11px;
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.3;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links-right { margin-left: auto; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); background: #fff5ec; }
.nav-links .btn-nav-login {
  background: var(--orange);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 4px;
}
.nav-links .btn-nav-login:hover { background: var(--orange-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 16px;
  z-index: 998;
}
.nav-dropdown a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.nav-dropdown a:hover, .nav-dropdown a.active { color: var(--orange); background: #fff5ec; }
.nav-dropdown.open { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-footer);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo-col .logo-grid span { background: var(--white); }
.footer-logo-col .logo-name { color: var(--white); font-size: 18px; }
.footer-logo-img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-top: 10px;
}

.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-contact-info p, .footer-contact-info a {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.footer-contact-info .info-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 13px;
  margin-top: 10px;
  display: block;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.footer-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  transition: all 0.2s ease;
}
.footer-social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-useful-info .about-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-useful-info .about-label i { color: var(--orange); font-size: 10px; }
.footer-useful-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer-links a i { color: var(--orange); font-size: 10px; }
.footer-links a:hover { color: var(--orange); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-bottom-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom-logo .logo-grid-sm {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 2px;
}
.footer-bottom-logo .logo-grid-sm span {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 1px;
}
.footer-bottom-logo .mini-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
}
.footer-copyright {
  font-size: 12px;
  opacity: 0.6;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

/* ============================================================
   PAGE HEADER BANNER (inner pages)
   ============================================================ */
.page-header {
  background: var(--orange);
  padding: 50px 20px 40px;
}
.page-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.85); }

/* ============================================================
   QUOTE / MOTTO BANNER
   ============================================================ */
.motto-banner {
  position: relative;
  padding: 80px 20px;
  background: var(--dark) center center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.motto-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.motto-banner .container { position: relative; z-index: 2; }
.motto-banner h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--white);
  margin-bottom: 12px;
}
.motto-banner a { color: var(--orange); font-weight: 700; font-size: 16px; }
.motto-banner a:hover { text-decoration: underline; }

/* Quote banner variant */
.quote-banner {
  position: relative;
  padding: 80px 20px;
  background: var(--dark) center center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.quote-banner .container { position: relative; z-index: 2; }
.quote-banner blockquote {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 24px);
  color: var(--white);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 12px;
  line-height: 1.5;
}
.quote-banner cite {
  display: block;
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  font-style: normal;
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-d1 { transition-delay: 0.1s; }
.animate-d2 { transition-delay: 0.2s; }
.animate-d3 { transition-delay: 0.3s; }
.animate-d4 { transition-delay: 0.4s; }

/* ============================================================
   HOME PAGE — HERO SLIDER
   ============================================================ */

/* Slider wrapper */
.hero-slider { position: relative; overflow: hidden; }

/* Each slide */
.hero-slide {
  display: none;
  position: relative;
  width: 100%;
  min-height: 500px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f9f5f0 60%, #f0e8d8 100%);
}
.hero-slide.active { display: flex; animation: slideIn 0.5s ease; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.active { background: var(--orange); transform: scale(1.25); }

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #f9f5f0 60%, #f0e8d8 100%);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 50%;
  max-width: 560px;
  padding: 60px 40px 60px 60px;
}
.hero-title-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 50px);
  color: var(--orange);
  display: block;
  line-height: 1.1;
}
.hero-title-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 50px);
  color: var(--dark);
  display: block;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Geometric shapes */
.hero-shapes {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}
.shape {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.shape-1 {
  width: 260px; height: 300px;
  background: var(--orange);
  opacity: 0.15;
  top: -30px; right: 80px;
}
.shape-2 {
  width: 200px; height: 230px;
  background: #4a7c59;
  opacity: 0.5;
  top: 60px; right: 30px;
}
.shape-3 {
  width: 140px; height: 160px;
  background: #6b8f71;
  opacity: 0.3;
  top: 160px; right: 150px;
}

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text);
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s ease;
  user-select: none;
  line-height: 1;
}
.hero-arrow:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }

/* ============================================================
   HOME — WHAT WE DO
   ============================================================ */
.what-we-do {
  background: var(--white);
  padding: 70px 0;
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.wwd-left .wwd-main-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 10px;
}
.wwd-left .wwd-sub {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 14px;
}
.wwd-left p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}
.wwd-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wwd-card {
  border-top: 3px solid var(--border);
  padding: 20px;
  transition: border-color 0.2s ease;
  cursor: default;
}
.wwd-card:hover { border-top-color: var(--orange); }
.wwd-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wwd-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   HOME — OUR SERVICES
   ============================================================ */
.our-services {
  background: var(--light-bg);
  padding: 70px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card { cursor: default; }
.service-card-img {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  color: var(--dark);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   HOME — OUR TEAM
   ============================================================ */
.our-team {
  background: var(--white);
  padding: 70px 0;
}
.team-list { display: flex; flex-direction: column; gap: 48px; }
.team-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.team-item-img {
  width: 320px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
}
.team-item-img img { width: 100%; height: 100%; object-fit: cover; }
.team-item-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  margin-bottom: 12px;
  display: inline-block;
}
.team-item-text p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   ABOUT — MAIN CONTENT
   ============================================================ */
.about-main {
  background: var(--white);
  padding: 70px 0;
}
.about-headline {
  text-align: center;
  margin-bottom: 40px;
}
.about-headline h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 10px;
}
.about-headline p {
  font-size: 15px;
  color: var(--orange);
  font-style: italic;
}
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.about-left p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.about-bullets { display: flex; flex-direction: column; gap: 14px; }
.about-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.about-bullet i { color: var(--orange); font-size: 10px; margin-top: 5px; flex-shrink: 0; }

/* ============================================================
   ABOUT — WHY CHOOSE
   ============================================================ */
.why-choose {
  background: var(--white);
  padding: 70px 0;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.why-left h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 16px;
}
.why-left p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-feature p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   ABOUT — CLIENTS
   ============================================================ */
.our-clients {
  background: var(--white);
  padding: 70px 0;
  text-align: center;
}
.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  padding: 12px 20px;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.client-logo img {
  max-height: 100px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.2s ease;
}
.client-logo:hover { border-color: var(--orange); }
.client-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* ============================================================
   ABOUT — TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--light-bg);
  padding: 70px 0;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.7;
}
.testimonial-card .author {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--orange);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-content {
  background: var(--white);
  padding: 70px 0;
}
.services-title-wrap {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-title-wrap::before,
.services-title-wrap::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.services-title-wrap .services-page-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--orange);
  white-space: nowrap;
}
.services-intro p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.services-intro p:first-child { font-size: 15px; }
.capabilities-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--dark);
  text-transform: uppercase;
  margin: 30px 0 20px;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.cap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.cap-item i { color: var(--orange); font-size: 8px; flex-shrink: 0; }
.cap-col .cap-item:last-child { border-bottom: none; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main {
  background: var(--white);
  padding: 70px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {}
.ci-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ci-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.contact-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
  min-height: 40px;
}
.contact-social-btn:hover { background: var(--orange-dark); transform: scale(1.1); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s ease;
  outline: none;
  background: var(--white);
}
.contact-form input { height: 48px; }
.contact-form textarea { min-height: 200px; resize: none; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }
.form-error { font-size: 12px; color: #c0392b; display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .what-we-do-grid { grid-template-columns: 1fr; gap: 40px; }
  .wwd-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-item { grid-template-columns: 260px 1fr; gap: 28px; }
  .team-item-img { width: 260px; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  /* Hero */
  .hero-content { padding: 50px 24px; width: 100%; max-width: 100%; }
  .hero-shapes .shape { opacity: 0.4; }

  /* Sections */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-item { grid-template-columns: 1fr; }
  .team-item-img { width: 100%; }
  .about-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo-col { display: block; text-align: center; }
  .footer-logo-img { max-width: 220px; margin: 0 auto 10px; }
  .footer { padding: 40px 20px 0; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .wwd-cards { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
  .top-bar-item.address-item { display: none; }
  .top-bar { font-size: 11px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-row { gap: 12px; }
  .client-logo { padding: 10px 16px; font-size: 12px; }
}

/* Form feedback */
.form-success { background:#e8f5e9; color:#2e7d32; padding:14px 16px; border-radius:4px; margin-bottom:16px; font-size:14px; }
.form-fail    { background:#fdecea; color:#c62828; padding:14px 16px; border-radius:4px; margin-bottom:16px; font-size:14px; }
.form-error   { display:block; font-size:12px; color:#c0392b; margin-top:4px; }
