/* ===============================
   WHITE + SAFFRON CORPORATE THEME
   COMPLETE PRODUCTION VERSION
   =============================== */

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --primary: #ffffff;
  --saffron: #E88B2A;
  --saffron-dark: #C7741E;
  --text: #1F2937;
  --muted: #6B7280;
  --border: #E5E7EB;
  --card: #ffffff;
}

body {
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
header {
  background: #ffffff;
  border-bottom: 2px solid var(--saffron);
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
}

/* ===== NAVIGATION ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--saffron);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero h1 span {
  color: var(--saffron);
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  margin-top: 30px;
  background: var(--saffron);
  color: #ffffff;
  padding: 13px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--saffron-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 139, 42, 0.25);
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--saffron);
  display: block;
  margin-top: 8px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card h3 {
  color: var(--saffron);
  margin-bottom: 12px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===== LISTS ===== */
section ul {
  margin-left: 20px;
  margin-top: 12px;
}

section ul li {
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: #111827;
  color: #ffffff;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
}

footer p {
  font-size: 14px;
  opacity: 0.85;
}

/* ===== FORM STYLING ===== */
input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

input:focus, textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 2px rgba(232, 139, 42, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== SPINNER ===== */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--saffron);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ===== SUCCESS POPUP ===== */
.success-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--saffron);
  color: #fff;
  padding: 15px 25px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .header-flex {
    flex-direction: column;
    gap: 15px;
  }

  section {
    padding: 60px 0;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px;
  }
}