/* ═══════════════════════════════════════════════════
   WE WAVE — SHARED STYLESHEET
   style.css
   ═══════════════════════════════════════════════════ */

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

/* ─── VARIABLES ─── */
:root {
  --orange:       #FF8C00;
  --orange-light: #FFA500;
  --orange-dark:  #E07000;
  --blue:         #4A4FC4;
  --blue-dark:    #3A3FA0;
  --blue-light:   #6468D4;
  --black:        #0A0A0A;
  --dark:         #111118;
  --dark2:        #1A1A28;
  --white:        #FFFFFF;
  --gray:         #8888AA;
  --grad-orange:  linear-gradient(135deg, #FF8C00, #FFA500, #FFB347);
  --grad-blue:    linear-gradient(135deg, #4A4FC4, #6468D4);
  --grad-both:    linear-gradient(135deg, #FF8C00 0%, #FFA500 40%, #4A4FC4 100%);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }
p { font-family: 'Open Sans', sans-serif; line-height: 1.7; color: #CCCCDD; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
section { padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; }

/* ─── TYPOGRAPHY HELPERS ─── */
.section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title span {
  background: var(--grad-both);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub { max-width: 600px; margin-bottom: 60px; font-size: 1.05rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--grad-orange);
  color: var(--black);
  box-shadow: 0 6px 25px rgba(255,140,0,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,140,0,0.55); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--orange-light); color: var(--orange-light); transform: translateY(-3px); }
.btn-blue {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(74,79,196,0.4);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(74,79,196,0.55); }

/* ─── WAVE DIVIDER ─── */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,18,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74,79,196,0.25);
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}
nav.scrolled { background: rgba(10,10,18,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.logo-wrap { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.logo-wrap img { height: 65px; width: auto; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; }
.logo-text span:first-child { color: var(--blue); }
.logo-text span:last-child { background: var(--grad-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.95rem;
  color: #CCCCDD; position: relative; transition: color 0.3s; cursor: pointer;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--grad-orange); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--grad-orange); color: var(--black); border: none;
  padding: 10px 24px; border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,140,0,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,140,0,0.5); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--white); background: none; border: none; }

/* ─── PAGE BANNER (shared inner pages) ─── */
.page-banner {
  padding: 160px 5% 80px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(74,79,196,0.15) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-banner h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; }
.page-banner p { max-width: 600px; margin: 16px auto 0; font-size: 1.05rem; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--gray); margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}
.breadcrumb .sep,
.breadcrumb .cur { color: var(--orange-light); }

/* ─── BADGES ─── */
.badge {
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem;
  font-family: 'Poppins', sans-serif; font-weight: 600;
  border: 1px solid; cursor: default; transition: transform 0.3s;
}
.badge:hover { transform: translateY(-3px); }
.badge-blue { background: rgba(74,79,196,0.15); border-color: rgba(74,79,196,0.4); color: var(--blue-light); }
.badge-orange { background: rgba(255,140,0,0.1); border-color: rgba(255,140,0,0.35); color: var(--orange-light); }

/* ─── SERVICE CARDS (shared small) ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 36px 28px;
  transition: all 0.4s; cursor: default; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s, box-shadow 0.4s; }
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s; border-radius: 20px;
}
.service-card:nth-child(odd)::before  { background: linear-gradient(135deg, rgba(255,140,0,0.07), transparent); }
.service-card:nth-child(even)::before { background: linear-gradient(135deg, rgba(74,79,196,0.1), transparent); }
.service-card:hover { transform: translateY(-8px) !important; border-color: rgba(255,140,0,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }

.svc-icon {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.svc-icon.orange { background: rgba(255,140,0,0.15); color: var(--orange-light); }
.svc-icon.blue   { background: rgba(74,79,196,0.15);  color: var(--blue-light); }
.svc-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.svc-desc  { font-size: 0.9rem; color: var(--gray); }

/* ─── FOOTER ─── */
footer {
  background: #060610; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 5% 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 20px; color: var(--white); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: var(--gray); font-size: 0.9rem; transition: color 0.3s; cursor: pointer; font-family: 'Open Sans', sans-serif; }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.85rem; color: var(--gray); }

/* ─── SOCIAL BUTTONS ─── */
.social-row { display: flex; gap: 14px; margin-top: 10px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  text-decoration: none; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { transform: translateY(-4px); }
.fb { background: rgba(24,119,242,0.15); color: #1877f2; border-color: rgba(24,119,242,0.3); }
.ig { background: rgba(225,48,108,0.15); color: #e1306c; border-color: rgba(225,48,108,0.3); }
.li { background: rgba(10,102,194,0.15); color: #0a66c2; border-color: rgba(10,102,194,0.3); }
.fb:hover { background: #1877f2; color: white; }
.ig:hover { background: #e1306c; color: white; }
.li:hover { background: #0a66c2; color: white; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  animation: waPulse 2.5s infinite; transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,140,0,0.15); border: 1px solid rgba(255,140,0,0.35);
  color: var(--orange-light); font-size: 1rem;
  display: none; align-items: center; justify-content: center; transition: all 0.3s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--orange-light); color: var(--black); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30,30,50,0.95); border: 1px solid rgba(255,140,0,0.3);
  border-radius: 14px; padding: 14px 28px; font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; color: var(--white); z-index: 9999;
  opacity: 0; transition: all 0.4s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── GET QUOTE POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px); z-index: 9998; display: none;
  align-items: center; justify-content: center;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--dark2); border: 1px solid rgba(255,140,0,0.25);
  border-radius: 28px; padding: 50px 44px; max-width: 520px; width: 90%;
  position: relative; animation: popIn 0.4s ease;
}
@keyframes popIn { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:scale(1); } }
.popup-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 1.3rem; color: var(--gray); cursor: pointer; transition: color 0.3s;
  background: none; border: none;
}
.popup-close:hover { color: var(--white); }
.popup-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.popup-sub { font-size: 0.9rem; margin-bottom: 28px; }

/* ─── FORMS (shared) ─── */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 0.85rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: #AAAACC; margin-bottom: 8px; display: block; }
.form-input,
.form-textarea {
  width: 100%; padding: 14px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Open Sans', sans-serif; font-size: 0.95rem;
  transition: all 0.3s; outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange-light); background: rgba(255,140,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,140,0,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }

/* ─── ANIMATIONS ─── */
@keyframes slideIn  { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes float1   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-15px); } }
@keyframes float2   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(12px); } }
@keyframes float3   { 0%,100% { transform:translate(-50%,-50%) rotate(-2deg); } 50% { transform:translate(-50%,-55%) rotate(2deg); } }
@keyframes barGrow  { from { width:0; } }
@keyframes pulse    { 0%,100% { transform:scale(1); } 50% { transform:scale(1.3); } }
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%; }
  33%      { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
  66%      { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
}
@keyframes float-particle {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50%      { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

/* ─── SCROLL ANIMATION CLASSES ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .story-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  section { padding: 70px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
.about-blob img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
