/* ============================================================
   OPEES TRAVELS — MAIN STYLESHEET
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:     #07374F;
  --secondary:   #005B7F;
  --accent:      #F4B400;
  --bg:          #F8F9FA;
  --text:        #222222;
  --whatsapp:    #25D366;
  --whatsapp-dk: #1ebe5d;
  --white:       #ffffff;
  --gray-100:    #f8f9fa;
  --gray-200:    #e9ecef;
  --gray-300:    #dee2e6;
  --gray-600:    #6c757d;
  --shadow-sm:   0 2px 8px rgba(7,55,79,.08);
  --shadow-md:   0 4px 20px rgba(7,55,79,.12);
  --shadow-lg:   0 8px 40px rgba(7,55,79,.18);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   30px;
  --transition:  all .25s cubic-bezier(.4,0,.2,1);
  --font-en:     'Almarai', sans-serif;
  --font-ar:     'Almarai', sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-en);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Typography ────────────────────────────────────────────── */
.display-1 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; line-height: 1.15; }
.display-2 { font-size: clamp(1.6rem,4vw,2.8rem); font-weight: 700; line-height: 1.2; }
.section-title {
  font-size: clamp(1.5rem,3.5vw,2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.text-primary-brand { color: var(--primary) !important; }
.text-accent        { color: var(--accent) !important; }
.text-whatsapp      { color: var(--whatsapp) !important; }

/* ── Utility ────────────────────────────────────────────────── */
.bg-primary-brand { background: var(--primary) !important; }
.bg-secondary-brand { background: var(--secondary) !important; }
.bg-accent { background: var(--accent) !important; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn { border-radius: var(--radius-sm); font-weight: 600; transition: var(--transition); padding: .65rem 1.5rem; border: 2px solid transparent; }

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

.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: #e5a800;
  border-color: #e5a800;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dk);
  border-color: var(--whatsapp-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}

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

.btn-outline-white {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: var(--radius-md); }

/* ── Navbar ─────────────────────────────────────────────────── */
#mainNav {
  background: var(--white);
  padding: .75rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(7,55,79,.12);
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 2px solid var(--accent);
}

#mainNav.scrolled {
  padding: .5rem 0;
  box-shadow: 0 4px 20px rgba(7,55,79,.18);
}

.navbar-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}
.brand-text span { color: var(--accent); }
.brand-tagline { font-size: .7rem; color: rgba(255,255,255,.7); font-weight: 400; display: block; letter-spacing: .5px; }

.nav-link-custom {
  color: var(--primary) !important;
  font-weight: 600;
  padding: .5rem .9rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: .92rem;
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--secondary) !important;
  background: rgba(7,55,79,.07);
}

.navbar-toggler {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: .3rem .5rem;
}
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2307374F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.nav-whatsapp-btn {
  background: var(--whatsapp);
  color: var(--white) !important;
  padding: .45rem 1rem !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 700 !important;
}
.nav-whatsapp-btn:hover {
  background: var(--whatsapp-dk) !important;
  color: var(--white) !important;
}

.nav-services-caret {
  background: none;
  border: none;
  color: var(--primary);
  padding: .25rem .3rem;
  font-size: .65rem;
  line-height: 1;
  opacity: .6;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  margin-left: -.25rem;
}
.nav-services-caret:hover { opacity: 1; }
.nav-item.dropdown.show .nav-services-caret { transform: rotate(180deg); opacity: 1; }

.lang-switch {
  color: var(--primary) !important;
  font-size: .8rem;
  border: 1.5px solid rgba(7,55,79,.25);
  padding: .3rem .7rem !important;
  border-radius: var(--radius-xl) !important;
}
.lang-switch:hover { border-color: var(--primary) !important; color: var(--secondary) !important; background: rgba(7,55,79,.06); }

.dropdown-menu-custom {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  min-width: 260px;
  background: var(--white);
}
.dropdown-item-custom {
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.dropdown-item-custom:hover {
  background: var(--gray-100);
  color: var(--primary);
}
.dropdown-item-custom i { color: var(--secondary); font-size: .85rem; width: 16px; }

/* ── Mobile nav panel ────────────────────────────────────────── */
#mainNav { max-width: 100vw; overflow-x: hidden; }

.mobile-nav-panel {
  background: var(--white);
  border-top: 3px solid var(--accent);
  overflow: hidden;
}

/* Nav items */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: .5rem 0;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1.25rem;
  text-decoration: none;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  transition: background .18s, padding-left .18s;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-item:last-child { border-bottom: none; }
.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(7,55,79,.05);
  color: var(--secondary);
  padding-left: 1.5rem;
  text-decoration: none;
}
.mobile-nav-item.active { color: var(--secondary); }

.mobile-nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(7,55,79,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background .18s;
}
.mobile-nav-item:hover .mobile-nav-icon,
.mobile-nav-item.active .mobile-nav-icon {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav-label { flex: 1; }
.mobile-nav-arrow {
  font-size: .7rem;
  color: var(--gray-400);
}

/* Footer: WhatsApp + Language */
.mobile-nav-footer {
  display: flex;
  gap: .75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--gray-100);
}
.mobile-nav-wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s;
}
.mobile-nav-wa-btn:hover { background: var(--whatsapp-dk); color: var(--white); text-decoration: none; }
.mobile-nav-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--gray-100);
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  padding: .7rem 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.mobile-nav-lang-btn:hover { background: var(--gray-200); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #003d57 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(244,180,0,.15);
  border: 1px solid rgba(244,180,0,.3);
  color: var(--accent);
  padding: .4rem 1rem;
  border-radius: var(--radius-xl);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title .highlight { color: var(--accent); }

.hero-subtitle {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem,2.5vw,1.15rem);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}
.hero-feature-item i { color: var(--accent); font-size: .9rem; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-stat-card {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-stat-card .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.hero-stat-card .stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.trust-item {
  text-align: center;
  padding: 1rem;
}
.trust-item .trust-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.trust-item .trust-label {
  font-size: .82rem;
  color: var(--gray-600);
  margin-top: .25rem;
}
.trust-item .trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
  color: var(--white);
  font-size: 1.2rem;
}

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

/* ── Process Steps ──────────────────────────────────────────── */
.process-section { background: var(--primary); }

.step-card {
  text-align: center;
  color: var(--white);
  padding: 1.5rem 1rem;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.step-card h6 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.step-card p  { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0; }

.step-connector {
  display: none;
  position: absolute;
  top: 50%;
  right: -20px;
  color: var(--accent);
  font-size: 1.2rem;
}

/* ── Feature Cards ──────────────────────────────────────────── */
.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(7,55,79,.1), rgba(0,91,127,.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.feature-card h6 { font-weight: 700; color: var(--primary); margin-bottom: .25rem; font-size: .95rem; }
.feature-card p  { font-size: .84rem; color: var(--gray-600); margin: 0; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.testimonial-stars { color: var(--accent); font-size: .9rem; margin-bottom: .75rem; }
.testimonial-text {
  font-size: .92rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--primary); }
.testimonial-service { font-size: .78rem; color: var(--gray-600); }

/* ── WhatsApp CTA Section ───────────────────────────────────── */
.whatsapp-cta-section {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.whatsapp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.whatsapp-number-card {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.whatsapp-number-card:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-3px);
}
.whatsapp-number-card .wnum {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  direction: ltr;
  display: block;
}
.whatsapp-number-card .wlabel {
  font-size: .78rem;
  color: rgba(255,255,255,.8);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-search-wrap {
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
}
.faq-search-wrap input {
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-300);
  padding: .75rem 3rem .75rem 1.25rem;
  font-size: 1rem;
  width: 100%;
  outline: none;
  transition: var(--transition);
}
.faq-search-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(7,55,79,.08);
}
.faq-search-wrap i {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-600);
}

.faq-categories {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.faq-cat-btn {
  padding: .4rem 1rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-300);
  background: transparent;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-600);
  font-weight: 500;
}
.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.accordion-item-custom {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button-custom {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  padding: 1.1rem 1.25rem;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}
.accordion-button-custom:hover { background: var(--gray-100); }
.accordion-button-custom.open  { background: var(--primary); color: var(--white); }
.accordion-button-custom i     { font-size: .75rem; transition: var(--transition); }
.accordion-button-custom.open i { transform: rotate(180deg); }

.accordion-body-custom {
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-600);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: none;
}
.accordion-body-custom.show { display: block; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-category-badge {
  display: inline-block;
  padding: .2rem .75rem;
  background: rgba(7,55,79,.08);
  color: var(--primary);
  border-radius: var(--radius-xl);
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.blog-card h5 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; line-height: 1.4; }
.blog-card p  { font-size: .85rem; color: var(--gray-600); margin-bottom: 1rem; }
.blog-meta    { display: flex; gap: 1rem; font-size: .78rem; color: var(--gray-600); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.form-control-custom {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .92rem;
  transition: var(--transition);
  width: 100%;
  background: var(--bg);
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(7,55,79,.08);
  outline: none;
  background: var(--white);
}

/* ── Floating WhatsApp Button ───────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}

.float-whatsapp-btn {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.float-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.float-whatsapp-btn .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse-ring 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulse-ring {
  0%   { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.4); opacity: 0; }
}

.float-wa-menu {
  display: none;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-end;
}
.float-wa-menu.show { display: flex; }

.float-wa-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: .55rem 1rem;
  box-shadow: var(--shadow-md);
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.float-wa-option:hover { background: var(--whatsapp); color: var(--white); }
.float-wa-option i { color: var(--whatsapp); font-size: 1rem; }
.float-wa-option:hover i { color: var(--white); }

/* ── Sticky Mobile CTA ──────────────────────────────────────── */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: .6rem 1rem;
  display: none;
  gap: .5rem;
}
.sticky-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
}
.sticky-cta-call  { background: var(--primary); color: var(--white) !important; }
.sticky-cta-wa    { background: var(--whatsapp); color: var(--white) !important; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, #051e2b 0%, var(--primary) 100%);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand-name span { color: var(--accent); }

.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 1rem 0;
}

.footer-heading {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--accent); padding-left: .25rem; }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.footer-contact-item i { color: var(--accent); margin-top: .15rem; min-width: 14px; }

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

.footer-wa-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: #4eda8c !important;
  padding: .5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.footer-wa-btn:hover { background: var(--whatsapp); color: var(--white) !important; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-section {
  background: var(--primary);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.breadcrumb-section h1 { color: var(--white); font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: 700; }
.breadcrumb-custom { background: none; padding: 0; margin: .5rem 0 0; }
.breadcrumb-custom .breadcrumb-item { font-size: .85rem; color: rgba(255,255,255,.65); }
.breadcrumb-custom .breadcrumb-item a { color: var(--accent); }
.breadcrumb-custom .breadcrumb-item.active { color: rgba(255,255,255,.85); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Service Page ───────────────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 4rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-hero .service-icon-lg {
  width: 80px;
  height: 80px;
  background: rgba(244,180,0,.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.req-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  height: 100%;
}
.req-card h6 { color: var(--primary); font-weight: 700; margin-bottom: 1rem; }
.req-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--gray-100);
}
.req-item:last-child { border-bottom: none; }
.req-item i { color: var(--accent); font-size: .8rem; min-width: 14px; }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--accent); }
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}
.pricing-card .price-currency { font-size: 1.2rem; vertical-align: super; }
.pricing-card .price-period   { font-size: .85rem; color: var(--gray-600); }

/* ── Admin Panel ────────────────────────────────────────────── */
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
  overflow-y: auto;
}
.admin-brand {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-brand h5 { color: var(--white); font-weight: 800; font-size: 1.05rem; }
.admin-brand p  { color: rgba(255,255,255,.6); font-size: .78rem; margin: 0; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding-left: 1.75rem;
}
.admin-nav-item.active { border-left: 3px solid var(--accent); }
.admin-nav-item i { width: 18px; font-size: 1rem; }

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--bg);
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.admin-section { padding: 2rem; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.admin-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-header h6 { margin: 0; font-weight: 700; color: var(--primary); }
.admin-card-body { padding: 1.5rem; }

.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.admin-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}
.admin-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.admin-stat-label { font-size: .82rem; color: var(--gray-600); }

/* ── Checklist Generator ────────────────────────────────────── */
.checklist-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .92rem;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}
.checklist-item label {
  cursor: pointer;
  margin: 0;
  flex: 1;
}
.checklist-item input:checked + label { text-decoration: line-through; color: var(--gray-600); }

/* ── Alert / Notification ───────────────────────────────────── */
.alert-custom {
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: none;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .9rem;
}
.alert-custom-info  { background: rgba(7,55,79,.06); color: var(--primary); }
.alert-custom-warn  { background: rgba(244,180,0,.12); color: #7a5c00; }
.alert-custom-success { background: rgba(37,211,102,.1); color: #0d6332; }
.alert-custom i { margin-top: .1rem; font-size: 1rem; }

/* ── Scroll To Top ──────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
#scrollTop.show { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--secondary); transform: translateY(-3px); }

/* ── Map Embed ──────────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Section Dividers ───────────────────────────────────────── */
.divider-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.divider-wave svg { display: block; }

/* ── Badge Pill ─────────────────────────────────────────────── */
.badge-pill-primary {
  background: rgba(7,55,79,.1);
  color: var(--primary);
  padding: .3rem .8rem;
  border-radius: var(--radius-xl);
  font-size: .8rem;
  font-weight: 600;
}
.badge-pill-accent {
  background: rgba(244,180,0,.15);
  color: #7a5c00;
  padding: .3rem .8rem;
  border-radius: var(--radius-xl);
  font-size: .8rem;
  font-weight: 600;
}

/* ── Loading Animation ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Exit Intent Popup ──────────────────────────────────────── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(.9);
  transition: var(--transition);
}
.exit-popup-overlay.show .exit-popup { transform: scale(1); }
.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gray-600);
}
.exit-popup-close:hover { background: var(--gray-200); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 70px; }

  .float-whatsapp { bottom: 5.5rem; }
  #scrollTop { bottom: 9.5rem; }

  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }

  .step-connector { display: none !important; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-section { min-height: auto; padding: 3.5rem 0 4.5rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .float-whatsapp { right: 1rem; bottom: 5.5rem; }
  #scrollTop { right: 1rem; }
}

@media (min-width: 992px) {
  .step-connector { display: block; }
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }
