/* =============================================
   VAIBHAV TRADERS - Global Stylesheet
   Color Theme: Deep Forest Green + Earthy Gold
   Font: Poppins + Playfair Display
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --green-dark: #1a3d2b;
  --green-mid: #2a5c40;
  --green-light: #3d7a55;
  --gold: #c8963e;
  --gold-light: #e0b96a;
  --cream: #f7f3ec;
  --white: #ffffff;
  --text-dark: #1e2d23;
  --text-muted: #5a6b61;
  --border: #d4e2d9;
  --shadow-sm: 0 2px 8px rgba(26, 61, 43, 0.10);
  --shadow-md: 0 6px 24px rgba(26, 61, 43, 0.14);
  --shadow-lg: 0 12px 40px rgba(26, 61, 43, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.3s ease;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  /* overflow: hidden; */
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: 4px;
}

/* =============================================
   NAVBAR
   ============================================= */
.vt-navbar {
  background: var(--green-dark);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.vt-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-navbar .brand-logo {
  height: 92px;
  width: 100%;
  object-fit: contain;
}

.vt-navbar .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.vt-navbar .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.vt-navbar .brand-tagline {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.vt-navbar .navbar-toggler {
  border-color: var(--gold);
}

.vt-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.vt-navbar .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 22px 14px !important;
  letter-spacing: 0.3px;
  position: relative;
  transition: color var(--transition);
}

.vt-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.vt-navbar .nav-link:hover,
.vt-navbar .nav-link.active {
  color: var(--gold-light) !important;
}

.vt-navbar .nav-link:hover::after,
.vt-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.vt-navbar .dropdown-menu {
  background: var(--green-dark);
  border: 1px solid var(--green-light);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 240px;
  box-shadow: var(--shadow-md);
}

.vt-navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 9px 20px;
  transition: background var(--transition), color var(--transition);
  font-weight: 500;
}

.vt-navbar .dropdown-item:hover {
  background: var(--green-light);
  color: var(--gold-light);
}

/* =============================================
   HERO (Homepage)
   ============================================= */
.vt-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vt-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(0.38);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.vt-hero:hover .vt-hero-bg {
  transform: scale(1.0);
}

.vt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.vt-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.vt-hero-badge {
  display: inline-block;
  background: rgba(200, 150, 62, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.vt-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.vt-hero h1 span {
  color: var(--gold-light);
}

.vt-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 34px;
}

.vt-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vt-hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.vt-hero-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-vt-primary {
  background: var(--gold);
  color: #fff;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-vt-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
}

.btn-vt-outline {
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-vt-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-vt-green {
  background: var(--green-mid);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--green-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-vt-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.vt-section {
  padding: 80px 0;
}

.vt-section-alt {
  background: var(--white);
}

.vt-section-dark {
  background: var(--green-dark);
  color: #fff;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--green-dark);
  margin-bottom: 14px;
  font-weight: 700;
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.72);
}

.vt-divider {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  border-radius: 3px;
  margin: 18px 0 24px;
}

/* =============================================
   CARDS
   ============================================= */
.vt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.vt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.vt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.vt-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.vt-card h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.vt-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.vt-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
}

.vt-card .card-link:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* =============================================
   SOLUTION CARDS (Services)
   ============================================= */
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.solution-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.solution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-card-img img {
  transform: scale(1.06);
}

.solution-card-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 61, 43, 0.6) 100%);
}

.solution-card-body {
  padding: 24px;
}

.solution-card-body h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.solution-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* =============================================
   PAGE HERO (Inner pages)
   ============================================= */
.page-hero {
  background: var(--green-dark);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: var(--gold);
  opacity: 0.07;
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: var(--green-light);
  opacity: 0.12;
  border-radius: 50%;
}

.page-hero .breadcrumb-item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.page-hero .breadcrumb-item.active {
  color: var(--gold-light);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  max-width: 560px;
}

/* =============================================
   TEAM CARDS
   ============================================= */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}

.team-avatar-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-light);
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
  font-family: 'Playfair Display', serif;
}

.team-card h4 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   BLOG / KNOWLEDGE CARDS
   ============================================= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  background: rgba(42, 92, 64, 0.1);
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card-body h4 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.blog-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-block h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 3px;
}

.contact-info-block p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* Contact form */
.vt-form .form-control,
.vt-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.vt-form .form-control:focus,
.vt-form .form-select:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(42, 92, 64, 0.12);
  outline: none;
}

.vt-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* =============================================
   FEATURES / HIGHLIGHT LIST
   ============================================= */
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .check {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================
   COLLAB / INNOVATION
   ============================================= */
.collab-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.collab-item:hover {
  transform: translateX(4px);
}

.collab-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

/* =============================================
   CAROUSEL / SLIDER
   ============================================= */
.vt-carousel .carousel-item {
  min-height: 380px;
}

.vt-carousel .carousel-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.vt-carousel .carousel-control-prev,
.vt-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.vt-carousel .carousel-control-prev {
  left: -22px;
}

.vt-carousel .carousel-control-next {
  right: -22px;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--green-dark);
  padding: 36px 0;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-item .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* =============================================
   FOOTER
   ============================================= */
.vt-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 0;
}

.vt-footer .footer-logo {
  height: 56px;
  margin-bottom: 14px;
}

.vt-footer .footer-about {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.vt-footer h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.vt-footer .footer-links li {
  margin-bottom: 9px;
}

.vt-footer .footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vt-footer .footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.vt-footer .footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}

.vt-footer .footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.vt-footer .footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.vt-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.vt-footer .footer-bottom span {
  color: var(--gold-light);
}

/* Social icons */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  margin-right: 8px;
  font-size: 15px;
  transition: background var(--transition), color var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: #fff;
}

/* =============================================
   BACK TO TOP
   ============================================= */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.4);
  transition: background var(--transition), transform var(--transition);
}

#backToTop:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

#backToTop.show {
  display: flex;
}

/* =============================================
   INNER PAGE CONTENT
   ============================================= */
.content-prose p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.8;
}

.content-prose h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin: 28px 0 12px;
}

.highlight-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.highlight-box h3 {
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.highlight-box ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.65s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.30s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.60s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .vt-navbar .nav-link {
    padding: 12px 16px !important;
  }

  .vt-navbar .nav-link::after {
    display: none;
  }

  .vt-hero {
    min-height: 70vh;
  }

  .vt-hero h1 {
    font-size: 2.2rem;
  }

  .vt-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .vt-section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 52px 0 40px;
  }

  .vt-carousel .carousel-control-prev {
    left: 0;
  }

  .vt-carousel .carousel-control-next {
    right: 0;
  }

  .vt-hero {
    min-height: 100svh;
    padding: 100px 0 60px;
    align-items: flex-start;
  }

  .vt-hero-content {
    padding-top: 10px;
  }

  .vt-hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .vt-hero p {
    font-size: 0.92rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .vt-hero-badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  .vt-hero-stats {
    gap: 16px;
    margin-top: 28px;
    padding-top: 22px;
    flex-wrap: wrap;
  }

  .vt-hero-stat .num {
    font-size: 1.7rem;
  }

  .vt-hero-stat .lbl {
    font-size: 10px;
  }

  .btn-vt-primary,
  .btn-vt-outline {
    font-size: 13px;
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .vt-hero {
    min-height: 70svh;
    padding: 90px 0 50px;
  }

  .vt-hero h1 {
    font-size: 1.55rem;
  }

  .vt-hero-stats {
    gap: 14px;
  }

  .vt-hero-stat .num {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.55rem;
  }
}


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-info-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-info-card .icon-wrap i {
  font-size: 26px;
  color: var(--gold-light);
}

.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
}

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

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-wrap .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(61, 122, 85, 0.12);
  background: #fff;
}

.contact-form-wrap textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.contact-form-wrap .btn-submit {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
}

.contact-form-wrap .btn-submit:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap .btn-submit i {
  margin-right: 8px;
}

/* Map Section */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}

/* Form success alert */
#formSuccess {
  display: none;
  background: #d1f0dc;
  border: 1px solid #2a5c40;
  color: #1a3d2b;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
}
/* =============================================
   GALLERY SECTION
   ============================================= */
.vt-gallery-section { background: #fff; }

.vt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.vt-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.vt-gallery-large {
  grid-row: span 2;
}

.vt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vt-gallery-item:hover img {
  transform: scale(1.07);
}

.vt-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vt-gallery-item:hover .vt-gallery-overlay {
  opacity: 1;
}

.vt-gallery-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .vt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .vt-gallery-large {
    grid-column: span 2;
    height: 220px;
    grid-row: span 1;
  }
  .vt-gallery-item { height: 160px; }
}

@media (max-width: 480px) {
  .vt-gallery-grid {
    grid-template-columns: 1fr;
  }
  .vt-gallery-large {
    grid-column: span 1;
    height: 200px;
  }
  .vt-gallery-item { height: 200px; }
}