/* ============================================================
   SIDHAN IT SERVICES — Main Stylesheet
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --orange: #FF6B35;
  --orange-dark: #e85a24;
  --orange-light: #fff3ee;
  --navy: #1A2332;
  --navy-light: #243044;
  --text: #2d2d2d;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --green: #25D366;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all .25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { color: var(--text-muted); line-height: 1.7; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- Section Headings ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 540px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .95rem; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,53,.35); }
.btn-outline { border: 2px solid var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--orange-light); color: var(--orange); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-sm { padding: 9px 20px; font-size: .875rem; }

/* ---- Badge ---- */
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.badge-orange { background: var(--orange-light); color: var(--orange); }

/* ---- Cards ---- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

/* ---- Grid helpers ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,35,50,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; max-width: 1200px; margin: 0 auto; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .logo-icon {
  width: 42px; height: 42px; background: var(--orange); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.nav-logo .logo-name { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; border-radius: var(--radius-sm); color: rgba(255,255,255,.8);
  font-size: .9rem; font-weight: 500; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-whatsapp {
  display: flex; align-items: center; gap: 6px; background: var(--green);
  color: #fff; padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600; transition: var(--transition);
}
.nav-whatsapp:hover { background: #1fb855; }
.nav-whatsapp svg { width: 16px; height: 16px; fill: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 22px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); width: 22px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); width: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-bg .circle {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(255,107,53,.03));
  animation: float 8s ease-in-out infinite;
}
.hero-bg .circle-1 { width: 600px; height: 600px; right: -100px; top: -100px; animation-delay: 0s; }
.hero-bg .circle-2 { width: 400px; height: 400px; right: 200px; bottom: -100px; animation-delay: -4s; }
.hero-bg .circle-3 { width: 200px; height: 200px; left: 10%; top: 30%; animation-delay: -2s; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.03); } }

.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; min-height: calc(100vh - 70px); }
.hero-content { padding: 60px 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,53,.15);
  border: 1px solid rgba(255,107,53,.3); color: var(--orange);
  padding: 8px 18px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 span { color: var(--orange); }
.hero-content > p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .num span { color: var(--orange); }
.hero-stat p { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-stack { position: relative; width: 380px; height: 420px; }
.hero-card-main {
  position: absolute; left: 0; top: 60px; width: 320px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 28px;
}
.hero-card-main .card-icon { width: 52px; height: 52px; background: var(--orange); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hero-card-main .card-icon svg { width: 26px; height: 26px; fill: #fff; }
.hero-card-main h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.hero-card-main p  { color: rgba(255,255,255,.6); font-size: .85rem; }
.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: 16px 20px;
}
.hero-card-float.f1 { right: 0; top: 0; }
.hero-card-float.f2 { right: 20px; bottom: 30px; }
.float-label { font-size: .7rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.float-value { font-size: 1.1rem; font-weight: 700; color: #fff; }
.float-value.green { color: #4ade80; }

/* ============================================================
   MARQUEE (Trust strip)
   ============================================================ */
.trust-strip { background: var(--orange); padding: 14px 0; overflow: hidden; }
.trust-strip-inner { display: flex; gap: 48px; animation: marquee 20s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: .9rem; }
.trust-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,.8); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-soft); }
.service-card { position: relative; overflow: hidden; }
.service-card .svc-icon {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  background: var(--orange-light); transition: var(--transition);
}
.service-card .svc-icon svg { width: 28px; height: 28px; fill: var(--orange); transition: var(--transition); }
.service-card:hover .svc-icon { background: var(--orange); }
.service-card:hover .svc-icon svg { fill: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p  { font-size: .9rem; margin-bottom: 20px; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: .875rem; font-weight: 600; transition: var(--transition);
}
.service-card .learn-more:hover { gap: 10px; }
.service-card .learn-more svg { width: 14px; height: 14px; fill: var(--orange); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--navy); }
.why-us .section-header .tag { background: rgba(255,107,53,.2); }
.why-us .section-header h2 { color: #fff; }
.why-us .section-header p  { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 20px; }
.why-item .wi-icon {
  width: 52px; height: 52px; background: rgba(255,107,53,.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-item .wi-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.why-item h4 { color: #fff; margin-bottom: 4px; }
.why-item p  { color: rgba(255,255,255,.6); font-size: .9rem; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.stat-card .stat-num { font-size: 2.4rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.stat-card p { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { position: relative; padding: 32px; }
.testi-card .quote-icon { font-size: 4rem; color: var(--orange); line-height: 1; opacity: .3; margin-bottom: 8px; }
.testi-card p { font-style: italic; color: var(--text); font-size: .95rem; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testi-author h5 { font-size: .95rem; margin-bottom: 2px; }
.testi-author span { font-size: .8rem; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #ff4500 100%);
  padding: 72px 0; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--navy); padding: 140px 0 80px; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 540px; margin: 0 auto 24px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.5); }
.breadcrumb a { color: var(--orange); }

.about-story { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-box {
  background: var(--navy); border-radius: 20px; padding: 40px;
  display: flex; align-items: center; justify-content: center; min-height: 380px;
}
.about-img-illustration { text-align: center; }
.about-img-illustration svg { width: 160px; height: 160px; fill: var(--orange); opacity: .8; }
.about-img-illustration p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 16px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: #fff; padding: 20px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.about-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge p  { font-size: .8rem; opacity: .85; margin-top: 4px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-value { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: var(--bg-soft); border-radius: var(--radius-sm); border-left: 3px solid var(--orange); }
.about-value svg { width: 22px; height: 22px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }
.about-value h4 { font-size: .95rem; margin-bottom: 2px; }
.about-value p  { font-size: .85rem; }

.team-section { background: var(--bg-soft); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-size: 1.8rem; font-weight: 800; color: var(--orange);
  border: 3px solid var(--orange-light);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--orange); font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: .875rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail { background: var(--bg); }

/* Offset anchor scroll so fixed navbar doesn't cover sections */
.svc-detail-card[id] { scroll-margin-top: 90px; }

.svc-detail-card {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
  padding: 32px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); box-shadow: var(--shadow-sm); transition: var(--transition);
  margin-bottom: 24px;
}
.svc-detail-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.svc-detail-icon {
  width: 64px; height: 64px; background: var(--orange); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.svc-detail-icon svg { width: 30px; height: 30px; fill: #fff; }
.svc-detail-body h3 { margin-bottom: 8px; }
.svc-detail-body p { margin-bottom: 16px; font-size: .9rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { background: var(--orange-light); color: var(--orange); padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; }

.pricing-section { background: var(--bg-soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pricing-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; transition: var(--transition); position: relative;
}
.pricing-card.popular { border-color: var(--orange); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; padding: 5px 20px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.pricing-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.price { margin: 20px 0; }
.price .amount { font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.price .period { color: var(--text-muted); font-size: .85rem; }
.pricing-features { list-style: none; margin-bottom: 28px; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 20px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; }
.ci-icon { width: 46px; height: 46px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.ci-body label { font-size: .75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.ci-body p { font-size: .95rem; color: var(--text); font-weight: 500; }
.wa-button {
  display: flex; align-items: center; gap: 12px; background: var(--green);
  color: #fff; padding: 16px 24px; border-radius: var(--radius); font-weight: 600;
  font-size: 1rem; transition: var(--transition); margin-bottom: 32px; width: fit-content;
}
.wa-button:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.wa-button svg { width: 24px; height: 24px; fill: #fff; }
.map-embed { border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; border: none; border-radius: var(--radius); }

.contact-form-card { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { font-size: .9rem; margin-bottom: 28px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-label .req { color: var(--orange); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--text);
  background: var(--bg-soft); transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,53,.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-input.error, .form-textarea.error { border-color: #ef4444; }
.field-error { font-size: .8rem; color: #ef4444; margin-top: 4px; }
.form-success {
  display: none; align-items: center; gap: 12px; background: #ecfdf5;
  border: 1px solid #a7f3d0; border-radius: var(--radius-sm); padding: 14px 18px;
  margin-bottom: 20px; color: #065f46; font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; fill: #10b981; flex-shrink: 0; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { display: flex; flex-direction: column; }
.blog-thumb {
  background: var(--navy); border-radius: var(--radius) var(--radius) 0 0;
  height: 180px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.blog-thumb-icon { width: 64px; height: 64px; fill: rgba(255,107,53,.6); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 12px; font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-meta .cat { color: var(--orange); font-weight: 600; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-body p  { font-size: .875rem; flex: 1; margin-bottom: 16px; }
.read-more { color: var(--orange); font-size: .875rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--navy); padding: 60px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.newsletter-text h3 { color: #fff; margin-bottom: 6px; }
.newsletter-text p  { color: rgba(255,255,255,.6); }
.newsletter-form { display: flex; gap: 0; max-width: 420px; flex: 1; }
.newsletter-form input {
  flex: 1; padding: 14px 18px; border: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font); font-size: .95rem; outline: none; background: rgba(255,255,255,.1);
  color: #fff; border: 1px solid rgba(255,255,255,.15); border-right: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0f1623; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .f-logo-icon { width: 40px; height: 40px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.footer-brand .f-logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.footer-brand .f-logo-name { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-link:hover { background: var(--orange); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.social-link:hover svg { fill: #fff; }
.footer-col h5 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom a { color: var(--orange); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff; padding: 14px 20px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition); animation: waBounce 2s ease-in-out 3s 3;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 22px; height: 22px; fill: #fff; }
@keyframes waBounce { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-8px); } 60% { transform: translateY(-4px); } }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999; width: 44px; height: 44px;
  background: var(--navy); color: #fff; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; cursor: pointer; opacity: 0;
  transform: translateY(20px); transition: var(--transition); box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange); }
.scroll-top svg { width: 18px; height: 18px; fill: #fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
