/* ==========================================================================
   ITS WOOD S.A — Premium Timber Landing Page
   Color Palette: Forest Green, Dark Brown, Beige, White
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --forest-green: #1b4332;
  --forest-green-light: #2d6a4f;
  --forest-green-dark: #081c15;
  --wood-brown: #3e2723;
  --wood-brown-mid: #5d4037;
  --wood-brown-light: #8d6e63;
  --beige: #f5f0e8;
  --beige-dark: #e8dfd0;
  --cream: #faf8f5;
  --gold-accent: #c9a962;
  --gold-light: #d4a574;
  --white: #ffffff;
  --text-dark: #2c2419;
  --text-muted: #6b5d52;
  --shadow-sm: 0 4px 20px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 8px 40px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 16px 60px rgba(27, 67, 50, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest-green-dark);
}

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

a {
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

/* ---------- Utility: Section Spacing ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: linear-gradient(135deg, var(--forest-green-light), var(--forest-green));
  border: none;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-dark));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
  z-index: 1030;
  background: rgba(0, 35, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.header .navbar {
  padding: 0.85rem 0;
  transition: padding var(--transition);
}

.header.scrolled {
  background: rgba(0, 35, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header.scrolled .navbar {
  padding: 0.65rem 0;
}

/* Brand / Logo — white container for visibility on dark hero */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 1rem;
  color: var(--white) !important;
}

.navbar-brand .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  transition: box-shadow var(--transition), transform var(--transition);
}

.navbar-brand .logo img {
  display: block;
  max-width: 170px;
  width: auto;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.navbar-brand:hover .logo {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

/* Nav links */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width var(--transition), left var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
  left: 20%;
}

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

.nav-cta {
  background: var(--gold-accent) !important;
  color: var(--forest-green-dark) !important;
  font-weight: 600;
  border-radius: 6px;
  margin-left: 0.5rem;
  padding: 0.55rem 1.35rem !important;
  box-shadow: 0 2px 12px rgba(201, 169, 98, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--forest-green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.45);
}

/* Mobile toggler */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0.45rem 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.35);
}

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

@media (max-width: 991.98px) {
  .header .navbar {
    padding: 0.75rem 0;
  }

  .navbar-collapse {
    background: rgba(0, 35, 20, 0.95);
    margin-top: 0.85rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.75rem;
    display: inline-block;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand .logo {
    padding: 6px 12px;
    border-radius: 6px;
  }

  .navbar-brand .logo img {
    max-width: 140px;
    max-height: 42px;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Fallback if image fails to load */
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--wood-brown) 100%);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(8, 28, 21, 0.88) 0%,
    rgba(27, 67, 50, 0.75) 40%,
    rgba(62, 39, 35, 0.7) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 60px) 0 80px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid rgba(201, 169, 98, 0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  z-index: 2;
  animation: bounceScroll 2s ease-in-out infinite;
  transition: color var(--transition);
}

.hero-scroll:hover {
  color: var(--gold-accent);
}

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

@media (max-width: 767.98px) {
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  background: var(--white);
}

.about-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-image {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold-accent);
  border-radius: 8px;
  z-index: -1;
}

.about-year {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--forest-green);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
}

.about-facts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--beige);
  border-radius: 8px;
  border-left: 4px solid var(--forest-green-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-facts li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.about-facts i {
  font-size: 1.5rem;
  color: var(--forest-green-light);
  flex-shrink: 0;
}

.about-facts strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.about-facts span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-green-dark);
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 28, 21, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card-img::after {
  opacity: 1;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.btn-product {
  align-self: flex-start;
  background: transparent;
  border: 2px solid var(--forest-green-light);
  color: var(--forest-green);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-product:hover {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: var(--white);
  transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section {
  background: linear-gradient(160deg, var(--forest-green-dark) 0%, var(--forest-green) 50%, var(--wood-brown) 100%);
  position: relative;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 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");
  pointer-events: none;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 169, 98, 0.4);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--forest-green-dark);
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   BUSINESS OPERATIONS
   ========================================================================== */
.operations-section {
  background: var(--white);
}

.stat-card {
  background: var(--beige);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  border: 1px solid var(--beige-dark);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-green);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 1.5rem;
}

.stat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.stat-list li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px dashed var(--beige-dark);
}

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

.stat-highlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 0.25rem;
}

.stat-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.stat-card p {
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industries-section {
  background: var(--cream);
}

.industry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem 1rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--forest-green-light);
}

.industry-card i {
  display: block;
  font-size: 2rem;
  color: var(--forest-green-light);
  margin-bottom: 0.75rem;
  transition: color var(--transition), transform var(--transition);
}

.industry-card:hover i {
  color: var(--gold-accent);
  transform: scale(1.15);
}

.industry-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  display: block;
}

@media (max-width: 991.98px) {
  .industries-section .col-lg-2 {
    flex: 0 0 auto;
    width: 33.333%;
  }
}

/* ==========================================================================
   GLOBAL EXPORT
   ========================================================================== */
.global-section {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, #0d2818 100%);
  overflow: hidden;
}

.global-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.export-routes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.export-route {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 4px solid var(--gold-accent);
  transition: background var(--transition), transform var(--transition);
}

.export-route:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.route-from {
  font-weight: 600;
  color: var(--gold-light);
  min-width: 80px;
}

.export-route i {
  color: rgba(255, 255, 255, 0.5);
}

.route-to {
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
}

/* Map visual */
.map-visual {
  position: relative;
  padding: 2rem;
}

.map-bg {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  overflow: hidden;
}

.world-map-svg {
  width: 100%;
  height: auto;
}

.map-dot {
  fill: var(--gold-light);
  animation: mapPulse 2s ease-in-out infinite;
}

.map-dot.hub {
  fill: var(--gold-accent);
  r: 10;
}

.map-line {
  animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -20; }
}

@keyframes mapPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.map-pulse {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--beige) 100%);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--beige-dark);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--forest-green-light);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.contact-info-card {
  background: var(--forest-green-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-details i {
  font-size: 1.25rem;
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-details strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.contact-details span,
.contact-details a {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--forest-green-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand .site-logo--footer {
  display: block;
  width: auto;
  max-width: 220px;
  height: 52px;
  object-fit: contain;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-brand:hover .site-logo--footer {
  opacity: 0.92;
  transform: scale(1.02);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: var(--gold-light);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

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

.footer-contact i {
  color: var(--gold-accent);
  margin-right: 0.5rem;
}

/* Premium bottom credits bar */
.footer-credits {
  background: #000000;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer-credits-container {
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

.footer-credits-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.footer-credits-text {
  margin: 0;
  flex: 1;
  min-width: 260px;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer-credits-highlight {
  color: #c9a962;
  background: linear-gradient(135deg, #e8d5a8 0%, #c9a962 45%, #a8843f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition), filter var(--transition);
}

.footer-credits-highlight:hover {
  opacity: 0.9;
  filter: brightness(1.15);
  -webkit-text-fill-color: transparent;
}

.footer-credits-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-credits-logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
}

.footer-credits-logo:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

@media (max-width: 991.98px) {
  .footer-credits-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 0;
  }

  .footer-credits-text {
    min-width: 0;
  }

  .footer-credits-logo img {
    max-width: 160px;
    max-height: 50px;
  }
}

@media (max-width: 575.98px) {
  .footer-credits-text {
    font-size: 0.78rem;
    line-height: 1.55;
  }
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  z-index: 1020;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-accent);
  color: var(--forest-green-dark);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 60px 0;
  }

  .about-image-accent {
    display: none;
  }

  .contact-info-card {
    margin-top: 1rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
