.services-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 2rem;
  border-top: 4px solid var(--blue);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 113, 168, 0.15);
}
.service-card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-list {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-list li {
  color: var(--text-muted);
  font-size: 0.87rem;
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
/* =============================================
   FACILITY — MAGAZINE PHOTO CARD LAYOUT
   ============================================= */
.facility-section {
  background: #08111d;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.facility-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0, rgba(200,169,110,0.07) 0, transparent 55%),
              radial-gradient(ellipse at 80% 100%, rgba(0,113,168,0.07) 0, transparent 55%);
  pointer-events: none;
}
.facility-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.facility-masthead {
  text-align: center;
  margin-bottom: 3.5rem;
}
.facility-section h2 {
  color: #c8a96e;
}
.facility-section .section-sub {
  color: rgba(255,255,255,0.6);
  max-width: 650px;
  margin: 0 auto;
}
.facility-section .divider {
  background: linear-gradient(90deg, transparent, #c8a96e, transparent);
  margin: 0.6rem auto 1.2rem;
  width: 80px;
  height: 2px;
  border: none;
  display: block;
}

/* Grid */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.fac-card--wide {
  grid-column: 1 / -1;
}

/* Base card */
.fac-card {
  border-radius: 16px;
  overflow: hidden;
  background: #111d2e;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s,
              border-color 0.3s;
}
.fac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border-color: rgba(200,169,110,0.3);
}

/* Photo header */
.fac-photo {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  filter: saturate(0.65) brightness(0.82);
  transition: filter 0.45s, background-size 0.5s ease;
}
.fac-card--wide .fac-photo {
  height: 300px;
}
.fac-card:hover .fac-photo {
  filter: saturate(0.85) brightness(0.95);
  background-size: 108%;
}

/* Gold tint reveal from below */
.fac-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(200,169,110,0.35) 0%,
    rgba(0,0,0,0.25) 40%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.fac-card:hover .fac-photo-overlay {
  opacity: 1;
}

/* Number badge */
.fac-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  font-family: Georgia, serif;
  transition: color 0.3s;
}
.fac-card:hover .fac-num {
  color: rgba(200,169,110,0.25);
}

/* Card body */
.fac-body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fac-card--wide .fac-body {
  max-width: 780px;
}

.fac-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.fac-desc {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  flex: 1;
  margin: 0 0 1rem;
}

/* Spec tag */
.fac-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8a96e;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 20px;
  padding: 0.22rem 0.85rem;
  align-self: flex-start;
  transition: background 0.25s;
}
.fac-card:hover .fac-tag {
  background: rgba(200,169,110,0.2);
}

/* Stats strip */
.fac-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(200,169,110,0.07);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  flex-wrap: wrap;
}
.fac-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.5rem 1rem;
}
.fac-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #c8a96e;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.fac-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.fac-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(200,169,110,0.2);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .fac-card--wide { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .facility-section { padding: 4rem 1.2rem; }
  .facility-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .fac-card--wide { grid-column: span 1; }
  .fac-photo { height: 200px; }
  .fac-card--wide .fac-photo { height: 220px; }
  .fac-stats-strip { gap: 0.5rem; flex-wrap: wrap; }
  .fac-stat-divider { display: none; }
  .fac-stat { min-width: 45%; }
}

/* =============================================
   TECHNICAL SPECIFICATIONS SUBSECTION
   (Within Facility Section)
   ============================================= */
.specs-subsection {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200,169,110,0.15);
  display: block !important;
  visibility: visible !important;
}

.specs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.specs-header h3 {
  color: #F8A81D;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.specs-divider {
  background: linear-gradient(90deg, transparent, #F8A81D, transparent);
  margin: 0.6rem auto 1.2rem;
  width: 80px;
  height: 2px;
  border: none;
  display: block;
}

.specs-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto;
}

.specs-master-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.specs-master-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F8A81D, transparent);
}

.specs-unified-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  width: 100%;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.spec-item h4 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}

.spec-value {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.spec-label {
  color: #F8A81D;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.specs-features-box {
  box-sizing: border-box;
  width: 100%;
}

.specs-features-box h4 {
  color: #F8A81D;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specs-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.specs-features-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.7;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.specs-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F8A81D;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Responsive for Specs Master Card */
@media (max-width: 768px) {
  .specs-master-card {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
  .specs-unified-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .spec-value {
    font-size: 1.25rem;
  }
  .specs-features-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .specs-master-card {
    padding: 1.8rem 1rem;
  }
  .specs-features-list li {
    font-size: 0.88rem;
    padding-left: 1.5rem;
  }
  .specs-features-list li::before {
    font-size: 1.1rem;
  }
  .specs-features-box h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .specs-master-card {
    padding: 3rem;
  }
  .specs-unified-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.benefits-section {
  background: linear-gradient(135deg, var(--dark-navy), var(--navy));
  padding: 5rem 2rem;
}
.benefits-section h2 {
  color: var(--gold);
}
.benefits-section .section-sub {
  color: var(--silver);
}
.benefits-section .divider {
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(248, 168, 29, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(248, 168, 29, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.benefit-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(248, 168, 29, 0.15),
    rgba(0, 113, 168, 0.15)
  );
  border-radius: 50%;
  border: 2px solid rgba(248, 168, 29, 0.3);
}
.benefit-card h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.benefit-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .benefits-section {
    padding: 3rem 1.5rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .benefit-card {
    padding: 2rem 1.5rem;
  }
  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
  .benefit-card h3 {
    font-size: 1rem;
  }
  .benefit-card p {
    font-size: 0.85rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .benefits-section {
    padding: 4rem 2rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-section {
    padding: 4.5rem 2.5rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1441px) {
  .benefits-grid {
    max-width: 1300px;
  }
}
.quality-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.quality-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 4px solid var(--blue);
  box-shadow: 0 4px 15px rgba(0, 61, 115, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.quality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 113, 168, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.quality-card:hover::before {
  opacity: 1;
}
.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 113, 168, 0.15);
  border-top-color: var(--gold);
}
.quality-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 113, 168, 0.2);
}
.quality-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.quality-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0, #e09610 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0,
    transparent 70%
  );
  animation: 10s ease-in-out infinite ctaGlow;
}
@keyframes ctaGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10%, -10%);
  }
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: var(--dark-navy);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cta-section p {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  border: 2px solid var(--dark-navy);
  color: var(--dark-navy);
  background: 0 0;
}
.btn-outline-white:hover {
  background: var(--dark-navy);
  color: var(--gold);
}
@media (max-width: 480px) {
  .quality-section {
    padding: 3rem 1.5rem;
  }
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .quality-card {
    padding: 2rem 1.5rem;
  }
  .quality-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
  .quality-card h3 {
    font-size: 1rem;
  }
  .quality-card p {
    font-size: 0.85rem;
  }
  .cta-section {
    padding: 3.5rem 1.5rem;
  }
  .cta-section h2 {
    font-size: 1.6rem;
  }
  .cta-section p {
    font-size: 0.95rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .quality-section {
    padding: 4rem 2rem;
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .cta-section {
    padding: 4rem 2rem;
  }
  .cta-section h2 {
    font-size: 1.9rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .quality-section {
    padding: 4.5rem 2.5rem;
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-section {
    padding: 4.5rem 2.5rem;
  }
}
@media (min-width: 1441px) {
  .quality-grid {
    max-width: 1300px;
  }
  .cta-content {
    max-width: 900px;
  }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  background: #08111d;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(200,169,110,0.06) 0, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(0,113,168,0.06) 0, transparent 55%);
  pointer-events: none;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8a96e;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 20px;
  padding: 0.25rem 1rem;
  margin-bottom: 1rem;
}
.faq-header h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0;
}
.faq-rule {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a96e, transparent);
  margin: 0.8rem auto 1.2rem;
}
.faq-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-header p a {
  color: #c8a96e;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  transition: border-color 0.2s;
}
.faq-header p a:hover { border-color: #c8a96e; }

/* Accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s;
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.faq-item.open {
  border-bottom-color: rgba(200,169,110,0.2);
}

/* Question button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  transition: color 0.22s;
}
.faq-q:hover { color: #fff; }
.faq-item.open .faq-q { color: #c8a96e; }

/* Icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #c8a96e;
  line-height: 1;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
}
.faq-item.open .faq-icon {
  background: rgba(200,169,110,0.18);
  border-color: #c8a96e;
  transform: rotate(45deg);
}

/* Answer panel – height slide */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a p {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  line-height: 1.8;
  padding-bottom: 1.4rem;
  margin: 0;
  border-left: 2px solid rgba(200,169,110,0.25);
  padding-left: 1rem;
}
.faq-a p strong { color: rgba(255,255,255,0.85); }
.faq-a p a {
  color: #c8a96e;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  transition: border-color 0.2s;
}
.faq-a p a:hover { border-color: #c8a96e; }

/* Responsive */
@media (max-width: 600px) {
  .faq-section { padding: 4rem 1.2rem; }
  .faq-header h2 { font-size: 1.6rem; }
  .faq-q { font-size: 0.9rem; padding: 1.1rem 0; }
  .faq-icon { width: 24px; height: 24px; font-size: 0.95rem; }
}


/* Technical Specifications Section */
.specs-section {
  background: var(--light-bg);
  padding: 5rem 2rem;
}

.specs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.spec-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), 
                    linear-gradient(135deg, var(--blue), var(--gold));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 15px rgba(0,61,115,0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,113,168,0.15);
  border-color: rgba(248,168,29,0.3);
}

.spec-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.spec-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.spec-value {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.specs-features {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  padding: 3rem 2.5rem;
  color: white;
  box-shadow: 0 8px 30px rgba(0,61,115,0.2);
}

.specs-features h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.features-list li {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Responsive for Specs */
@media (max-width: 480px) {
  .specs-section { padding: 3rem 1.5rem; }
  .specs-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .spec-card { padding: 1.5rem 1.2rem; }
  .spec-icon { font-size: 2rem; }
  .spec-card h3 { font-size: 0.95rem; }
  .spec-value { font-size: 1rem; }
  .spec-label { font-size: 0.8rem; }
  
  .specs-features { padding: 2rem 1.5rem; }
  .specs-features h3 { font-size: 1.3rem; }
  .features-list { grid-template-columns: 1fr; gap: 0.8rem; }
  .features-list li { font-size: 0.88rem; padding-left: 1.5rem; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .specs-section { padding: 4rem 2rem; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  
  .specs-features { padding: 2.5rem 2rem; }
  .features-list { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .specs-section { padding: 4.5rem 2.5rem; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1441px) {
  .specs-container { max-width: 1300px; }
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
  background: var(--light-bg);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(0, 113, 168, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.gallery-section h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.gallery-section .divider {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.6rem auto 1.5rem;
  width: 100px;
  height: 3px;
  border: none;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  background: var(--dark-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s;
  filter: brightness(0.85);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 31, 63, 0.95) 0%, 
    rgba(0, 31, 63, 0.4) 50%, 
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.gallery-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gallery-tags span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.gallery-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(240, 154, 6, 0.3);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    gap: 1rem;
  }
  .gallery-item {
    height: 400px;
  }
}

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

@media (max-width: 600px) {
  .gallery-section {
    padding: 4rem 1.2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 400px;
  }
  .gallery-section h2 {
    font-size: 1.8rem;
  }
  .gallery-overlay {
    padding: 1.8rem;
  }
  .gallery-desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}

