/* ================================================================
   GT OneSource Services – Landing Page Styles
   Fonts: Barlow Condensed (headings) + Inter (body)
   Colors: Black #0a0a0a, Dark Grey #141414, Mid Grey #2a2a2a,
           Light Grey #9a9a9a, White #f5f5f5, Accent #e8c04a (gold)
================================================================ */

/* ---- CSS Variables ---- */
:root {
  --black:       #0a0a0a;
  --dark:        #141414;
  --dark2:       #1c1c1c;
  --mid:         #2a2a2a;
  --border:      #333333;
  --muted:       #7a7a7a;
  --light:       #c8c8c8;
  --white:       #f5f5f5;
  --accent:      #c0c0c0;
  --accent-dark: #a8a8a8;
  --accent-light: #e8e8e8;
  --danger:      #e84a4a;
  --warning:     #e8a84a;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { text-decoration: none; transition: color var(--transition); }

img { max-width: 100%; height: auto; display: block; }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* ---- Accent Color (Metallic Silver) ---- */
.text-accent { color: var(--accent) !important; }
.text-accent-light { color: var(--accent-light) !important; }

/* ---- Buttons ---- */
.btn-accent {
  background: linear-gradient(135deg, #d0d0d0 0%, #a8a8a8 100%);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #888888;
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 12px rgba(0,0,0,0.4);
}
.btn-accent:hover {
  background: linear-gradient(135deg, #e0e0e0 0%, #b8b8b8 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 6px 20px rgba(0,0,0,0.5);
  border-color: #a0a0a0;
}

.btn-outline-light {
  border-color: rgba(245,245,245,0.5);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background-color: rgba(245,245,245,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================================================================
   STICKY CTA BAR
================================================================ */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  padding: 0.65rem 1.5rem;
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1.5rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.cta-info {
  font-size: 0.85rem;
  color: var(--light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-link {
  color: var(--light);
  text-decoration: none;
  transition: color var(--transition);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cta-link:hover { color: var(--accent); }

.sticky-brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sticky-phone {
  color: var(--light);
  font-size: 0.9rem;
  font-weight: 500;
}
.sticky-phone:hover { color: var(--accent); }

/* ================================================================
   HERO SECTION
================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('images/hero-new.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(10,10,10,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-logo {
  max-width: 380px;
  animation: slideInDown 0.8s ease-out;
}
.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(192,192,192,0.15);
  border: 1px solid rgba(192,192,192,0.5);
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.2);
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light);
  max-width: 520px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--white); }

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,245,245,0.4);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background-color: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--light);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item small { color: var(--muted); font-size: 0.78rem; }

.trust-icon {
  font-size: 1.75rem;
  color: var(--accent);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ================================================================
   INDUSTRIES SECTION
================================================================ */
.industries-section { background-color: var(--dark); }

.industry-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}
.industry-card:hover {
  border-color: rgba(192,192,192,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.industry-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--light);
}

/* ================================================================
   PROBLEM SECTION
================================================================ */
.problem-section { background-color: var(--dark); }

.problem-list {
  margin-top: 2rem;
}

.problem-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.problem-item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.problem-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.problem-item p {
  color: var(--light);
  font-size: 0.95rem;
  margin: 0;
}

/* ================================================================
   SOLUTION SECTION
================================================================ */
.solution-section { background-color: var(--dark2); }

.solution-benefits {
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--light);
  font-size: 0.95rem;
}

.benefit-item i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section { background-color: var(--dark); }

.service-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(192,192,192,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.service-card.highlight {
  border: 2px solid rgba(192,192,192,0.5);
  background: linear-gradient(135deg, rgba(192,192,192,0.08) 0%, rgba(192,192,192,0.04) 100%);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  color: var(--light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ================================================================
   GALLERY SECTION
================================================================ */
.gallery-section { background-color: var(--dark2); }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 300px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  color: var(--white);
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
}

/* ================================================================
   SECTION LABELS & HEADINGS
================================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--light);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  font-size: 1rem;
  color: var(--light);
  max-width: 560px;
  line-height: 1.7;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

/* ================================================================
   SECTION BACKGROUNDS
================================================================ */
.section-dark { background-color: var(--dark); }

/* ================================================================
   PAS SECTION
================================================================ */
.pas-section { background-color: var(--dark); }

.pas-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pas-block {
  background: var(--mid);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid transparent;
}
.problem-block { border-left-color: var(--danger); }
.agitation-block { border-left-color: var(--warning); }

.pas-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pas-list li {
  padding: 0.4rem 0;
  color: var(--light);
  font-size: 0.95rem;
}

.pas-text { color: var(--light); margin-bottom: 0.5rem; }

.solution-card {
  background: linear-gradient(135deg, var(--mid) 0%, #1e1e1e 100%);
  border: 1px solid rgba(192,192,192,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 24px rgba(0,0,0,0.4);
}
.solution-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(192,192,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.solution-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.solution-text {
  color: var(--light);
  font-size: 1rem;
  line-height: 1.7;
}
.solution-text strong { color: var(--white); }

/* ================================================================
   SERVICES – BENTO GRID
================================================================ */
.services-section { background-color: var(--black); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  cursor: default;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 340px;
}

.bento-wide {
  grid-column: span 2;
}

.bento-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.bento-card:hover .bento-img { transform: scale(1.06); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 60%, transparent 100%);
  transition: background var(--transition);
}
.bento-card:hover .bento-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.2) 100%);
}

.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.bento-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.bento-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.bento-card:hover .bento-list {
  max-height: 120px;
  opacity: 1;
}
.bento-list li {
  color: var(--light);
  font-size: 0.88rem;
  padding: 0.2rem 0;
}
.bento-list li::before {
  content: '→ ';
  color: var(--accent);
}

/* Responsive bento */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-large { grid-column: span 2; }
  .bento-wide  { grid-column: span 2; }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
}

/* ================================================================
   WHY SECTION
================================================================ */
.why-section { background-color: var(--dark); }

.why-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(192,192,192,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.why-icon {
  font-size: 1.75rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ================================================================
   SOCIAL PROOF / GALLERY
================================================================ */
.proof-section { background-color: var(--black); }

.gallery-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mid);
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-img:hover img { transform: scale(1.04); }

.gallery-tall { height: 420px; }
.gallery-img:not(.gallery-tall) { height: 200px; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%);
  color: var(--light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ================================================================
   PROCESS SECTION
================================================================ */
.process-section { background-color: var(--dark); }

.process-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all var(--transition);
}
.process-card:hover {
  border-color: rgba(192,192,192,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.process-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(192,192,192,0.1);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.process-icon {
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.process-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ================================================================
   CONTACT FORM SECTION
================================================================ */
.form-section { background-color: var(--black); }

.contact-link {
  display: flex;
  align-items: center;
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.contact-link:last-child { border-bottom: none; }
.contact-link:hover { color: var(--accent); }

.trust-mini {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.trust-mini span {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 24px rgba(0,0,0,0.4);
}

.form-card-header {
  background: rgba(192,192,192,0.08);
  border: 1px solid rgba(192,192,192,0.25);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--light);
  margin-bottom: 1.75rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Dark form controls */
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-dark {
  background-color: var(--mid) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.95rem !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}
.form-dark::placeholder { color: var(--muted) !important; }
.form-dark:focus {
  border-color: rgba(232,192,74,0.5) !important;
  box-shadow: 0 0 0 3px rgba(232,192,74,0.12) !important;
  outline: none !important;
}
.form-dark option { background-color: var(--mid); color: var(--white); }

.form-secondary-cta {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--muted); }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-logo-img {
  max-width: 240px;
  margin: 0 auto;
}
.footer-logo-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-link {
  color: var(--light);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-link:hover {
  color: var(--accent);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.04em;
}

.footer-info {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.footer-contact-link {
  color: var(--light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--accent); }

.footer-divider {
  border-color: var(--border);
  opacity: 1;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================================================================
   FLOATING WHATSAPP BUTTON
================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2dd366 0%, #1fa854 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.2);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS
================================================================ */
@media (max-width: 991px) {
  .hero-section { background-attachment: scroll; }
  .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .solution-card { padding: 2rem; }
  .form-card { padding: 2rem; }
}

@media (max-width: 767px) {
  .hero-headline { font-size: 2.8rem; }
  .section-heading { font-size: 2rem; }
  .gallery-tall { height: 260px; }
  .gallery-img:not(.gallery-tall) { height: 160px; }
  .process-card { padding: 1.5rem 1rem; }
  .form-card { padding: 1.5rem; }
  .bento-card { min-height: 220px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .why-card { padding: 1.25rem; }
}

/* ================================================================
   UTILITY
================================================================ */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* Smooth reveal for sticky bar */
@media (max-width: 767px) {
  .sticky-cta { display: none !important; }
}


/* ================================================================
   FORM FOOTER STYLES
================================================================ */
.form-footer {
  background: rgba(192,192,192,0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-bottom: -2.5rem;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.contact-link {
  color: var(--light);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-block;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
