/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --color-brand-dark: #2B1D16;
  /* Deep Rich Brown */
  --color-brand-medium: #50392B;
  /* Warm Medium Brown */
  --color-accent: #B77F17;
  /* Gold/Mustard Yellow */
  --color-accent-hover: #D6971C;
  /* Lighter Gold/Yellow */
  --color-bg-cream: #FAF6EE;
  /* Light Yellowish Sand BG */
  --color-bg-card: #F1E8D9;
  /* Warm Creamy Card BG */
  --color-white: #FFFFFF;
  --color-text-dark: #2B1D16;
  /* Deep Brown Text */
  --color-text-light: #F9EFCF;
  /* Light Creamy Yellow Text */
  --color-text-muted: #7E6759;
  /* Muted Brownish Gray Text */

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 15px 35px rgba(43, 29, 22, 0.08);
  --shadow-hover: 0 25px 50px rgba(43, 29, 22, 0.15);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

p {
  text-align: justify;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Scale the container up on larger screens instead of freezing at 1200px */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding: 0 2.5rem;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
    padding: 0 3rem;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1680px;
    padding: 0 3rem;
  }
}

/* Top Contact Bar */
.top-bar {
  background-color: var(--color-brand-dark);
  color: var(--color-text-light);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(249, 239, 207, 0.1);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right a {
  color: var(--color-text-light);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: var(--transition-smooth);
}

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

/* Header & Nav */
.main-header {
  background-color: var(--color-white);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border: 1px solid rgba(80, 57, 43, 0.12);
  box-shadow: 0 4px 12px rgba(43, 29, 22, 0.06);
  border-radius: 50%;
  transition: var(--transition-smooth);
  width: 70px;
  height: 70px;
  overflow: hidden;
  padding: 2px;
}

.logo a:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 16px rgba(183, 127, 23, 0.12);
}

.logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transform: scale(1.45) translateY(-3px);
  display: block;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-brand-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta).active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-accent);
}

.nav-menu a.nav-cta {
  background-color: var(--color-brand-dark);
  color: var(--color-white);
  margin-left: 1rem;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
}

.nav-menu a.nav-cta:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-brand-dark);
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(183, 127, 23, 0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.btn-accent {
  background-color: var(--color-brand-dark);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: var(--color-brand-medium);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.badge {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 29, 22, 0.65) 0%, rgba(80, 57, 43, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-align: center;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  z-index: 2;
}

.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-white);
  border-radius: 50%;
  margin: 5px auto 0;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* ==========================================
   TICKER / MARQUEE
   ========================================== */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.75rem 0;
  white-space: nowrap;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ticker-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.ticker-item i {
  margin-right: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================
   STAT STRIP
   ========================================== */
.stat-strip {
  background-color: var(--color-bg-card);
  color: var(--color-text-dark);
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(43, 29, 22, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 0.5rem;
}

.stat-num-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-brand-dark);
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-left: 0.1rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  padding: 7rem 0;
  background-color: var(--color-bg-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-brand-dark);
}

.feat-item i {
  color: var(--color-accent);
}

.about-visual {
  background-color: var(--color-brand-dark);
  padding: 3rem;
  border-radius: 12px;
  color: var(--color-white);
  box-shadow: var(--shadow-premium);
}

.about-image-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.about-image-card ul {
  list-style: none;
}

.about-image-card li {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-image-card li strong {
  color: var(--color-accent);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
  padding: 7rem 0;
  background-color: var(--color-bg-card);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-brand-dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.products-section .section-sub {
  text-align: center;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.dest-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-brand-medium);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.card-image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--color-brand-dark);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.prod-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(249, 239, 207, 0.15);
  background: linear-gradient(135deg, #3E291D 0%, #1A110B 100%);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(43, 29, 22, 0.98) 15%, rgba(43, 29, 22, 0.4) 55%, rgba(43, 29, 22, 0) 100%);
  transition: var(--transition-smooth);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.card-stat-badge {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 0.85rem;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.card-hover-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card-hook {
  font-size: 0.88rem;
  color: var(--color-text-light);
  opacity: 0.85;
  margin-bottom: 0.85rem;
  font-weight: 300;
}

.card-season {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  font-weight: 600;
}

/* Card Hover States */
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.dest-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(43, 29, 22, 0.98) 30%, rgba(43, 29, 22, 0.6) 70%, rgba(43, 29, 22, 0.2) 100%);
}

.dest-card:hover .card-hover-details {
  max-height: 150px;
  opacity: 1;
  margin-top: 0.5rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 7rem 0;
  background-color: var(--color-bg-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}

.why-col {
  padding: 3rem 2rem;
  background-color: var(--color-bg-card);
  border-radius: 12px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(43, 29, 22, 0.04);
}

.why-col:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.why-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(80, 57, 43, 0.08);
  color: var(--color-brand-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-col h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--color-brand-dark);
}

.why-col p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================
   PORTS & NATIONWIDE OPERATIONS SECTION
   ========================================== */
.ports-section {
  padding: 7rem 0;
  background-color: var(--color-brand-medium);
  color: var(--color-white);
}

.ports-section .section-title {
  color: var(--color-white);
}

.ports-section .section-sub {
  color: var(--color-text-light);
  opacity: 0.85;
}

.ports-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .ports-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.ports-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 480px;
}

.ports-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.ports-search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem !important;
  background-color: rgba(43, 29, 22, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important;
  border-radius: 30px !important;
  font-size: 1rem !important;
  transition: var(--transition-smooth);
}

.ports-search-input:focus {
  background-color: rgba(43, 29, 22, 0.6) !important;
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(183, 127, 23, 0.15) !important;
}

.ports-tabs {
  display: flex;
  gap: 0.75rem;
  background-color: rgba(43, 29, 22, 0.4);
  padding: 0.4rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.port-tab-btn {
  background: transparent;
  border: none;
  color: var(--color-text-light);
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.port-tab-btn:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.port-tab-btn.active {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(183, 127, 23, 0.2);
}

.ports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .ports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ports-grid {
    grid-template-columns: 1fr;
  }
}

.port-pill {
  background-color: rgba(43, 29, 22, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.port-pill.hidden {
  display: none !important;
}

.port-pill:hover {
  transform: translateY(-3px);
  background-color: rgba(43, 29, 22, 0.6);
  border-color: rgba(183, 127, 23, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.port-pill-indicator {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--color-accent);
}

.port-pill.east .port-pill-indicator {
  background-color: #3b82f6;
  /* Blue indicator for East Coast */
}

.port-pill-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
}

.port-pill-coast {
  font-size: 0.8rem;
  color: var(--color-text-light);
  opacity: 0.7;
}

.no-ports-found {
  text-align: center;
  padding: 3rem;
  font-size: 1.1rem;
  color: var(--color-text-light);
  background-color: rgba(43, 29, 22, 0.2);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-us-section {
  padding: 7rem 0;
  background-color: var(--color-bg-cream);
}

.why-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .why-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.why-hq-panel {
  background-color: var(--color-brand-medium);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
}

.why-hq-panel h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.why-hq-panel p {
  font-size: 0.98rem;
  color: var(--color-text-light);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.why-hq-panel p:last-child {
  margin-bottom: 0;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--color-white);
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(80, 57, 43, 0.05);
  transition: var(--transition-smooth);
}

.why-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(183, 127, 23, 0.2);
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: rgba(183, 127, 23, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon svg {
  width: 26px;
  height: 26px;
}

.why-feature-info h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-brand-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-feature-info p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: justify;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  padding: 7rem 0;
  background-color: var(--color-bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.contact-text-box h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--color-brand-dark);
}

.contact-text-box p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--color-brand-dark);
}

.c-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.c-item a:hover {
  color: var(--color-accent);
}

.c-item i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.contact-form-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-brand-dark);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(80, 57, 43, 0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: #FAF9F6;
  color: var(--color-brand-dark);
  transition: var(--transition-smooth);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(183, 127, 23, 0.08);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-feedback.success {
  color: #2e7d32;
}

.form-feedback.error {
  color: #c62828;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 7rem 0;
  background-color: var(--color-bg-card);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
  background-color: #1B100A;
  color: var(--color-text-muted);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {

  .about-grid,
  .map-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-text {
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .top-bar-right a {
    margin: 0 0.75rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .nav-menu a.nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.section-gap p {
  margin-bottom: 1.2rem;
}

.section-gap p:last-child {
  margin-bottom: 0;
}