/* =========================
   DSD – GLOBAL
========================= */

.dsd-page {
    background: #ffffff;
    color: #1f2937;
    padding-bottom: 100px;
}

.dsd-page h1,
.dsd-page h2,
.dsd-page h3 {
    font-weight: 700;
}

.dsd-page p {
}

.dsd-page section {
    position: relative;
}

/* Buttons (reuse your theme if you have them) */
.btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, #0b2470, #0b3ea8);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 12px 25px rgba(11,62,168,.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(11,62,168,.45);
}

.btn-secondary {
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid #0b3ea8;
    background: transparent;
    color: #0b3ea8;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.btn-secondary:hover {
    background: #0b3ea8;
    color: white;
}

/* =========================
   HERO
========================= */

.dsd-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(4,15,40,.6), rgba(4,15,40,.6)),
        url('/public/assets/img/fun-dive.jpg') center / cover no-repeat;
    text-align: center;
    color: white;
    padding: 120px 20px;
}

.dsd-hero-content {
    max-width: 720px;
}

.dsd-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    margin-bottom: 20px;
}

.dsd-hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,.9);
}

/* =========================
   INTRO
========================= */

.dsd-intro {
    color: #020340;
    max-width: 1200px;
    margin: 100px auto 80px;
    padding: 0 20px;
    text-align: left;
    line-height: 1.6;   
}
.descPara {
    font-size: 22px;    
    line-height: 1.6;
}

.dsd-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    text-align: center;
    margin-top: 0;
}
.prog {   
    font-size: 18px;
}
.dsd-intro-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.dsd-intro-grid {  
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

/* =========================
   PACKAGES
========================= */

.dsd-packages {
    background: #f5f7fb;
    padding: 100px 20px;
}

.dsd-packages h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.package-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 35px;
}

.package-card {
    background: white;
    border-radius: 22px;
    padding: 40px 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
    text-align: center;
    position: relative;
    transition: transform .4s ease, box-shadow .4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.22);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-card .price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0b3ea8;
    margin: 20px 0;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-card ul li {
    margin-bottom: 10px;
    font-size: .95rem;
}

.package-card.featured {
    border: 2px solid #0b3ea8;
    transform: scale(1.05);
}

.package-card .badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #0b3ea8;
    color: white;
    font-size: .75rem;
    padding: 6px 14px;
    border-radius: 20px;
}

/* =========================
   DIVE SITES
========================= */

.dsd-sites {
    padding: 100px 20px 60px;
}

.dsd-sites h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.site-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 30px;
}

.site-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    transition: transform .4s ease;
}

.site-card:hover {
    transform: translateY(-6px);
}

.site-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.site-card:hover img {
    transform: scale(1.08);
}

.site-card span {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 18px;
    font-weight: 600;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0));
}

/* =========================
   INCLUDED
========================= */

.dsd-included {
    max-width: 900px;
    margin: 90px auto;
    padding: 0 20px;
    text-align: center;
}

.dsd-included h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
}

.dsd-included ul {
    list-style: none;
    padding: 0;
}

.dsd-included li {
    font-size: 1.05rem;
    margin-bottom: 14px;
}

/* =========================
   CTA
========================= */

.dsd-cta {
    background: linear-gradient(135deg, #0b2470, #0b3ea8);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.dsd-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.dsd-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,.9);
}

/* =========================
   SITE MODAL
========================= */

.site-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.site-modal.show {
    display: flex;
}

.site-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

.site-modal-content img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.site-modal-content div {
    padding: 30px;
}

.site-modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: white;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .dsd-hero {
        min-height: 60vh;
        padding: 100px 20px;
    }

    .package-card.featured {
        transform: none;
    }

    .site-card img {
        height: 230px;
    }
    .dsd-intro {
        text-align: center;
    }
}
