@charset "utf-8";
/* CSS Document */
/* WATSON EXPERIENCE */
.wrs-experience {
    padding: 80px 20px;
    text-align: center;
    color: #e6e6e6;
}
.experience-inner p {
    text-align: justify;
}

.experience-inner {
    max-width: 900px;
    margin: 0 auto;
}

.wrs-experience h2 {
    font-size: 2.6rem;
    color: gold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* tagline centered */
.tagline {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* justify the body text */
.experience-inner p {
    text-align: justify;
}


.experience-line {
    font-size: 1.15rem;
    margin: 10px 0;
    opacity: 0.9;
}

.destination {
    margin-top: 25px;
    font-size: 1.2rem;
    color: #f5d98b;
}


/* 3‑SECTION BREAKDOWN */
.services-overview {
    padding: 80px 20px;
    background: #0d0d0d;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-block {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255, 215, 0, 0.35);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
}

.service-block h3 {
    color: gold;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-block p {
    opacity: 0.9;
    line-height: 1.6;
}


/* PRICING SECTION */
.pricing-section {
    padding: 80px 20px;
    background: #0b0b0b;
    color: #e6e6e6;
    text-align: center;
}

.pricing-title {
    font-size: 2.6rem;
    color: gold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.pricing-tagline {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


.price-card {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.35);
}

.price-card h3 {
    color: gold;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff7c2;
    margin-bottom: 15px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card ul li {
    margin: 8px 0;
    opacity: 0.9;
}

.pricing-note {
    margin-top: 40px;
    font-size: 0.95rem;
    opacity: 0.7;
}
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================= */
/*        GLOBAL FOOTER      */
/* ========================= */

.gold-footer {
  background: #0a0a0a;
  border-top: 2px solid #d4af37;
  padding: 50px 40px;
  color: #d4af37;
  margin-top: 75px; /* adjust between 50–100px */
}

/* 4‑Column Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

/* Column Titles */
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Links */
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  color: #d4af37;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}
