/* ==========================================================================
   Gavin Fruit Veg Ltd - Elite & Classic Design System
   ========================================================================== */

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

:root {
  --font-serif: 'Cinzel', serif;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Brand Colors */
  --primary-deep: #061f12;
  --primary-dark: #0b341d;
  --primary: #12542e;
  --primary-light: #207e46;
  --primary-leaf: #388e3c;
  --accent-lime: #689f38;
  --accent-gold: #c9961a;
  --accent-gold-light: #f5b722;
  --accent-orange: #e65100;
  --accent-citrus: #f57c00;

  /* Neutral & Base */
  --bg-cream: #fbfbf8;
  --bg-light: #f4f6f1;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.88);
  --border-subtle: #e5eadf;
  --border-gold: rgba(201, 150, 26, 0.35);

  --text-main: #142319;
  --text-muted: #536559;
  --text-light: #899c8f;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(6, 31, 18, 0.05);
  --shadow-md: 0 10px 28px rgba(6, 31, 18, 0.08);
  --shadow-lg: 0 20px 48px rgba(6, 31, 18, 0.12);
  --shadow-gold: 0 8px 24px rgba(201, 150, 26, 0.22);

  --transition-smooth: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Global Reset & Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary-deep);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--accent-gold) !important;
}

.text-leaf {
  color: var(--accent-lime) !important;
}

.bg-emerald-deep {
  background-color: var(--primary-deep) !important;
}

.bg-cream {
  background-color: var(--bg-cream) !important;
}

.bg-surface-light {
  background-color: var(--bg-light) !important;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #05190e 0%, #0c361e 50%, #05190e 100%);
  color: #c9d8ce;
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 150, 26, 0.25);
}

.top-bar a {
  color: #e2ede5;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.top-bar a:hover {
  color: var(--accent-gold-light);
}

.top-bar .divider {
  opacity: 0.3;
  margin: 0 10px;
}

/* Elite Navbar */
.navbar-elite {
  background: var(--surface-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  z-index: 1030;
}

.navbar-elite.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(201, 150, 26, 0.2);
}

.navbar-brand img {
  height: 52px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar-elite.scrolled .navbar-brand img {
  height: 46px;
}

.navbar-elite .nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-deep);
  padding: 8px 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-elite .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.navbar-elite .nav-link:hover,
.navbar-elite .nav-link.active {
  color: var(--primary-light);
}

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

/* Webmail Icon Button */
.btn-webmail-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5ee;
  color: var(--primary);
  border: 1px solid rgba(18, 84, 46, 0.2);
  border-radius: 50%;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
  position: relative;
  text-decoration: none;
}

.btn-webmail-icon:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(18, 84, 46, 0.25);
}

.btn-webmail-icon .badge-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 9px;
  height: 9px;
  background: var(--accent-citrus);
  border: 2px solid #ffffff;
  border-radius: 50%;
}

/* Distinct LOGIN Button */
.btn-login {
  background: linear-gradient(135deg, #0d3b20 0%, #15572e 100%);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 16px rgba(13, 59, 32, 0.25);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-login:hover {
  background: linear-gradient(135deg, #15572e 0%, #207e46 100%);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #b88510 0%, #d49f24 100%);
  color: #061f12;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d49f24 0%, #f5b722 100%);
  color: #061f12;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 150, 26, 0.35);
}

.btn-emerald-outline {
  background: transparent;
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  transition: var(--transition-smooth);
}

.btn-emerald-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(18, 84, 46, 0.2);
}

.btn-emerald-solid {
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid var(--primary);
  transition: var(--transition-smooth);
}

.btn-emerald-solid:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(18, 84, 46, 0.28);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 140px 0 100px;
  background: radial-gradient(circle at 85% 20%, rgba(56, 142, 60, 0.12) 0%, rgba(251, 251, 248, 0) 65%),
              linear-gradient(180deg, #f7f9f4 0%, #fbfbf8 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-leaf), var(--accent-gold), var(--primary-deep));
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e8f3ea;
  border: 1px solid rgba(56, 142, 60, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-pill-badge i {
  color: var(--accent-lime);
}

.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 24px;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #0b341d 0%, #2e7d32 70%, #c9961a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-artwork-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f7f9f5);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.hero-artwork-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(6, 31, 18, 0.16);
}

.hero-artwork-card img.main-art {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Floating Badges on Hero */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatSlow 4s ease-in-out infinite;
}

.floating-badge.badge-top-left {
  top: -15px;
  left: -20px;
}

.floating-badge.badge-bottom-right {
  bottom: -20px;
  right: -15px;
  animation-delay: 2s;
}

.floating-badge .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

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

/* Trust Bar / Metrics Bar */
.trust-metrics-bar {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 0;
  box-shadow: var(--shadow-sm);
}

.metric-item {
  text-align: center;
  padding: 10px 15px;
}

.metric-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Section Common Styling */
.section-padding {
  padding: 100px 0;
}

.section-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-leaf);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 50px;
}

/* Feature & Service Cards */
.service-card {
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 142, 60, 0.3);
}

.service-card .card-thumb-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-card .card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .card-thumb-wrap img {
  transform: scale(1.08);
}

.service-card .badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 31, 18, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 150, 26, 0.4);
}

.service-card .card-body-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h4 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features-list li {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li i {
  color: var(--accent-lime);
}

/* About Section Heritage Box */
.about-image-stack {
  position: relative;
}

.about-image-stack .main-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.about-experience-badge {
  position: absolute;
  bottom: -25px;
  right: 20px;
  background: var(--primary-deep);
  color: #ffffff;
  border-radius: 20px;
  padding: 24px 28px;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.about-experience-badge .years {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-gold-light);
}

.about-experience-badge .label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-right: 10px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.cert-pill i {
  color: var(--accent-gold);
}

/* Produce Categories Grid */
.category-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
  height: 100%;
}

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

.category-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef7f0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.category-card:hover .category-icon-wrap {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

.category-card h5 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(18, 84, 46, 0.22);
}

.gallery-item-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item-card .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 31, 18, 0.1) 0%, rgba(6, 31, 18, 0.88) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

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

.gallery-item-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay h5 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: #d1ded5;
  margin-bottom: 12px;
}

.gallery-overlay .zoom-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Why Choose Us Dark Luxury Section */
.why-choose-section {
  background: linear-gradient(160deg, #05190e 0%, #0c351f 50%, #062214 100%);
  color: #e2ede5;
  position: relative;
  overflow: hidden;
}

.why-choose-section h2,
.why-choose-section h3 {
  color: #ffffff;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 26px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  height: 100%;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.why-card .why-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 150, 26, 0.2), rgba(56, 142, 60, 0.3));
  border: 1px solid rgba(201, 150, 26, 0.4);
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.why-card h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  color: #b7cbbf;
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eef5ee;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--primary-leaf);
}

.testimonial-author h6 {
  margin-bottom: 2px;
  font-size: 1rem;
}

.testimonial-author small {
  color: var(--text-muted);
}

/* Contact & Inquiry Section */
.contact-card-box {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.contact-info-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon,
.contact-info-list .info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: #eef7f0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(18, 84, 46, 0.15);
  transition: var(--transition-smooth);
}

.contact-card-box:hover .info-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
}

.contact-info-list h6 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-list p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.92rem;
}

.form-control-elite,
.form-select-elite {
  background: #f8faf6;
  border: 1px solid #dbe4d8;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-control-elite:focus,
.form-select-elite:focus {
  background: #ffffff;
  border-color: var(--primary-leaf);
  box-shadow: 0 0 0 4px rgba(56, 142, 60, 0.15);
  outline: none;
}

/* Modal Styling */
.modal-content-elite {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(6, 31, 18, 0.25);
}

.modal-header-elite {
  background: linear-gradient(135deg, #05190e 0%, #0e3b23 100%);
  color: #ffffff;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(201, 150, 26, 0.3);
  position: relative;
}

.modal-header-elite h5 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.modal-header-elite p {
  color: #bdd1c5;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.modal-header-elite .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body-elite {
  padding: 30px;
}

/* Footer */
.footer-classic {
  background: #04140b;
  color: #bccdc2;
  font-size: 0.92rem;
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 4px solid var(--primary-leaf);
}

.footer-classic h5 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-classic h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent-gold);
}

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

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

.footer-links a {
  color: #bccdc2;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-right: 8px;
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background: var(--accent-gold);
  color: #061f12;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 0.85rem;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  text-decoration: none;
}

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

.back-to-top:hover {
  background: var(--accent-gold);
  color: #061f12;
  transform: translateY(-4px);
}

/* Lightbox Modal */
#galleryLightboxModal .modal-content {
  background: transparent;
  border: none;
}

#galleryLightboxModal .modal-body {
  padding: 0;
  text-align: center;
  position: relative;
}

#galleryLightboxModal img {
  max-height: 82vh;
  width: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

#galleryLightboxModal .lightbox-caption {
  color: #ffffff;
  margin-top: 12px;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 110px 0 60px;
  }
  .hero-artwork-card {
    margin-top: 40px;
  }
  .floating-badge.badge-top-left {
    top: 5px;
    left: 5px;
  }
  .floating-badge.badge-bottom-right {
    bottom: 5px;
    right: 5px;
  }
  .navbar-elite .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
  }
  .header-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-subtle);
  }
}
