/* ===========================================
   AL MURIYAT - Main Stylesheet
   =========================================== */

:root {
  --color-primary: #0a2540;
  --color-primary-dark: #061a2e;
  --color-secondary: #38b6e0;
  --color-secondary-dark: #1a96bf;
  --color-accent: #4ab9d9;
  --color-light: #f4f8fb;
  --color-white: #ffffff;
  --color-dark: #0a1929;
  --color-text: #4a5568;
  --color-text-light: #718096;
  --color-border: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 37, 64, 0.12);
  --shadow-xl: 0 24px 60px rgba(10, 37, 64, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }
}

.section-tag {
  display: inline-block;
  background: rgba(56, 182, 224, 0.1);
  color: var(--color-secondary-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--color-secondary);
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.text-primary-custom { color: var(--color-primary) !important; }
.text-secondary-custom { color: var(--color-secondary) !important; }
.bg-primary-custom { background-color: var(--color-primary) !important; }
.bg-secondary-custom { background-color: var(--color-secondary) !important; }
.bg-light-custom { background-color: var(--color-light) !important; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--transition);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-primary-custom:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-custom:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-dark-custom {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-dark-custom:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right {
  transform: translateX(4px);
}

/* ---------- Navbar ---------- */
.navbar-custom {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  transition: var(--transition);
  box-shadow: 0 1px 0 rgba(10, 37, 64, 0.05);
  z-index: 1030;
}

.navbar-custom.scrolled {
  padding: 0.3rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary) !important;
  font-size: 1.15rem;
  line-height: 1.2;
  padding: 0;
}

.navbar-brand .brand-logo {
  height: 64px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.navbar-custom.scrolled .brand-logo {
  height: 54px;
}

@media (max-width: 576px) {
  .navbar-brand .brand-logo {
    height: 50px;
  }
}

.navbar-nav .nav-link {
  color: var(--color-primary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30px;
}

.navbar-nav .nav-link.active {
  color: var(--color-secondary) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------- Hero Sections ---------- */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(56, 182, 224, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56, 182, 224, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%2338b6e0' stroke-width='0.4' opacity='0.15'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(56, 182, 224, 0.15);
  border: 1px solid rgba(56, 182, 224, 0.3);
  color: var(--color-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--color-secondary);
  position: relative;
  display: inline-block;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.hero-visual .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: white;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-visual .card-1 {
  top: 10%;
  left: 0;
  width: 230px;
}

.hero-visual .card-2 {
  top: 35%;
  right: 0;
  width: 240px;
  animation-delay: 1s;
}

.hero-visual .card-3 {
  bottom: 10%;
  left: 15%;
  width: 220px;
  animation-delay: 2s;
}

.floating-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.floating-card h5 {
  color: white;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.floating-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(56, 182, 224, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(56, 182, 224, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.page-header .breadcrumb-nav {
  position: relative;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.page-header .breadcrumb-nav a {
  color: var(--color-secondary);
}

.page-header .breadcrumb-nav .separator {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Cards ---------- */
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  height: 100%;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(56, 182, 224, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.feature-card .read-more {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-card .read-more:hover {
  gap: 0.7rem;
}

/* Service / Solution detail card */
.service-block {
  display: flex;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.service-block:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-block .service-image {
  flex: 0 0 45%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-block .service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.4), rgba(56, 182, 224, 0.2));
}

.service-block .service-content {
  flex: 1;
  padding: 2.5rem;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block .service-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.service-block h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-block .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-block .feature-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.service-block .feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(56, 182, 224, 0.15);
  color: var(--color-secondary);
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
  }
  .service-block .service-image {
    min-height: 240px;
    flex: none;
    width: 100%;
  }
}

/* ---------- About Page ---------- */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrap img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--color-secondary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 6px solid white;
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.85rem;
  display: block;
  margin-top: 0.3rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 1rem 1.25rem;
  }
  .about-experience-badge .number {
    font-size: 1.75rem;
  }
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  height: 100%;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.value-card .value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(56, 182, 224, 0.1);
  color: var(--color-secondary);
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(56, 182, 224, 0.15) 0%, transparent 50%);
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(56, 182, 224, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56, 182, 224, 0.15) 0%, transparent 45%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ---------- Process / Why Us ---------- */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-step .step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(56, 182, 224, 0.3);
}

.process-step h4 {
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--color-text);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  height: 100%;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.contact-card .contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: white;
  border-radius: 14px;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(56, 182, 224, 0.3);
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.contact-card a,
.contact-card p {
  color: var(--color-text);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--color-secondary);
}

.contact-form-wrap {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
  border: 1.5px solid var(--color-border);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: #fbfcfd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(56, 182, 224, 0.15);
  background: white;
}

.form-label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.form-message.success {
  background: rgba(72, 187, 120, 0.1);
  color: #2f855a;
  border: 1px solid rgba(72, 187, 120, 0.3);
}

.form-message.error {
  background: rgba(245, 101, 101, 0.1);
  color: #c53030;
  border: 1px solid rgba(245, 101, 101, 0.3);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.footer h5 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer .footer-brand .footer-logo {
  height: 64px;
  width: auto;
  display: block;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer a {
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer .footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.footer .footer-contact-item i {
  color: var(--color-secondary);
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}

.footer .social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  padding: 0;
}

.footer .social-links a:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.88rem;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

/* ---------- Misc ---------- */
.text-justify {
  text-align: justify;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
  margin: 0 auto 2rem;
  border-radius: 4px;
}

.divider.left {
  margin-left: 0;
}

/* Loading spinner for form */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 4rem;
  }
  .hero-visual {
    height: 400px;
    margin-top: 3rem;
  }
  .navbar-custom {
    padding: 0.75rem 0;
  }
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 576px) {
  .hero-visual {
    display: none;
  }
  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
  }
  .service-block .service-content {
    padding: 1.75rem 1.25rem;
  }
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}
