/* ========================================
   KEYMASTER — Main Stylesheet
   Colors: Navy #0d1b3e | Red #d42b2b | Silver #c8cdd8
   ======================================== */

:root {
  --navy:    #0d1b3e;
  --navy2:   #152550;
  --red:     #d42b2b;
  --red-h:   #b81f1f;
  --silver:  #c8cdd8;
  --white:   #ffffff;
  --gray:    #f4f5f8;
  --text:    #1a2340;
  --text-lt: #5a6580;
  --wa:      #25d366;
  --wa-h:    #1ab755;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(13,27,62,0.13);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-h); border-color: var(--red-h); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
}
.btn-wa:hover { background: var(--wa-h); border-color: var(--wa-h); }

.btn-lg { padding: 15px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HELPERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-lt);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: var(--silver); }

.section-tag {
  display: inline-block;
  background: rgba(212,43,43,0.12);
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--silver);
}

.accent { color: var(--red); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.nav-logo {
  height: 68px;
  width: auto;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links a {
  color: var(--silver);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.92;
  transition: opacity .2s;
}
.nav-phone:hover { opacity: 1; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  padding: 16px 20px 20px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: var(--silver);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.mobile-menu .mobile-phone {
  color: var(--red) !important;
  font-size: 1.05rem;
  margin-top: 8px;
}
.mobile-menu .mobile-wa {
  background: var(--wa) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: 50px;
  margin-top: 4px;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 80px;
}
/* Animated gear background hint */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 60%, rgba(212,43,43,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 90% 50% at 80% 20%, rgba(200,205,216,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(200,205,216,0.08)"/></svg>') repeat;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(212,43,43,0.35), 0 0 0 2px rgba(200,205,216,0.15);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 40px rgba(212,43,43,0.3), 0 0 0 2px rgba(200,205,216,0.1); }
  50%      { box-shadow: 0 0 80px rgba(212,43,43,0.55), 0 0 0 2px rgba(200,205,216,0.25); }
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--silver);
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--silver);
  font-size: 1.3rem;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===== SERVICES ===== */
#services {
  padding: 96px 0;
  background: var(--gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--red);
  box-shadow: 0 12px 40px rgba(13,27,62,0.18);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red) 0%, #9b1515 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.service-card p {
  font-size: 0.97rem;
  color: var(--text-lt);
  line-height: 1.7;
}

/* ===== WHY US ===== */
#why-us {
  padding: 96px 0;
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px 40px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 48px;
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}
.why-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.65;
}

/* ===== CTA BAND ===== */
#cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #9b1515 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
}
.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-top: 6px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.cta-actions .btn-primary:hover { background: var(--gray); border-color: var(--gray); }

/* ===== CONTACT ===== */
#contact {
  padding: 96px 0;
  background: var(--gray);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 32px rgba(13,27,62,0.15);
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.phone-icon { background: linear-gradient(135deg, var(--red) 0%, #9b1515 100%); }
.wa-icon    { background: linear-gradient(135deg, #25d366 0%, #128c4e 100%); }
.mail-icon  { background: linear-gradient(135deg, #4a90d9 0%, #1a5fa8 100%); }
.waze-icon  { background: linear-gradient(135deg, #05c8f0 0%, #0492b0 100%); }
.addr-icon  { background: linear-gradient(135deg, #f07b3f 0%, #c0532a 100%); }

.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-lt);
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e0e4ef;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  direction: rtl;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-success {
  background: #e6f9ee;
  color: #1a7a3e;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-error {
  background: #fde8e8;
  color: var(--red);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== HUBSPOT FORM OVERRIDES ===== */
#hubspot-form-wrapper { direction: rtl; }
#hubspot-form-wrapper .hs-form-private { background: transparent; }
#hubspot-form-wrapper .hs-form-field { margin-bottom: 16px; }
#hubspot-form-wrapper .hs-form-field label { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
#hubspot-form-wrapper .hs-input,
#hubspot-form-wrapper textarea.hs-input {
  width: 100% !important;
  border: 2px solid #e0e4ef;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Heebo', 'Assistant', Arial, sans-serif;
  direction: rtl;
  transition: border-color .2s;
  box-sizing: border-box;
  color: var(--navy);
}
#hubspot-form-wrapper .hs-input:focus,
#hubspot-form-wrapper textarea.hs-input:focus { outline: none; border-color: var(--red); }
#hubspot-form-wrapper textarea.hs-input { min-height: 110px; resize: vertical; }
#hubspot-form-wrapper .hs-error-msgs { list-style: none; padding: 0; margin: 4px 0 0; color: var(--red); font-size: 0.82rem; }
#hubspot-form-wrapper .hs-button,
#hubspot-form-wrapper input[type="submit"] {
  width: 100%;
  display: block;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Heebo', 'Assistant', Arial, sans-serif;
  text-align: center;
  margin-top: 8px;
}
#hubspot-form-wrapper .hs-button:hover,
#hubspot-form-wrapper input[type="submit"]:hover { background: var(--red-h); }
#hubspot-form-wrapper .actions { text-align: center; }
#hubspot-form-wrapper .submitted-message {
  background: #e6f9ee;
  color: #1a7a3e;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--navy);
  color: var(--silver);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.3fr;
  gap: 48px;
  padding: 64px 0 40px;
}
.footer-logo {
  height: 80px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 14px;
}
.footer-logo-block p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.65;
  margin-top: 8px;
}
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact h4,
.footer-social h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-contact a {
  font-size: 0.93rem;
  color: var(--silver);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.footer-contact a:hover { color: var(--red); }
.footer-contact a i { width: 16px; text-align: center; }

.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.social-btn.fb   { background: #1877f2; }
.social-btn.ig   { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.wa   { background: var(--wa); }
.social-btn.waze { background: #05c8f0; }
.social-note {
  font-size: 0.78rem;
  color: rgba(200,205,216,0.5);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.87rem;
  color: rgba(200,205,216,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pop 1.5s ease 2s both;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes wa-pop {
  0%   { transform: scale(0); opacity: 0; }
  80%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SERVICE CARD LINK ===== */
.service-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover .service-link { gap: 10px; }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 96px 0;
  background: var(--gray);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  color: rgba(212,43,43,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #f5a623; font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-lt);
  line-height: 1.75;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-lt);
}

/* ===== SERVICE AREAS ===== */
#areas {
  padding: 96px 0;
  background: var(--navy);
}
#areas .section-header h2 { color: var(--white); }
#areas .section-header p  { color: var(--silver); }
#areas .section-tag { background: rgba(255,255,255,0.12); color: var(--silver); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.area-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: var(--red);
}
.area-card-more { cursor: default; }
.area-card-more:hover { transform: none; border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); }
.area-icon {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 12px;
}
.area-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.area-time {
  font-size: 0.83rem;
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.area-badge {
  position: absolute;
  top: -10px;
  right: 50%;
  transform: translateX(50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== BLOG SECTION ===== */
#blog {
  padding: 96px 0;
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  border: 1px solid #eaecf3;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,62,0.15);
}
.blog-card-icon {
  height: 120px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255,255,255,0.3);
}
.blog-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-tag {
  display: inline-block;
  background: rgba(212,43,43,0.1);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  align-self: flex-start;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}
.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.65;
  flex: 1;
}
.blog-read {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.blog-card:hover .blog-read { gap: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions { justify-content: center; }
}

@media (max-width: 600px) {
  #services, #why-us, #contact,
  #testimonials, #areas, #blog { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  .services-grid,
  .why-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 0 32px;
  }
  .hero-logo { width: 140px; height: 140px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .contact-form { padding: 24px 18px; }
  .wa-float { bottom: 16px; left: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
}
