/* =========================================================
   style.css – Writer Worldwide Relocations
   Premium Yellow / White / Black Theme
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --yellow: #feb811;
  --yellow-dark: #e0a50c;
  --yellow-light: #fff3cc;
  --black: #111111;
  --dark: #1a1a1a;
  --dark-2: #2b2b2b;
  --white: #ffffff;
  --cream: #fdf8f0;
  --grey-light: #f4f4f4;
  --grey-mid: #e0e0e0;
  --text-main: #1c1c1c;
  --text-body: #4a4a4a;
  --text-muted: #888888;
  --border: #e8e4dc;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.28s ease;
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, 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-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ---- Container ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-weight: 700;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,184,17,0.4);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-full { width: 100%; justify-content: center; padding: 16px; }

/* ---- Section Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 16px;
}
.bg-dark .section-heading, .bg-dark .section-label { color: var(--white); }
.bg-dark .section-label { background: rgba(254,184,17,0.18); color: var(--yellow); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}
.bg-dark .section-sub { color: rgba(255,255,255,0.7); }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header.light .section-heading { color: var(--white); }
.section-cta-row {
  text-align: center;
  margin-top: 40px;
}

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.header-top {
  background: var(--black);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  padding: 7px 0;
}
.header-top-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-top-inner i { color: var(--yellow); margin-right: 5px; font-size: 0.78rem; }
.header-top-inner a { color: var(--yellow); font-weight: 600; }
.header-cta-top { margin-left: auto; }

.navbar { padding: 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 1.05rem;
  color: var(--black);
}
.logo-text span { color: var(--yellow-dark); font-weight: 800; }
.logo-text small { font-size: 0.68rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.05em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--yellow-dark);
  background: var(--yellow-light);
}
.nav-links .nav-btn {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
}
.nav-links .nav-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(254,184,17,0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero-section {
  background: var(--yellow);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.18) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { padding-right: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.1);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.hero-headline .highlight {
  color: var(--white);
  -webkit-text-stroke: 1.5px var(--black);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.72);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
}
.hero-trust-row i { color: var(--black); margin-right: 5px; }

.hero-form-wrap { animation: slideInRight 0.6s ease; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254,184,17,0.2);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-success, .form-error {
  display: none;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
}
.form-success { background: #d4edda; color: #155724; }
.form-error { background: #f8d7da; color: #721c24; }

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  animation: bounceDown 1.4s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===========================================================
   TRUST STATS
   =========================================================== */
.trust-stats {
  background: var(--black);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat-plus {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
}
.stat-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 500;
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-block {
  position: relative;
}
.about-img-main img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 130px;
}
.about-badge-card i { font-size: 1.8rem; color: var(--black); margin-bottom: 6px; }
.about-badge-card strong { font-size: 1.3rem; font-weight: 800; color: var(--black); }
.about-badge-card span { font-size: 0.75rem; color: rgba(0,0,0,0.65); font-weight: 500; }
.about-img-small {
  display: none;
}
.about-content p {
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.about-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
}
.about-point i { color: var(--yellow-dark); font-size: 1rem; }

/* ===========================================================
   SERVICES
   =========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: block;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .service-img img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }
.service-card .service-icon {
  position: absolute;
  top: 152px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 20px 18px 8px;
  font-family: var(--font-display);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 0 18px 12px;
  line-height: 1.6;
}
.card-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--yellow-dark);
  padding: 8px 18px 18px;
  transition: var(--transition);
}
.service-card:hover .card-link { gap: 10px; }
.featured-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
}

/* ===========================================================
   WHY CHOOSE US
   =========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}
.why-content > p {
  color: var(--text-body);
  margin-bottom: 32px;
  font-size: 1.02rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}
.why-image-block img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
}
.why-cta-block {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.why-cta-block p {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--black);
}

/* ===========================================================
   INTERNATIONAL
   =========================================================== */
.intl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.intl-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.intl-card:hover {
  background: rgba(254,184,17,0.1);
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.intl-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.intl-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.intl-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.intl-destinations {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.intl-destinations p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  font-weight: 500;
}
.destinations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.destinations-row span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 40px;
  transition: var(--transition);
}
.destinations-row span:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ===========================================================
   PROCESS
   =========================================================== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow-light);
  line-height: 1;
  margin-bottom: 4px;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(254,184,17,0.3);
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
}
.process-connector {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  margin-top: 58px;
  flex-shrink: 0;
}

/* ===========================================================
   BRANCH STRIP
   =========================================================== */
.branch-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.branch-city {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  cursor: pointer;
}
.branch-city i { color: var(--yellow-dark); }
.branch-city:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(254,184,17,0.3);
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar p {
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.75;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--yellow); }
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}
.faq-item.active .faq-question {
  background: var(--yellow-light);
  color: var(--black);
}
.faq-question i { font-size: 0.85rem; transition: transform 0.28s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-card > p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; font-weight: 700; }
.reviewer span { font-size: 0.78rem; color: var(--text-muted); }

/* ===========================================================
   BLOG
   =========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.blog-img { position: relative; overflow: hidden; }
.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-content { padding: 22px; }
.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-content p {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow-dark);
  transition: var(--transition);
}
.blog-card:hover .blog-link { gap: 10px; }

/* ===========================================================
   CTA STRIP
   =========================================================== */
.cta-strip {
  background: var(--yellow);
  padding: 44px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.cta-strip p {
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
}
.cta-strip-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; filter: brightness(10); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-mark { background: var(--yellow); filter: none; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-contact-info a:hover { color: var(--yellow); }
.footer-contact-info i { color: var(--yellow); font-size: 0.85rem; }
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--yellow);
  font-weight: 700;
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--yellow); }

/* ===========================================================
   FLOATING BUTTONS
   =========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 86px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

.call-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(254,184,17,0.4);
  z-index: 999;
}
.site-logo{
  height:70px;
  width:100%;
  display:block;
}

@media(max-width:768px){
  .site-logo{
    height:68px;
  }
}