/* ===========================
   ADVANCED ESTIMATING SOLUTIONS
   Main Stylesheet
=========================== */

:root {
  --primary: #E8820C;
  --primary-dark: #c96e08;
  --primary-light: #ffa033;
  --secondary: #1A2B3C;
  --secondary-light: #243647;
  --accent: #F5A623;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #666;
  --bg-light: #f7f8fa;
  --border: #e2e6ea;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --radius: 10px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  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; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.13); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 120px;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: rgba(232,130,12,0.07); }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--secondary);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,43,60,0.92) 0%, rgba(26,43,60,0.70) 55%, rgba(26,43,60,0.40) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.hero-content h1 span { color: var(--primary-light); }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,130,12,0.35); }
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: white; color: var(--secondary); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--primary);
  color: white;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 1rem;
}
.intro-strip strong { font-weight: 700; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--text-light); font-size: 1rem; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--primary);
  transition: height 0.3s;
  border-radius: 0 0 4px 0;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.service-card p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 1rem; }
.card-link { color: var(--primary); font-weight: 700; font-size: 0.9rem; transition: gap 0.2s; }
.card-link:hover { color: var(--primary-dark); }

/* ===== WHY US ===== */
.why-us { background: var(--bg-light); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.why-image img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.why-badge-float {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--primary);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-num { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.why-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.why-content > p { color: var(--text-light); margin-bottom: 0.5rem; }

.why-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text); }
.check { color: var(--primary); font-weight: 700; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ===== PROCESS ===== */
.process-section { background: var(--secondary); }
.process-section .section-head h2 { color: white; }
.process-section .section-tag { color: var(--primary-light); }
.process-section .section-head p { color: rgba(255,255,255,0.7); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  transition: background 0.3s;
}
.process-step:hover { background: rgba(255,255,255,0.12); }
.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.process-step p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.process-arrow { font-size: 2rem; color: var(--primary); align-self: center; padding-top: 1rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,60,0.93), rgba(232,130,12,0.80));
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

/* ===== STATS ===== */
.stats-section { background: var(--secondary); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-box {}
.stat-big {
  display: block;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label-big { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: var(--secondary-light); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo .logo-main { color: var(--primary); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.7); }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a, .footer-col ul li {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary-light); }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; }
.whatsapp-btn {
  display: inline-block;
  margin-top: 1.2rem;
  background: #25D366;
  color: white;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s;
}
.whatsapp-btn:hover { background: #1ebe5c; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,43,60,0.92), rgba(26,43,60,0.72));
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 1rem; }
.breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb span { margin: 0 0.5rem; }

/* ===== SERVICES DETAIL ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.service-detail-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(232,130,12,0.3); }
.sdc-icon { font-size: 2.2rem; flex-shrink: 0; }
.sdc-content h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.sdc-content p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 0.8rem; }
.sdc-content ul { display: flex; flex-direction: column; gap: 0.35rem; }
.sdc-content ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}
.sdc-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== CONTACT ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
}
.cc-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card strong { display: block; color: var(--secondary); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-card p { color: var(--text-light); font-size: 0.9rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,130,12,0.12); }
.form-msg { margin-top: 1rem; font-size: 0.9rem; text-align: center; font-weight: 600; }
.form-msg.success { color: #22a357; }
.form-msg.error { color: #e53e3e; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-badge-float { right: 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 0.5rem; }
  .navbar { position: relative; }

  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); }

  .hero-stats { gap: 1.2rem; }
  .stat-divider { display: none; }

  .services-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .footer-inner { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .why-image img { height: 300px; }
}

/* ===== NEW ADDITIONS ===== */

/* Discount Strip */
.discount-strip {
  background: #1A2B3C;
  color: white;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.95rem;
}
.discount-strip strong { color: var(--primary-light); }
.discount-strip a { color: var(--primary-light); font-weight: 700; text-decoration: underline; }

/* Topbar */
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.topbar-call, .topbar-sms {
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.topbar-call { background: var(--primary); }
.topbar-call:hover { background: var(--primary-dark); }
.topbar-sms { background: rgba(255,255,255,0.15); }
.topbar-sms:hover { background: rgba(255,255,255,0.25); }

/* CTA btns */
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline-white:hover { background: white; color: var(--secondary); }
.cta-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

/* Reviews */
.reviews-section { background: var(--bg-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 1rem; }
.review-text { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author strong { display: block; color: var(--secondary); font-size: 0.9rem; }
.review-author span { color: var(--text-light); font-size: 0.8rem; }

/* Float Call/SMS */
.contact-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9999;
}
.float-call, .float-sms {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.float-call { background: var(--primary); animation: pulse-orange 2.5s infinite; }
.float-sms { background: var(--secondary); }
.float-call:hover, .float-sms:hover { transform: scale(1.1); }

@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,130,12,0.4); }
  50% { box-shadow: 0 4px 30px rgba(232,130,12,0.7); }
}

/* Footer contact btns */
.footer-contact-btns { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-btn-call, .footer-btn-sms {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 0.2s;
}
.footer-btn-call { background: var(--primary); color: white; }
.footer-btn-sms { background: rgba(255,255,255,0.15); color: white; }
.footer-btn-call:hover, .footer-btn-sms:hover { opacity: 0.85; }

/* Contact action btns */
.contact-action-btns { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.btn-sms { background: var(--secondary); color: white; border-color: var(--secondary); }
.btn-sms:hover { background: var(--secondary-light); }

/* Form note */
.form-note { background: rgba(232,130,12,0.1); border-left: 3px solid var(--primary); padding: 0.6rem 1rem; border-radius: 4px; font-size: 0.9rem; margin-bottom: 1.2rem; color: var(--text); }

/* File Upload */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  background: var(--bg-light);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-upload-area:hover, .file-upload-area.dragover {
  border-color: var(--primary);
  background: rgba(232,130,12,0.05);
}
.file-upload-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.file-upload-area p { color: var(--text-light); font-size: 0.9rem; margin: 0.25rem 0; }
.file-note { font-size: 0.8rem !important; color: #999 !important; }
.btn-upload {
  margin-top: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
}
.file-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}
.file-item span { color: var(--text-light); }

@media (max-width: 576px) {
  .topbar-right { flex-direction: column; gap: 0.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .contact-action-btns { flex-direction: column; }
}