/* ==========================================================================
   GLORO SOLUTIONS - EXACT BRAND IDENTITY MOCKUP
   Primary Palette:
   - Gloro Blue: #1028F5
   - Deep Navy Accent: #081254
   - White: #FFFFFF
   - Card Backgrounds: #F8FAFF
   - WhatsApp Green: #25D366
   ========================================================================== */

:root {
  --gloro-blue: #1028F5;
  --gloro-blue-dark: #091cc7;
  --gloro-blue-soft: #EEF2FF;
  --gloro-blue-card: #F4F7FF;
  --gloro-text-dark: #0e1b38;
  --gloro-text-muted: #57657e;
  --gloro-text-light: #7b8ba5;
  --whatsapp: #25D366;
  --white: #FFFFFF;
  --border-light: #E4EAF8;
  --border-subtle: #EDF2FC;

  --shadow-card: 0 4px 16px rgba(16, 40, 245, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 12px 28px rgba(16, 40, 245, 0.12), 0 3px 8px rgba(0, 0, 0, 0.04);
  --shadow-cta: 0 14px 32px rgba(16, 40, 245, 0.28);

  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-handwritten: 'Caveat', cursive, sans-serif;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--gloro-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   AMBIENT BACKGROUND SHAPES & DECORATIONS
   ========================================================================== */
.bg-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.bg-shape-top-left {
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(16, 40, 245, 0.22) 0%, rgba(16, 40, 245, 0.08) 50%, transparent 70%);
  border-radius: 50%;
}

.bg-shape-top-ring {
  top: 60px;
  left: -80px;
  width: 220px;
  height: 220px;
  border: 32px solid rgba(16, 40, 245, 0.12);
  border-radius: 50%;
}

.bg-shape-bottom-right {
  bottom: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(16, 40, 245, 0.18) 0%, rgba(16, 40, 245, 0.04) 60%, transparent 80%);
  border-radius: 50%;
}

/* Corner badge bottom right */
.bottom-corner-accent {
  position: fixed;
  bottom: -60px;
  right: -60px;
  width: 170px;
  height: 170px;
  background-color: var(--gloro-blue);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 42px;
  padding-bottom: 42px;
  box-shadow: 0 8px 24px rgba(16, 40, 245, 0.3);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .bottom-corner-accent {
    display: none; /* Hide on mobile/tablet viewports so it never obscures footer copyright */
  }
}

.bottom-corner-accent span {
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

/* Handwritten Notes (Top-Right & Center-Right) */
.handwritten-badge {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-handwritten);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #3b5080;
}

.handwritten-badge.top-right {
  top: 38px;
  right: min(10vw, 80px);
  text-align: left;
  transform: rotate(6deg);
  font-size: 1.15rem;
}

.handwritten-badge.top-right .highlight {
  font-weight: 700;
  color: var(--gloro-blue);
}

.handwritten-badge.center-right {
  top: 340px;
  right: min(6vw, 55px);
  text-align: center;
  transform: rotate(8deg);
  font-size: 1.5rem;
  color: var(--gloro-blue);
}

.handwritten-badge .italic-lead {
  font-weight: 600;
}

.handwritten-badge .italic-bold {
  font-weight: 700;
  font-size: 1.7rem;
}

.handwritten-curve {
  width: 55px;
  height: 12px;
  color: var(--gloro-blue);
  margin-top: 2px;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.page-wrapper {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   HEADER & TRUST BAR
   ========================================================================== */
.header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 26px;
  width: 100%;
}

.logo-container {
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(16, 40, 245, 0.28), 0 0 0 4px rgba(255, 255, 255, 0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  animation: logoPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  cursor: pointer;
}

.logo-container:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 18px 38px rgba(16, 40, 245, 0.36), 0 0 0 5px rgba(255, 255, 255, 1);
}

.logo-container:active {
  transform: translateY(0) scale(0.98);
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.65) translateY(-10px);
  }
  70% {
    transform: scale(1.06) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.tagline-sub {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gloro-text-dark);
  margin-bottom: 12px;
}

.brand-description {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gloro-text-muted);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 18px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gloro-text-dark);
}

.trust-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.divider {
  color: #C8D3EB;
  font-size: 0.8rem;
}

/* ==========================================================================
   PRIMARY ACTION CARDS
   ========================================================================== */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.link-card {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 14px 20px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.card-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon-bubble.bg-blue {
  background-color: var(--gloro-blue);
}

.card-icon-bubble.bg-whatsapp {
  background-color: var(--whatsapp);
}

.card-icon-bubble svg {
  width: 26px;
  height: 26px;
}

.card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gloro-text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--gloro-text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.card-subtitle.text-blue {
  color: var(--gloro-blue);
  font-weight: 600;
}

.card-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 10px;
  transition: var(--transition);
}

/* Card Hover Interactions */
.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD9FB;
}

.link-card:hover .card-arrow {
  transform: translateX(4px);
}

.link-card:active {
  transform: translateY(1px);
}

.link-card:focus-visible {
  outline: 3px solid var(--gloro-blue);
  outline-offset: 2px;
}

/* ==========================================================================
   SERVICES SECTION (WHAT WE DO)
   ========================================================================== */
.services-section {
  width: 100%;
  margin-bottom: 34px;
}

.services-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 16px;
}

.services-title-col .sub-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gloro-blue);
  margin-bottom: 2px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gloro-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-title .highlight-text {
  color: var(--gloro-blue);
}

.title-line {
  display: inline-block;
  width: 55px;
  height: 2px;
  background-color: var(--gloro-text-dark);
  margin-left: 10px;
  vertical-align: middle;
}

.services-headline-desc {
  font-size: 0.86rem;
  color: var(--gloro-text-muted);
  max-width: 210px;
  text-align: right;
  line-height: 1.4;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-box {
  background-color: #F8FAFF;
  border: 1px solid #E8EEFB;
  border-radius: 18px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  min-height: 125px;
}

.service-box:hover {
  background-color: var(--white);
  border-color: #CBD9FB;
  box-shadow: 0 8px 20px rgba(16, 40, 245, 0.08);
  transform: translateY(-2px);
}

.service-icon-wrap {
  margin-bottom: 12px;
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  display: block;
}

.service-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gloro-text-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.service-desc {
  font-size: 0.74rem;
  color: var(--gloro-text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* ==========================================================================
   FEATURED BLUE CTA CARD
   ========================================================================== */
.featured-cta-card {
  width: 100%;
  margin-bottom: 38px;
}

.cta-inner {
  background-color: var(--gloro-blue);
  background-image: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border-radius: 24px;
  padding: 26px 28px;
  color: var(--white);
  box-shadow: var(--shadow-cta);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 6px;
}

.cta-title {
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-perks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.perk {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.check {
  font-weight: 800;
  font-size: 0.85rem;
}

.cta-start-btn {
  background-color: var(--white);
  color: var(--gloro-blue);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.cta-start-btn .btn-arrow {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.cta-start-btn:hover {
  background-color: #F8FAFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.cta-start-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   FOLLOW US / SOCIAL MEDIA SECTION
   ========================================================================== */
.socials-section {
  width: 100%;
  margin-bottom: 34px;
  text-align: center;
}

.socials-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.decor-line {
  width: 48px;
  height: 2px;
  background-color: var(--gloro-blue);
  opacity: 0.75;
}

.socials-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gloro-blue);
  letter-spacing: -0.01em;
}

.social-links-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  transition: var(--transition);
}

.social-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.social-circle svg {
  width: 24px;
  height: 24px;
}

/* Brand Specific Colors for Social Circles */
.circle-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.circle-facebook {
  background-color: #1877F2;
}

.circle-linkedin {
  background-color: #0A66C2;
}

.circle-pinterest {
  background-color: #E60023;
}

.circle-youtube {
  background-color: #FF0000;
}

.social-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gloro-text-dark);
}

.social-unit:hover {
  transform: translateY(-3px);
}

.social-unit:hover .social-circle {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #E4EAF8;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 5;
}

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

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--gloro-text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gloro-blue);
  text-decoration: underline;
}

.footer-icon {
  width: 15px;
  height: 15px;
  stroke: var(--gloro-blue);
}

.footer-sep {
  color: #C8D3EB;
  font-size: 0.8rem;
}

.copyright {
  font-size: 0.84rem;
  font-weight: 600;
  color: #3b4d68;
  letter-spacing: -0.01em;
  margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE DESIGN / BREAKPOINTS
   ========================================================================== */
@media (max-width: 600px) {
  .page-wrapper {
    padding: 30px 14px 50px;
  }

  .handwritten-badge {
    display: none; /* Hide floating text notes on compact mobile screens */
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .services-headline-desc {
    text-align: left;
    max-width: 100%;
  }

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }

  .cta-btn-wrap {
    width: 100%;
  }

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

  .social-links-grid {
    gap: 16px;
  }

  .social-circle {
    width: 46px;
    height: 46px;
  }

  .social-circle svg {
    width: 20px;
    height: 20px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 8px;
  }

  .footer-sep {
    display: none;
  }
}
