/**
 * Co.Lab 創思共享 - Component Styles
 * Modern Consultative Design v2.0.0
 */

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 16px 32px;
  z-index: var(--z-max);
  border-bottom: 2px solid var(--brick-orange);
  box-shadow: 0 4px 30px rgba(213, 106, 62, 0.3);
}

.nav-container {
  max-width: var(--container-xxl);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  height: 100%;
  padding: 0 24px;
  margin-left: -32px;
  border-right: 4px solid var(--brick-orange);
  /* Stronger slant: 80% instead of 90% */
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  padding-right: 48px;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.nav-logo-icon {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.nav-menu a {
  text-decoration: none;
  color: var(--off-white);
  transition: color var(--transition-normal);
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brick-orange), var(--champagne-gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-menu a:hover {
  color: var(--brick-orange);
}

.nav-menu a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Menu (Hidden by default) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 0;
  border-bottom: 2px solid var(--brick-orange);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: var(--z-sticky);
}

.mobile-menu a {
  display: block;
  padding: 16px 32px;
  color: var(--off-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-normal);
  border-left: 4px solid transparent;
}

.mobile-menu a:hover {
  background: rgba(213, 106, 62, 0.1);
  border-left-color: var(--brick-orange);
  color: var(--brick-orange);
}

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

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.hamburger:hover span {
  background: var(--champagne-gold);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

@media (max-width: 767px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* Ripple effect */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  color: var(--white);
  box-shadow: var(--glow-orange);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 50px rgba(213, 106, 62, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--brick-orange);
  border: 2px solid var(--brick-orange);
}

.btn-secondary:hover {
  background: var(--brick-orange);
  color: var(--white);
  transform: translateY(-4px) scale(1.05);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  max-width: var(--container-xxl);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: linear-gradient(135deg, rgba(213, 106, 62, 0.1), rgba(217, 178, 95, 0.05));
  padding: 48px;
  border-radius: 24px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.5s var(--ease-smooth);
}

/* Animated gradient border on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(213, 106, 62, 0.4);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: var(--glow-orange);
}

.service-title {
  font-family: var(--font-heading-en);
  font-size: var(--font-h3);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  line-height: var(--line-height-normal);
}

.service-description {
  font-size: 16px;
  line-height: var(--line-height-loose);
  color: var(--light-gray);
  margin-bottom: 24px;
}

/* ===== CONSULTATIVE CONTENT COMPONENTS ===== */
.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.large-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--light-gray);
  margin: 0 0 24px 0;
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--light-gray);
  margin: 0 0 20px 0;
}

.philosophy-content .large-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}

.narrative-tagline {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid var(--brick-orange);
}

.highlight-subtle {
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 767px) {
  .large-text {
    font-size: 16px;
  }

  .philosophy-content .large-text {
    font-size: 18px;
  }
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.content-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--light-gray);
  font-size: 16px;
  line-height: var(--line-height-loose);
}

.content-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--brick-orange);
  font-size: 12px;
  top: 16px;
}

.insight-box {
  background: linear-gradient(135deg, rgba(213, 106, 62, 0.15), rgba(217, 178, 95, 0.1));
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--brick-orange);
  margin: 32px auto 0;
  max-width: 900px;
}

.insight-box p {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.content-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 24px;
}

.content-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brick-orange);
  transform: translateY(-4px);
}

.content-card h3 {
  color: var(--white);
  margin-bottom: 16px;
}

/* Grid for comparison cards */
.comparison-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin: 32px auto;
  max-width: 900px;
}

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

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.comparison-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(217, 178, 95, 0.3);
  transform: translateY(-4px);
}

.comparison-card h3 {
  color: var(--champagne-gold);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.comparison-card > p {
  color: var(--light-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.comparison-card .content-list {
  margin: 16px 0 20px 0;
}

.comparison-card .content-list li {
  font-size: 15px;
  padding: 10px 0 10px 32px;
  color: var(--light-gray);
}

.highlight-text {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .comparison-card {
    padding: 24px;
  }

  .comparison-card h3 {
    font-size: 18px;
  }

  .comparison-card > p,
  .comparison-card .content-list li {
    font-size: 14px;
  }

  .highlight-text {
    font-size: 15px;
  }
}

/* Grid for risk/concern cards */
.risk-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin: 32px auto;
  max-width: 900px;
}

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

.risk-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.risk-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(213, 106, 62, 0.3);
  transform: translateY(-4px);
}

.risk-item h3 {
  color: var(--champagne-gold);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.risk-item p {
  color: var(--light-gray);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767px) {
  .risk-item {
    padding: 24px;
  }

  .risk-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .risk-item p {
    font-size: 14px;
  }
}

/* ===== GALLERY ===== */
.gallery-wrapper {
  max-width: var(--container-xxl);
  margin: 0 auto;
  position: relative;
}

.gallery-grid {
  display: none; /* Hide all grids by default */
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: fadeIn 0.5s ease;
}

.gallery-grid.active {
  display: grid; /* Show active grid */
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.gallery-nav {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-nav:hover:not(:disabled) {
  background: var(--brick-orange);
  border-color: var(--brick-orange);
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--brick-orange);
  transform: scale(1.2);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s var(--ease-smooth);
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(213, 106, 62, 0.5), rgba(217, 178, 95, 0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-item:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 60px rgba(213, 106, 62, 0.5);
}

.gallery-item:hover::before {
  opacity: 0.7;
}

.gallery-item:hover img {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.1);
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 60px 20px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  border-color: transparent;
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 767px) {
  .lightbox {
    padding: 80px 10px 100px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 70vh;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 48px;
    height: 48px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-caption {
    bottom: 20px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  max-width: var(--container-xxl);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--dark-charcoal);
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(213, 106, 62, 0.3);
  transition: all 0.5s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(213, 106, 62, 0.5);
  border-color: var(--brick-orange);
}

.pricing-header {
  background: linear-gradient(135deg, var(--brick-orange), var(--brick-orange));
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Different gradient for each card */
.pricing-card:nth-child(2) .pricing-header {
  background: linear-gradient(135deg, var(--champagne-gold), var(--light-gold));
}

.pricing-card:nth-child(3) .pricing-header {
  background: linear-gradient(135deg, var(--charcoal), var(--brick-orange));
}

.pricing-plan {
  font-family: var(--font-heading-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

/* Dark text for gold card */
.pricing-card:nth-child(2) .pricing-plan,
.pricing-card:nth-child(2) .pricing-price {
  color: var(--charcoal);
}

.pricing-price {
  font-size: 40px;
  font-weight: 900;
  font-family: var(--font-heading-en);
  color: var(--white);
}

.pricing-price small {
  font-size: 18px;
  font-weight: 500;
  margin-left: 4px;
  opacity: 0.9;
}

.pricing-price-unit {
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin-top: 8px;
  opacity: 0.9;
}

.pricing-body {
  padding: 40px 32px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-description {
  font-size: 16px;
  line-height: var(--line-height-loose);
  color: var(--light-gray);
  margin-bottom: 32px;
  text-align: center;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: auto;
}

.pricing-features li {
  padding: 14px 0;
  font-size: 15px;
  color: var(--off-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✦';
  color: var(--brick-orange);
  font-size: 16px;
}

.pricing-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.pricing-footer strong {
  color: var(--brick-orange);
  font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  background: var(--dark-charcoal);
  padding: 56px;
  border-radius: 24px;
  margin-bottom: 48px;
  border: 2px solid rgba(213, 106, 62, 0.3);
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  background: var(--dark-charcoal);
  padding: 56px;
  border-radius: 24px;
  border: 2px solid rgba(217, 178, 95, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form h3 {
  font-family: var(--font-heading-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
}

.contact-form form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info h3 {
  font-family: var(--font-heading-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .contact-form,
  .contact-info {
    padding: 32px 24px;
  }

  /* Pricing mobile optimization */
  .pricing-header {
    padding: 32px 24px;
  }
  
  .pricing-plan {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .pricing-price {
    font-size: 32px;
    white-space: nowrap;
  }
  
  .pricing-price small {
    font-size: 15px;
  }
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact-item {
    margin-bottom: 28px;
  }
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-orange);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item > div:not(.contact-icon) {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brick-orange);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: 4px;
  line-height: 1.2;
}

.contact-value {
  font-size: 16px;
  color: var(--white);
  line-height: 1.4;
  display: block;
  text-decoration: none;
  transition: color var(--transition-normal);
}

.contact-value:hover {
  color: var(--brick-orange);
}

@media (max-width: 767px) {
  .contact-value {
    font-size: 15px; /* Optimized to ensure address + map link fit in 2 lines */
  }
}

.map-link {
  font-size: 13px;
  color: var(--brick-orange);
  text-decoration: underline;
  transition: color var(--transition-normal);
  display: inline-block;
  margin-left: 8px;
  white-space: nowrap;
}

.map-link:hover {
  color: var(--champagne-gold);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 24px;
}

.form-group label,
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select,
.form-group textarea,
.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: all var(--transition-normal);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23F8F9FA' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-group select option {
  background: var(--dark-charcoal);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brick-orange);
  box-shadow: 0 0 0 4px rgba(213, 106, 62, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

.form-group textarea,
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--brick-orange), var(--champagne-gold));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  cursor: pointer;
  box-shadow: var(--glow-orange);
  transition: all 0.4s var(--ease-smooth);
}

.form-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 50px rgba(213, 106, 62, 0.6);
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--dark-charcoal);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-max);
  transition: transform 0.4s var(--ease-smooth), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  border: 2px solid var(--brick-orange);
  max-width: 90%;
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-success {
  border-color: var(--color-success);
}

.toast-error {
  border-color: var(--color-error);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
  font-size: 14px;
  color: var(--light-gray);
  line-height: var(--line-height-loose);
  margin-bottom: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 24px;
}

.footer a {
  color: var(--brick-orange);
  transition: color var(--transition-normal);
}

.footer a:hover {
  color: var(--champagne-gold);
}

/* ===== BACK TO TOP BUTTON (Desktop) ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-fixed);
  padding: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(213, 106, 62, 0.4);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.progress-ring-indicator {
  stroke: var(--brick-orange);
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.back-to-top-icon {
  position: relative;
  z-index: 1;
  color: var(--brick-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MOBILE ACTION BAR ===== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: var(--z-max);
  padding: 8px 0 24px 0;
  justify-content: space-around;
  align-items: flex-end;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--light-gray);
  transition: all 0.3s ease;
  width: 25%;
  position: relative;
}

.action-item:hover,
.action-item:active {
  color: var(--brick-orange);
}

.icon-container {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.action-icon {
  stroke: currentColor;
  transition: stroke 0.3s ease;
}

.action-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.progress-ring-mini {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.progress-ring-mini-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.progress-ring-mini-indicator {
  stroke: var(--brick-orange);
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* Visibility Control */
@media (max-width: 767px) {
  .mobile-action-bar {
    display: flex;
  }
  
  .back-to-top {
    display: none !important;
  }
  
  body {
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none !important;
  }
}