/* ============================================================
   VET PHARMA CONSULTANCY — PREMIUM REDESIGN
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0a1628;
  --secondary: #1a3a5c;
  --accent: #c8a84e;
  --accent-light: #f0e6c8;
  --light-bg: #f4f7fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #6c757d;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GLOBAL RESETS === */
body {
  font-family: 'Inter', sans-serif !important;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3 !important;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; color: var(--secondary); }
p { margin-bottom: 1rem; color: #555; font-size: 1rem; line-height: 1.85; }
a { color: var(--secondary); transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }

/* === SECTION SPACING === */
.vp-section { padding: 80px 0; }
.vp-section-sm { padding: 50px 0; }
.vp-section-gray { background: var(--light-bg); }
.vp-section-dark { background: var(--primary); color: var(--white); }

/* === SECTION HEADING === */
.vp-heading { text-align: center; margin-bottom: 50px; }
.vp-heading h2 { font-size: 2.25rem; font-weight: 800; color: var(--primary); position: relative; padding-bottom: 18px; }
.vp-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.vp-heading h2 span { color: var(--accent); }
.vp-heading-left { text-align: left; }
.vp-heading-left h2::after { left: 0; transform: none; }

/* === NAVBAR === */
.vp-navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0 !important;
  transition: var(--transition);
  width: 100% !important;
  margin: 0 !important;
}
.vp-navbar .navbar-brand img {
  height: 55px;
  width: auto !important;
  transition: var(--transition);
}
.vp-navbar .navbar-nav .nav-link {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  color: var(--primary) !important;
  padding: 25px 18px !important;
  position: relative;
  transition: var(--transition);
}
.vp-navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px; left: 18px; right: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.vp-navbar .navbar-nav .nav-link:hover::after,
.vp-navbar .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.vp-navbar .navbar-nav .nav-link:hover { color: var(--accent) !important; }

/* Navbar toggler */
.vp-navbar .navbar-toggler {
  border: 2px solid var(--accent) !important;
  border-radius: 6px;
  padding: 6px 10px;
}
.vp-navbar .navbar-toggler span {
  display: block; width: 22px; height: 2px;
  background: var(--accent); margin: 5px 0;
  border-radius: 2px;
}

/* Dropdown */
.vp-dropdown { position: relative; }
.vp-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  min-width: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 10px 0;
  display: none;
  z-index: 1060;
  border: 1px solid rgba(0,0,0,0.05);
}
.vp-dropdown:hover .vp-dropdown-menu { display: block; }
.vp-dropdown-menu li { list-style: none; }
.vp-dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text) !important;
  margin-left: 0 !important;
  transition: var(--transition);
}
.vp-dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--accent) !important;
  padding-left: 30px;
}

/* === HERO BANNER / CAROUSEL === */
.vp-hero { position: relative; margin-top: 80px; }
.vp-hero .carousel-item { position: relative; }
.vp-hero .carousel-item img {
  width: 100%; height: 550px;
  object-fit: cover;
  filter: brightness(0.55);
}
.vp-hero .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(26,58,92,0.4) 100%);
}
.vp-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 5;
}
.vp-hero-overlay h1 {
  color: var(--white) !important;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.vp-hero-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 550px;
  margin-bottom: 25px;
}
.vp-hero .carousel-indicators { bottom: 20px; z-index: 10; }
.vp-hero .carousel-indicators button,
.vp-hero .carousel-indicators [data-bs-target] {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  opacity: 0.6;
  margin: 0 5px;
}
.vp-hero .carousel-indicators .active {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}
.vp-hero .carousel-control-prev,
.vp-hero .carousel-control-next {
  z-index: 10;
  width: 50px; height: 50px;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  margin: 0 20px;
  opacity: 0.8;
  bottom: auto;
}
.vp-hero .carousel-control-prev:hover,
.vp-hero .carousel-control-next:hover { background: var(--accent); opacity: 1; }

/* === INNER PAGE BANNER === */
.vp-page-banner {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.vp-page-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(200,168,78,0.08);
}
.vp-page-banner h1 {
  color: var(--white) !important;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.vp-page-banner .vp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0; margin: 0;
}
.vp-page-banner .vp-breadcrumb a {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 0.95rem;
}
.vp-page-banner .vp-breadcrumb span {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* === CARDS === */
.vp-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}
.vp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.vp-card-img {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  margin-bottom: 20px;
}
.vp-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vp-card:hover .vp-card-img img { transform: scale(1.05); }
.vp-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 0;
}
.vp-card p { font-size: 0.92rem; color: var(--text-light); }

/* Service card accent line */
.vp-card-accent { border-top: 3px solid var(--accent); }

/* === BUTTONS === */
.vp-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none !important;
}
.vp-btn-primary {
  background: var(--accent);
  color: var(--white) !important;
}
.vp-btn-primary:hover {
  background: #b8963e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200,168,78,0.4);
  color: var(--white) !important;
}
.vp-btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent) !important;
}
.vp-btn-outline:hover {
  background: var(--accent);
  color: var(--white) !important;
}
.vp-btn-white {
  background: var(--white);
  color: var(--primary) !important;
}
.vp-btn-white:hover {
  background: var(--accent);
  color: var(--white) !important;
}

/* === FORMS === */
.vp-form .form-control, .vp-form .form-select {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
}
.vp-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,168,78,0.15);
}
.vp-form textarea.form-control { min-height: 130px; resize: vertical; }
.vp-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 6px;
}
.vp-form button[type="submit"], .vp-form .vp-btn {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
}

/* === HIGHLIGHT BOX === */
.vp-highlight {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}
.vp-highlight b, .vp-highlight strong { color: var(--primary); }

/* === PROFILE CARD === */
.vp-profile-card {
  text-align: center;
  padding: 40px 30px;
}
.vp-profile-card img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  margin-bottom: 20px;
}

/* === EXPERIENCE LISTS === */
.vp-list { list-style: none; padding: 0; }
.vp-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: #555;
}
.vp-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.vp-list li:last-child { border-bottom: none; }

/* === CTA SECTION === */
.vp-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 0;
  text-align: center;
}
.vp-cta h2 { color: var(--white) !important; margin-bottom: 15px; }
.vp-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 25px; }

/* === CONTACT INFO CARDS === */
.vp-contact-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.vp-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.vp-contact-card .vp-icon {
  width: 60px; height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--accent);
}
.vp-contact-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.vp-contact-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* === FOOTER === */
.vp-footer {
  background: var(--primary) !important;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.vp-footer h5 {
  color: var(--white) !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.vp-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 2px;
  background: var(--accent);
}
.vp-footer p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.vp-footer ul { list-style: none; padding: 0; margin: 0; }
.vp-footer ul li { margin-bottom: 10px; }
.vp-footer ul li a {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none !important;
}
.vp-footer ul li a:hover {
  color: var(--accent) !important;
  padding-left: 5px;
}
.vp-footer .vp-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.vp-footer .vp-footer-contact li img { width: 18px; margin-top: 3px; filter: brightness(2); }
.vp-footer .social_link { display: flex; gap: 10px; margin-top: 15px; }
.vp-footer .social_link li a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex !important;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.9rem;
}
.vp-footer .social_link li a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white) !important;
}
.vp-footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 18px 0;
  text-align: center;
  margin-top: 40px;
}
.vp-footer-bottom p {
  margin: 0; font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* === SCROLL TO TOP === */
#scroll-to-top {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  width: 44px; height: 44px;
  box-shadow: 0 4px 12px rgba(200,168,78,0.3);
}
#scroll-to-top:hover {
  background: var(--primary) !important;
}

/* === ANIMATIONS === */
@keyframes vpFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.vp-animate { animation: vpFadeUp 0.6s ease forwards; }

/* === MAP === */
.vp-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 30px;
}
.vp-map-wrap iframe { display: block; border: none; }

/* === MODAL === */
.vp-modal .modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-hover);
}
.vp-modal .modal-header {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 20px 25px;
}
.vp-modal .modal-header .btn-close { filter: brightness(0) invert(1); }
.vp-modal .modal-body { padding: 30px; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .vp-navbar .navbar-nav .nav-link { padding: 12px 18px !important; }
  .vp-navbar .navbar-nav .nav-link::after { display: none; }
  .vp-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--light-bg);
    border-radius: 8px;
    margin: 5px 0;
  }
  .vp-hero .carousel-item img { height: 400px; }
  .vp-hero-overlay h1 { font-size: 2rem; }
  .vp-section { padding: 50px 0; }
  .vp-page-banner { padding: 50px 0; }
  .vp-page-banner h1 { font-size: 2rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 767px) {
  .vp-hero .carousel-item img { height: 320px; }
  .vp-hero-overlay h1 { font-size: 1.6rem; }
  .vp-hero-overlay p { font-size: 0.95rem; }
  .vp-section { padding: 40px 0; }
  .vp-heading { margin-bottom: 30px; }
  .vp-heading h2 { font-size: 1.6rem; }
  .vp-page-banner { padding: 40px 0; margin-top: 70px; }
  .vp-page-banner h1 { font-size: 1.6rem; }
  .vp-hero { margin-top: 70px; }
  .vp-card { padding: 22px; }
  .vp-footer { padding: 40px 0 20px; }
  .vp-profile-card img { width: 140px; height: 140px; }
  .vp-cta { padding: 40px 0; }
}

/* === HIDE OLD STYLES CONFLICT === */
.top-header { display: none !important; }
.footer-box { display: none !important; }
.footer_bottom { display: none !important; }
.inner_banner { display: none !important; }
.floating-menu { display: none !important; }
