/* ==========================================================================
   HorseAndFish - Modern Ultra-Premium Design System
   Powered by Bootstrap 5.3, SwiperJS 11, AOS & Brand Palette (Black, Green, Gold)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --hf-black: #000000;
  --hf-dark-bg: #0a0e17;
  --hf-dark-surface: #121824;
  --hf-brand-yellow: #ffee00;
  --hf-brand-gold: #f59e0b;
  --hf-brand-green: #00a859;
  --hf-emerald: #10b981;
  --hf-white: #ffffff;
  --hf-gray-100: #f8fafc;
  --hf-gray-200: #e2e8f0;
  --hf-gray-400: #94a3b8;
  --hf-gray-700: #334155;
  --hf-gray-900: #0f172a;

  --hf-font-display: 'Outfit', -apple-system, sans-serif;
  --hf-font-body: 'Plus Jakarta Sans', sans-serif;

  --hf-glass-bg: rgba(18, 24, 36, 0.85);
  --hf-glass-border: rgba(255, 255, 255, 0.12);
  --hf-radius-sm: 8px;
  --hf-radius-md: 14px;
  --hf-radius-lg: 20px;
}

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

body {
  font-family: var(--hf-font-body);
  background-color: #ffffff;
  color: var(--hf-gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hf-font-display);
  font-weight: 800;
  color: var(--hf-gray-900);
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Main Navigation Header */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(10, 14, 23, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--hf-brand-yellow);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  border-radius: var(--hf-radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--hf-brand-yellow);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--hf-brand-yellow);
  border-radius: 2px;
}

.btn-header-quote {
  background: linear-gradient(135deg, var(--hf-brand-yellow), var(--hf-brand-gold));
  color: var(--hf-black);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 238, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-header-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 238, 0, 0.45);
  color: var(--hf-black);
  background: var(--hf-white);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background-color: var(--hf-dark-bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 30px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION - Courier (Left Card), Emblem Logo (Middle), Removal (Right Card)
   ========================================================================== */
.hero-wrapper {
  background: radial-gradient(circle at center, #141b2a 0%, var(--hf-dark-bg) 70%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px 0;
  color: var(--hf-white);
}

.hero-wrapper .hero-bg-overlay {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
}

/* Middle Emblem Logo Container */
.hero-center-emblem {
  text-align: center;
  position: relative;
  z-index: 20;
}

.hero-center-emblem img {
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
  animation: floatLogo 4s ease-in-out infinite;
}

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

/* Left & Right Hero Cards */
.hero-glass-card {
  background: var(--hf-glass-bg);
  border: 1px solid var(--hf-glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--hf-radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-glass-card.card-courier {
  border-top: 4px solid var(--hf-brand-green);
}

.hero-glass-card.card-removal {
  border-top: 4px solid var(--hf-brand-yellow);
}

.hero-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-glass-card.card-courier:hover {
  border-color: var(--hf-brand-green);
}

.hero-glass-card.card-removal:hover {
  border-color: var(--hf-brand-yellow);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-card-badge.green {
  background: rgba(0, 168, 89, 0.18);
  color: #34d399;
  border: 1px solid rgba(0, 168, 89, 0.3);
}

.hero-card-badge.yellow {
  background: rgba(255, 238, 0, 0.18);
  color: var(--hf-brand-yellow);
  border: 1px solid rgba(255, 238, 0, 0.3);
}

.hero-glass-card h2 {
  color: var(--hf-white);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-glass-card p {
  color: var(--hf-gray-400);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.btn-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-hero-action.btn-green {
  background-color: var(--hf-brand-green);
  color: var(--hf-white);
  box-shadow: 0 4px 15px rgba(0, 168, 89, 0.3);
}

.btn-hero-action.btn-green:hover {
  background-color: var(--hf-emerald);
  color: var(--hf-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 89, 0.5);
}

.btn-hero-action.btn-yellow {
  background-color: var(--hf-brand-yellow);
  color: var(--hf-black);
  box-shadow: 0 4px 15px rgba(255, 238, 0, 0.3);
}

.btn-hero-action.btn-yellow:hover {
  background-color: var(--hf-white);
  color: var(--hf-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SECTION 2 - Yellow Section with Feature Cards
   ========================================================================== */
#home-sec-2 {
  background-color: var(--hf-brand-yellow);
  padding: 80px 0;
  position: relative;
}

.sec-2-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--hf-radius-lg);
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.sec-2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sec-2-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.sec-2-card-header i {
  font-size: 36px;
  color: var(--hf-black);
}

.sec-2-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--hf-black);
}

.sec-2-card p {
  color: #222222;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.btn-sec-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--hf-black);
  color: var(--hf-white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-sec-2:hover {
  background-color: var(--hf-white);
  color: var(--hf-black);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* SECTION 3 - FAQ Accordion (Left) & Content Text (Right) */
.section-padding {
  padding: 90px 0;
}

.faq-card {
  background: var(--hf-white);
  border-radius: var(--hf-radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--hf-gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-card.open {
  border-color: var(--hf-black);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--hf-black);
  color: var(--hf-white);
}

.faq-header h4 {
  font-size: 17px;
  margin: 0;
  color: var(--hf-white);
  font-weight: 700;
}

.faq-icon-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--hf-brand-yellow);
  color: var(--hf-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-card.open .faq-icon-toggle {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: var(--hf-gray-700);
  font-size: 15px;
  background: var(--hf-white);
}

.faq-card.open .faq-body {
  padding: 20px 24px;
  max-height: 300px;
}

/* SECTION 4 - Contact & Dual Action Buttons */
.contact-wrapper {
  background: var(--hf-white);
  border-radius: var(--hf-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--hf-gray-200);
  padding: 40px;
}

.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--hf-radius-sm);
  border: 1px solid var(--hf-gray-200);
  font-size: 15px;
  font-family: var(--hf-font-body);
  transition: all 0.25s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--hf-black);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.btn-dispatch-whatsapp {
  background-color: #25D366;
  color: var(--hf-white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-dispatch-whatsapp:hover {
  background-color: #128C7E;
  color: var(--hf-white);
  transform: translateY(-2px);
}

.btn-dispatch-email {
  background-color: var(--hf-black);
  color: var(--hf-white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-dispatch-email:hover {
  background-color: #333333;
  color: var(--hf-white);
  transform: translateY(-2px);
}

/* Swiper Testimonials Carousel (Disabled Temporarily) */
.testimonial-swiper, .testimonial-card, .slider {
  display: none !important;
}

/* Map Frame */
.map-frame-wrapper {
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Footer Section */
footer.main-footer {
  background-color: var(--hf-black);
  color: var(--hf-white);
  padding-top: 70px;
  border-top: 6px solid var(--hf-brand-yellow);
}

footer.main-footer h5 {
  color: var(--hf-brand-yellow);
  font-size: 22px;
  margin-bottom: 20px;
}

footer.main-footer p,
footer.main-footer ul li a {
  color: #a3a3a3;
  font-size: 15px;
}

footer.main-footer ul li {
  margin-bottom: 10px;
}

footer.main-footer ul li a:hover {
  color: var(--hf-brand-yellow);
  padding-left: 4px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hf-white);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background-color: var(--hf-brand-yellow);
  color: var(--hf-black);
  transform: translateY(-3px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  margin-top: 50px;
  text-align: center;
  color: #888888;
  font-size: 14px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-wrapper {
    padding: 60px 0;
  }
}
