/* Layout */
.sd-container {
    max-width: 1200px;
    margin: auto;
    padding: 120px 20px;
}

/* HERO GRID */
.sd-hero .sd-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.sd-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

.sd-chip {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg,#7b2cbf,#9d4edd);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
}

/* CONTENT */
.sd-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.sd-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sd-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.sd-meta span {
    background: #f4f4f7;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 14px;
}

/* PACKAGES */
.sd-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.sd-package-card {
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.sd-package-card:hover {
    border-color: #7b2cbf;
}

.sd-package-card.active {
    border-color: #7b2cbf;
    background: #f9f4ff;
}

.sd-pkg-price {
    font-weight: bold;
    color: #7b2cbf;
}

/* BUTTONS */
.sd-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.sd-primary-btn {
    background: linear-gradient(90deg,#7b2cbf,#9d4edd);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
}

.sd-secondary-btn {
    border: 1px solid #ddd;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
}

/* FEATURES */
.sd-features {
    background: #f9f9fb;
}

.sd-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.sd-feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

/* GALLERY */
.sd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 15px;
    margin-top: 40px;
}

.sd-gallery-item img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.4s;
}

.sd-gallery-item img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
.sd-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.sd-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* Responsive */
@media(max-width: 992px){
    .sd-hero .sd-container {
        grid-template-columns: 1fr;
    }
}
body{
  background:#f8f6fb;
}



/* HERO GRID */
.sd-hero .sd-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.sd-image{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

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

.sd-chip{
  position:absolute;
  top:20px;
  left:20px;
  background:linear-gradient(90deg,#7b2cbf,#9d4edd);
  color:white;
  padding:6px 14px;
  border-radius:50px;
  font-size:13px;
}

/* CONTENT */
.sd-content h1{
  font-size:42px;
  margin-bottom:20px;
}

.sd-description{
  color:#666;
  line-height:1.6;
  margin-bottom:25px;
}

.sd-meta{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.sd-meta span{
  background:white;
  padding:8px 16px;
  border-radius:50px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  font-size:14px;
}

/* Packages */
.sd-package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin:20px 0;
}

.sd-package-card{
  background:white;
  border:2px solid #eee;
  padding:20px;
  border-radius:16px;
  cursor:pointer;
  transition:0.3s;
}

.sd-package-card:hover{
  border-color:#9d4edd;
}

.sd-package-card.active{
  border-color:#7b2cbf;
  box-shadow:0 10px 25px rgba(123,44,191,0.2);
}

.sd-price{
  font-size:20px;
  font-weight:bold;
  color:#7b2cbf;
  margin:10px 0;
}

/* Button */
.sd-book-btn{
  display:inline-block;
  background:linear-gradient(90deg,#7b2cbf,#9d4edd);
  color:white;
  padding:14px 30px;
  border-radius:50px;
  text-decoration:none;
  margin-top:20px;
  box-shadow:0 10px 20px rgba(123,44,191,0.3);
}

/* WHY SECTION */
.sd-why{
  background:white;
}

.sd-why h2{
  text-align:center;
  margin-bottom:40px;
}

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

.sd-why-card{
  background:#f8f6fb;
  padding:30px;
  border-radius:16px;
  text-align:center;
}

/* Timeline */
.sd-process{
  background:#f3eef9;
}

.sd-timeline{
  position:relative;
  margin-top:40px;
}

.sd-circle{
  width:40px;
  height:40px;
  background:#7b2cbf;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:20px;
}

/* Responsive */
@media(max-width:992px){
  .sd-hero .sd-container{
    grid-template-columns:1fr;
  }
}

/* ================= TIMELINE DESIGN ================= */

.sd-process {
    background: #f5f1fa;
    padding: 100px 20px;
}

.sd-process h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

/* Timeline wrapper */
.sd-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* Vertical center line */
.sd-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e5d9f5;
    transform: translateX(-50%);
}

/* Each step */
.sd-step {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    text-align: center;
}

/* LEFT side */
.sd-step:nth-child(odd) {
    left: 0;
}

/* RIGHT side */
.sd-step:nth-child(even) {
    left: 50%;
}

/* Circle number */
.sd-circle {
    position: absolute;
    top: 20px;
    left: 100%;
    transform: translate(-50%, 0);
    width: 45px;
    height: 45px;
    background: linear-gradient(90deg, #7b2cbf, #9d4edd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(123, 44, 191, 0.3);
}

/* Adjust circle for right side */
.sd-step:nth-child(even) .sd-circle {
    left: 0;
    transform: translate(-50%, 0);
}

/* Content card */
.sd-step-content {
    background: white;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.sd-step-content h4 {
    margin-bottom: 8px;
}

.sd-step-content p {
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .sd-timeline::before {
        left: 20px;
    }

    .sd-step {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left !important;
        left: 0 !important;
    }

    .sd-circle {
        left: 20px !important;
        transform: translateX(-50%);
    }
}

.material-icons {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

.sd-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sd-icon {
  font-size: 40px;
  color: #7b2cbf;
  margin-bottom: 15px;
}
/* ─── Gallery ───────────────────────────────────── */
.sd-gallery {
  padding: 64px 0;
  background: #f8f7fb;
}

.sd-gallery h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 8px;
}

.sd-gallery h2 span { color: #7c3aed; }

.sd-gallery-sub {
  text-align: center;
  font-size: 14px;
  color: #71717a;
  margin-bottom: 36px;
}

.sd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.sd-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #e4e4e7;
}

.sd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.sd-gallery-item:hover img { transform: scale(1.06); }

.sd-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124, 58, 237, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.sd-gallery-item:hover .sd-gallery-overlay { opacity: 1; }

.sd-gallery-overlay .material-icons {
  font-size: 36px;
  color: #fff;
}

/* ─── Lightbox ──────────────────────────────────── */
.sd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  padding: 24px;
}

.sd-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.sd-highlight-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #faf3ff, #f3e8ff);
  border: 1px solid #eadcf3;
  border-left: 4px solid #b44bd2;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 32px;
}

.sd-note-icon {
  color: #b44bd2;
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.sd-highlight-note p {
  font-size: 14px;
  color: #4a3060;
  line-height: 1.6;
  margin: 0;
}