:root {
  --primary-color: #2c5f2d;
  --secondary-color: #97bc62;
  --accent-color: #ffa500;
  --dark-color: #121212;
  --light-color: #f6f7f9;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #e5e7eb;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .12);
  --shadow-lg: 0 18px 60px rgba(0, 0, 0, .16);

  --font-primary: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  --font-secondary: ui-serif, Georgia, "Times New Roman", Times, serif;

  --focus-ring: 0 0 0 4px rgba(44, 95, 45, .18);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(151, 188, 98, .18), transparent 55%),
    radial-gradient(900px 700px at 90% 0%, rgba(255, 165, 0, .12), transparent 55%),
    var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px
}

::selection {
  background: rgba(151, 188, 98, .35)
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--dark-color);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-md)
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  z-index: 3000;
  outline: none
}

header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.navbar {
  padding: 14px 0
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.logo h1 {
  font-family: var(--font-secondary);
  font-size: 28px;
  color: var(--primary-color);
  letter-spacing: .3px;
}

.logo .tagline {
  font-size: 12px;
  color: var(--gray);
  margin-top: -2px
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 700;
  color: rgba(17, 24, 39, .86);
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .2s, color .2s, transform .2s;
}

.nav-menu a:hover {
  background: rgba(151, 188, 98, .18);
  color: var(--primary-color)
}

.nav-menu a.active {
  background: rgba(44, 95, 45, .10);
  color: var(--primary-color)
}

.btn-reserva {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(135deg, var(--accent-color), #ffb84d);
  color: #1f2937;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s;
}

.btn-reserva:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md)
}

.btn-reserva:active {
  transform: translateY(0)
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: var(--focus-ring);
  border-color: rgba(44, 95, 45, .55)
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #1e4620);
  color: var(--white);
  padding: 12px 18px;
  border: 0;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px)
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-color), #ffb84d);
  color: #1f2937;
  padding: 11px 18px;
  border: 2px solid rgba(255, 165, 0, .75);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ffb84d, var(--accent-color));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, .6));
  color: var(--primary-color);
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, .55);
}

.btn-primary-large:hover {
  transform: translateY(-1px);
  filter: brightness(1.03)
}

.hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .5)),
    /* capa oscura para leer texto */
    url("fotos/hotel\ laguna.jpg");
  /* TU IMAGEN */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 18px;
  max-width: 820px;
}

.hero-content h2 {
  font-family: var(--font-secondary);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: .4px;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.hero-content p {
  font-size: clamp(16px, 2.2vw, 20px);
  opacity: .96;
  margin-bottom: 22px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}

@keyframes fondoAnimado {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes destellosSuaves {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .45;
  }

  50% {
    transform: translate3d(-18px, 10px, 0) scale(1.08);
    opacity: .72;
  }

  100% {
    transform: translate3d(18px, -12px, 0) scale(1.12);
    opacity: .52;
  }
}

.page-header {
  padding: 52px 0 34px;
  text-align: center;
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(151, 188, 98, .18), transparent 55%),
    radial-gradient(700px 500px at 90% 20%, rgba(255, 165, 0, .12), transparent 55%),
    var(--light-color);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.page-header h1 {
  font-family: var(--font-secondary);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--primary-color);
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(17, 24, 39, .7)
}

.mission-vision,
.rooms-preview,
.features,
.contact-section,
.reservation-section,
.rooms-listing {
  padding: 52px 0
}

.mission-vision .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission,
.vision {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.mission h3,
.vision h3 {
  color: var(--primary-color);
  margin-bottom: 10px
}

.mission p,
.vision p {
  color: rgba(17, 24, 39, .78)
}

.rooms-preview {
  background: linear-gradient(180deg, rgba(246, 247, 249, .9), rgba(246, 247, 249, .6));
}

.rooms-preview h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 34px;
  margin-bottom: 8px;
  font-family: var(--font-secondary);
}

.rooms-preview .subtitle {
  text-align: center;
  color: rgba(17, 24, 39, .68);
  margin-bottom: 18px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.room-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .25s ease;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.room-image {
  height: 200px;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(151, 188, 98, .28), transparent 60%),
    radial-gradient(500px 280px at 90% 0%, rgba(255, 165, 0, .25), transparent 55%),
    linear-gradient(135deg, rgba(44, 95, 45, .45), rgba(17, 24, 39, .38));
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card h4 {
  padding: 14px 14px 0;
  color: var(--primary-color)
}

.room-card p {
  padding: 8px 14px 0;
  color: rgba(17, 24, 39, .72)
}

.room-card .btn-secondary {
  margin: 14px
}

.features h2 {
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 34px;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 10px
}

.feature h4 {
  color: rgba(17, 24, 39, .86);
  margin-bottom: 6px
}

.feature p {
  color: rgba(17, 24, 39, .70);
  font-size: 14px
}

.rooms-listing .container {
  display: grid;
  gap: 18px
}

.room-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
}

.room-info {
  padding: 22px
}

.room-info h2 {
  font-family: var(--font-secondary);
  margin-bottom: 8px;
  letter-spacing: .2px;
}

.room-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .3px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(44, 95, 45, .08);
  color: rgba(17, 24, 39, .78);
  margin-bottom: 12px;
}

.room-pricing {
  margin: 14px 0 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 165, 0, .14), rgba(151, 188, 98, .14));
  border: 1px solid rgba(0, 0, 0, .06);
}

.room-pricing .price {
  font-size: 34px;
  font-weight: 900;
  color: rgba(17, 24, 39, .88)
}

.room-pricing .per-night {
  color: rgba(17, 24, 39, .62);
  font-size: 13px
}

.room-amenities h4 {
  color: var(--primary-color);
  margin: 12px 0 8px
}

.room-amenities ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.room-amenities li {
  background: rgba(246, 247, 249, .9);
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(17, 24, 39, .75);
  font-size: 14px;
}

.room-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px
}

.room-gallery {
  position: relative;
  background: rgba(17, 24, 39, .06)
}

.carousel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.carousel input {
  position: absolute;
  left: -9999px
}

.carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform .35s ease;
}

.carousel-slide {
  position: relative;
  width: calc(100% / 3);
  min-height: 360px;
  display: grid;
  place-items: end start;
  padding: 18px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(255, 255, 255, .22), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(255, 255, 255, .12), transparent 60%),
    linear-gradient(135deg, rgba(17, 24, 39, .55), rgba(17, 24, 39, .75));
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide .slide-label {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.single-slide .carousel-track {
  width: 100%
}

.single-slide .carousel-slide {
  width: 100%
}

.carousel-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .22);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, .32)
}

.carousel-btn.prev {
  left: 12px
}

.carousel-btn.next {
  right: 12px
}

.carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .18);
  pointer-events: auto;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.carousel input:nth-of-type(1):checked~.carousel-track {
  transform: translateX(0)
}

.carousel input:nth-of-type(2):checked~.carousel-track {
  transform: translateX(-33.3333%)
}

.carousel input:nth-of-type(3):checked~.carousel-track {
  transform: translateX(-66.6666%)
}

.carousel input:nth-of-type(1):checked~.carousel-dots label:nth-child(1),
.carousel input:nth-of-type(2):checked~.carousel-dots label:nth-child(2),
.carousel input:nth-of-type(3):checked~.carousel-dots label:nth-child(3) {
  background: rgba(255, 255, 255, .98)
}

/* SECCION POR QUE VISITAR */
.why-visit {
  padding: 50px 0;
  background: linear-gradient(180deg, #f6f7f9, #ffffff);
}

.why-visit h2 {
  text-align: center;
  font-family: var(--font-secondary);
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 10px;
}

.why-visit .subtitle {
  text-align: center;
  color: rgba(17, 24, 39, .7);
  margin-bottom: 30px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* TARJETAS */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

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

/* ICONO */
.why-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* TITULO */
.why-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* TEXTO */
.why-card p {
  color: rgba(17, 24, 39, .7);
  font-size: 14px;
}

.availability-panel,
.contact-form-section,
.faq-section {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.availability-panel h2,
.contact-form-section h2,
.faq-section h2 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-family: var(--font-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group.full-width {
  grid-column: 1 / -1
}

.form-group label {
  font-weight: 800;
  font-size: 13px;
  color: rgba(17, 24, 39, .82);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 12px;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  font-size: 15px;
  background: rgba(255, 255, 255, .9);
}

.help-text {
  font-size: 12px;
  color: rgba(17, 24, 39, .62)
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap
}

.cta-section {
  background: linear-gradient(135deg, rgba(44, 95, 45, .95), rgba(30, 70, 32, .95));
  color: var(--white);
  text-align: center;
  padding: 52px 0;
}

.cta-section h2 {
  font-family: var(--font-secondary);
  font-size: 34px;
  margin-bottom: 8px;
}

.cta-section p {
  opacity: .92;
  margin-bottom: 14px
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 34px
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px
}

.social-links a {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(44, 95, 45, .08);
  text-decoration: none;
  font-weight: 900;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: 0;
}

.map-placeholder {
  height: 260px;
  display: grid;
  place-items: center;
  color: rgba(17, 24, 39, .65);
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(151, 188, 98, .22), transparent 60%),
    radial-gradient(600px 320px at 90% 10%, rgba(255, 165, 0, .18), transparent 60%),
    rgba(246, 247, 249, .9);
}


footer {
  margin-top: 24px;
  background: #0b0f14;
  color: rgba(255, 255, 255, .92);
  padding: 46px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.footer-section h4 {
  color: rgba(151, 188, 98, .95);
  margin-bottom: 10px
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.footer-section a:hover {
  color: rgba(151, 188, 98, .95)
}

.footer-section ul {
  list-style: none;
  display: grid;
  gap: 8px
}

.footer-bottom {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

@media (max-width:920px) {
  .navbar .container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-menu {
    justify-content: center
  }
}

@media (max-width:768px) {
  .mission-vision .container {
    grid-template-columns: 1fr
  }

  .room-detail {
    grid-template-columns: 1fr
  }

  .carousel,
  .carousel-slide {
    min-height: 300px
  }
}

.reservation-layout {
  display: grid;
  gap: 18px
}

.terms-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px
}

.terms-wrap input {
  margin-top: 4px
}

.summary-status {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(44, 95, 45, .08);
  border: 1px solid rgba(44, 95, 45, .12);
  color: rgba(17, 24, 39, .82);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.summary-card-box {
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  padding: 16px;
  background: rgba(246, 247, 249, .9);
}

.summary-card-box h3 {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 6px;
}

.summary-card-box p {
  color: rgba(17, 24, 39, .78)
}

.cost-summary-vue {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.cost-item.total {
  font-weight: 900;
  color: var(--primary-color);
  border-bottom: 0;
}

.summary-note {
  color: rgba(17, 24, 39, .72);
  margin-top: 8px
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.custom-table thead {
  background: #1f5c2e;
  color: #fff;
}

.custom-table th,
.custom-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.custom-table tbody tr:hover {
  background: #f9fafb;
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .2s;
}

.btn-danger:hover {
  background: #b91c1c;
}

.section {
  padding: 60px 0;
}

.page-header {
  padding: 60px 0 40px;
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(17, 24, 39, .7);
}

.table-wrapper {
  margin-top: 20px;
}

.custom-table {
  min-width: 900px;
}

.custom-table th {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .3px;
}

.custom-table td {
  vertical-align: middle;
}

.custom-table td:last-child {
  min-width: 220px;
}

.btn-primary,
.btn-secondary,
.btn-danger {
  min-height: 42px;
}

.btn-primary {
  background: linear-gradient(135deg, #1f5c2e, #174521);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: linear-gradient(135deg, #f59e0b, #ffb84d);
  color: #111827;
  border: none;
}

.btn-secondary:hover {
  filter: brightness(1.03);
}

.btn-danger {
  border: none;
}

.container h2 {
  color: var(--primary-color);
}

.table-wrapper {
  margin-top: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.custom-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  box-shadow: none;
  border-radius: 0;
}

.custom-table thead {
  background: #1f5c2e;
  color: #ffffff;
}

.custom-table th {
  padding: 18px 16px;
  font-weight: 800;
}

.custom-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.custom-table tbody tr:last-child td {
  border-bottom: none;
}

.custom-table tbody tr:hover {
  background: #f9fafb;
}

.custom-table td:nth-child(3) {
  word-break: break-word;
}

.custom-table td:last-child div {
  display: flex !important;
  gap: 10px !important;
  align-items: center;
}

.custom-table td:last-child a {
  text-decoration: none;
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 14px;
  background: #dc2626;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.btn-danger:hover {
  background: #b91c1c;
}