/* ============================================================
   GLOBAL CONSULT NYC — Master Stylesheet
   Faithful reproduction of globalconsultoria.com.br design
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #303266;
  --blue: #5B94BF;
  --green: #83b735;
  --green-hover: #6fa02d;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray: #767676;
  --gray-light: #e8e8e8;
  --dark: #1a1a2e;
  --text: #333333;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.10);
  --transition: all 0.3s ease;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 18px; }

p { color: var(--gray); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  max-width: 720px;
  margin-bottom: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(131,183,53,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: #252854;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(48,50,102,0.35);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: #4a83ae;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,148,191,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  background: none;
  text-transform: none;
}
.btn-link:hover { gap: 10px; color: var(--navy); }
.btn-link::after { content: '→'; font-size: 16px; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header-top {
  background: var(--navy);
  padding: 8px 0;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.header-social a:hover { color: var(--white); }

.header-main {
  padding: 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

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

.logo img {
  height: 80px;
  width: auto;
}

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

.nav > li {
  position: relative;
}

.nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav > li:first-child > a {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  font-size: 13px;
}

.nav > li > a:hover,
.nav > li > a.active {
  color: var(--blue);
  background: rgba(91,148,191,0.06);
}

.nav > li > a .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--off-white);
  color: var(--blue);
  padding-left: 28px;
}

/* Header CTA */
.header-cta {
  margin-left: 16px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
}

.mobile-nav.active { display: block; }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
}

.mobile-nav .sub-menu a {
  padding-left: 20px;
  font-weight: 500;
  font-size: 14px;
  color: var(--gray);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

/* Main hero (homepage) */
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-images img {
  border-radius: var(--radius);
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: 130px;
  padding-bottom: 60px;
  background: var(--off-white);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
}

.page-hero .breadcrumb a { color: var(--blue); }
.page-hero .breadcrumb a:hover { color: var(--navy); }

/* Slider hero (trabalhe/parceiro) */
.slider-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
}

.slider-hero-content {
  position: relative;
  z-index: 2;
}

.slider-hero h1 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}

.slider-hero h1 span {
  color: var(--navy);
  display: block;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.7); }
.section-navy .section-label { color: var(--blue); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header h2 { margin-bottom: 16px; }

/* ---------- Who We Are ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Info Boxes ---------- */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.info-box:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.info-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(91,148,191,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--blue);
}

.info-box h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--navy);
}

.info-box p {
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- Mission/Vision/Values ---------- */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mvv-grid > img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.mvv-item {
  margin-bottom: 32px;
}

.mvv-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
}

.mvv-item p {
  font-size: 15px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.value-item strong {
  color: var(--navy);
  min-width: 140px;
  font-size: 14px;
}

.value-item span {
  color: var(--gray);
  font-size: 14px;
}

/* ---------- Client Logos ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.client-logo {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  min-height: 100px;
}

.client-logo:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.client-logo img {
  max-height: 65px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: var(--transition);
}

.client-logo:hover img {
  transform: scale(1.05);
}

/* ---------- Service Detail Pages ---------- */
.service-detail {
  padding: 40px 0 80px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-content h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--navy);
}

.service-content p {
  font-size: 15px;
  margin-bottom: 16px;
}

.service-content ul {
  padding-left: 0;
  margin-bottom: 24px;
}

.service-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--gray);
}

.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.service-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.service-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: var(--white);
}

.sidebar-cta h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Steps list */
.steps-list {
  counter-reset: steps;
}

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

.step-num {
  counter-increment: steps;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-item h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-item p {
  font-size: 14px;
  margin: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #252854 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(91,148,191,0.08);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-info h2 { color: var(--white); margin-bottom: 12px; }
.cta-info h3 { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 16px; font-weight: 500; }
.cta-info p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }

.cta-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.offices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.office-card {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 24px;
  border-left: 4px solid var(--blue);
}

.office-card h4 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 8px;
}

.office-card p {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.contact-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(91,148,191,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e53e3e;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  box-shadow: 4px 4px 6px rgba(50,50,50,0.08);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(91,148,191,0.15);
}

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

.form-submit {
  background: var(--blue);
  color: var(--white);
  padding: 16px 48px;
  border: none;
  border-radius: 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: #4a83ae;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,148,191,0.3);
}

/* ---------- Blog Grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

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

.blog-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body h3 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-body h3 a:hover { color: var(--blue); }

.blog-card-body p {
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---------- Text Pages (Ethics, Privacy) ---------- */
.text-page {
  padding: 40px 0 80px;
}

.text-content {
  max-width: 820px;
  margin: 0 auto;
}

.text-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
}

.text-content h3 {
  font-size: 18px;
  margin: 28px 0 12px;
}

.text-content p {
  font-size: 15px;
  margin-bottom: 16px;
}

.text-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--gray);
}

.text-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ---------- Join / Partner Two-Column Section ---------- */
.join-section {
  padding: 80px 0;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.join-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.join-grid h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.join-grid p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---------- Form Section ---------- */
.form-section {
  padding: 80px 0;
  background: var(--off-white);
}

.form-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .join-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 24px;
  }

  .slider-hero {
    padding-top: 110px;
  }
}

/* ============================================================
   PRE-FOOTER CTA BAND
   ============================================================ */
.prefooter {
  background: var(--navy);
  border-radius: 80px 0 0 0;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.prefooter .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.prefooter h2 { color: var(--white); margin-bottom: 16px; }
.prefooter p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--gray-light);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--gray);
}
.footer-bottom-links a:hover { color: var(--blue); }

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* Contact float button */
.contact-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--blue);
  color: var(--white);
  padding: 16px 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.contact-float:hover {
  background: #4a83ae;
  padding-right: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid,
  .who-grid,
  .mvv-grid,
  .cta-grid,
  .contact-grid,
  .prefooter .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  section { padding: 60px 0; }

  .hero { padding-top: 110px; }
  .page-hero { padding-top: 110px; }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-images img { height: 200px; }

  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .info-boxes {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .prefooter {
    border-radius: 40px 0 0 0;
  }

  .slider-hero h1 { font-size: clamp(36px, 10vw, 60px); }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container { padding: 0 16px; }
}
