*{
  padding:0;
  margin:0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

body{
  background: #fff0f5; /* soft pink */
  color: #333;
}

img{
  width: 100%;
  vertical-align: bottom;
  border-radius: 12px;
}

a{
  text-decoration: none;
  color: #7e1248;
}
a:hover{
  color: #c71585;
}

/* Typography */
h1, h2, h3, h4, .footer-faq-hd, .name-title{
  color: #7e1248;
  font-weight: 700;
}

h1{ font-size: 34px; line-height: 44px; margin-bottom: 12px; }
h2{ font-size: 30px; line-height: 40px; margin-bottom: 12px; }
h3{ font-size: 26px; line-height: 36px; margin-bottom: 12px; }

.main-title-box p{
  font-size: 17px;
  margin-bottom: 12px;
  color: #333;
  line-height: 28px;
}

.text-justify{ text-align: justify; }

/* Header */
header{
  padding: 16px 20px;
  background: linear-gradient(90deg, #7e1248, #ff69b4);
  box-shadow: 0 4px 15px rgba(255,20,147,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-box{
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo a{
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.header-phone{
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.header-whats-con{
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icons{
  background: #25d366;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icons img{
  width: 20px;
  height: 20px;
}

/* Profile Cards */
.main-top-boxes{
  padding: 25px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-top-box{
  margin: 18px 0;
  display: flex;
  background: #fff;
  border: 2px solid #ffb6c1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255,20,147,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-top-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,20,147,0.2);
}

.main-top-box-lf{
  width: 160px;
  padding: 15px;
  flex-shrink: 0;
}

.main-top-box-rt{
  flex: 1;
  padding: 18px 20px 70px;
  position: relative;
}

.name-title{
  font-size: 22px;
  margin-bottom: 8px;
  color: #7e1248;
}

.main-top-box-title p{
  font-size: 15px;
  line-height: 24px;
  color: #444;
}

.top-contact{
  position: absolute;
  bottom: 15px;
  left: 20px;
  display: flex;
  gap: 12px;
}

.top-whatsapp, .top-phone{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.top-whatsapp{ background: #25d366; }
.top-phone{ background: #7e1248; }

.top-whatsapp:hover, .top-phone:hover{
  transform: scale(1.1);
}

.top-whatsapp img, .top-phone img{
  width: 24px;
  height: 24px;
}

/* Bottom Sections */
.btm-section{
  padding: 30px 15px;
  background: #fff5f8;
}

.btm-sec-inner{
  display: flex;
  gap: 25px;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #ffc0cb;
}

.btm-sec-img{
  width: 28%;
  flex-shrink: 0;
}

.btm-sec-con{
  flex: 1;
}

.border-bottom{
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, #7e1248, #ff69b4);
  margin: 12px 0 20px;
  border-radius: 3px;
}

/* FAQ */
.footer-faq{
  padding: 40px 20px 30px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-faq-hd{
  font-size: 28px;
  color: #7e1248;
  margin-bottom: 25px;
}

.faq-list{
  padding: 18px 0 18px 50px;
  position: relative;
  border-bottom: 1px solid #ffe4ec;
}

.faq-list-hd{
  font-size: 18px;
  font-weight: 600;
  color: #7e1248;
  margin-bottom: 8px;
}

.faq-list-hd span{
  position: absolute;
  left: 0;
  top: 18px;
  width: 36px;
  height: 36px;
  background: #7e1248;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.faq-list-txt{
  font-size: 16px;
  color: #444;
  line-height: 26px;
}

/* Footer */
.copyri{
  padding: 18px 0 90px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background: #7e1248;
}

.footer-fixed-btm{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.whatsapp-box, .phone-box{
  width: 50%;
}

.whatsapp-box{ background: #25d366; }
.phone-box{ background: #7e1248; }

.whatsapp-box a, .phone-box a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 10px;
}

.whatsapp-box a span, .phone-box a span{
  width: 28px;
  height: 28px;
}

.whatsapp-box img, .phone-box img{
  width: 100%;
  height: 100%;
}

/* ===================== */
/* Mobile Responsive     */
/* ===================== */
@media (max-width: 768px){
  header{ padding: 12px 15px; }

  .header-box{
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .header-phone{
    justify-content: center;
  }

  .header-whats-con{
    font-size: 18px;
  }

  .main-top-box{
    flex-direction: column;
  }

  .main-top-box-lf{
    width: 100%;
    padding: 15px 15px 0;
  }

  .main-top-box-rt{
    padding: 15px 15px 70px;
  }

  .btm-sec-inner{
    flex-direction: column;
    gap: 15px;
  }

  .btm-sec-img{
    width: 100%;
  }

  h1{ font-size: 26px; line-height: 34px; }
  h2{ font-size: 24px; line-height: 32px; }
  h3{ font-size: 22px; line-height: 30px; }

  .footer-faq-hd{ font-size: 24px; }

  .faq-list{
    padding-left: 45px;
  }

  .faq-list-hd span{
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .header-logo a{ font-size: 24px; }
  .name-title{ font-size: 20px; }
  .top-whatsapp, .top-phone{
    width: 44px;
    height: 44px;
  }
}
/* New attractive elements */
.badge {
  display: inline-block;
  background: linear-gradient(90deg, #7e1248, #ff69b4);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}

.model-info {
  font-size: 13px;
  color: #c71585;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.model-info span {
  background: #fff0f5;
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid #ffb6c1;
}

.name-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
/* ====================== */
/* Common Section Styles  */
/* ====================== */
.seo-section {
  padding: 50px 15px;
  background: #fff;
}

.seo-section:nth-child(even) {
  background: #fff5f8;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  color: #7e1248;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-desc {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Pricing Table */
.table-responsive {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.1);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.price-table th {
  background: linear-gradient(90deg, #7e1248, #ff69b4);
  color: #fff;
  padding: 16px 12px;
  font-size: 15px;
  text-align: left;
}

.price-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #ffe4ec;
  font-size: 15px;
  color: #333;
}

.price-table tr:hover td {
  background: #fff0f5;
}

.note-text {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 15px;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #ffc0cb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  background: #fff0f5;
  padding: 16px 20px;
  font-weight: 600;
  color: #7e1248;
  font-size: 16px;
  cursor: pointer;
}

.faq-answer {
  padding: 16px 20px;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px solid #ffe4ec;
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  background: #fff;
  border: 2px solid #ff69b4;
  color: #7e1248;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.tag:hover {
  background: #7e1248;
  color: #fff;
  border-color: #7e1248;
}

/* Service Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.area-card {
  background: linear-gradient(135deg, #7e1248, #ff69b4);
  color: #fff;
  padding: 18px 12px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 15px rgba(255, 20, 147, 0.2);
}

/* How to Book Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step-card {
  background: #fff;
  border: 2px solid #ffb6c1;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255, 20, 147, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #7e1248;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step-card h3 {
  font-size: 18px;
  color: #7e1248;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ====================== */
/* Mobile Responsive      */
/* ====================== */
@media (max-width: 768px) {
  .seo-section {
    padding: 35px 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .tag {
    font-size: 13px;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .area-card {
    font-size: 13px;
    padding: 14px 8px;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }
}
/* ====================== */
/* UNIQUE HERO SECTION    */
/* ====================== */
.hero-attract {
  position: relative;
  background: linear-gradient(135deg, #701c49 0%, #7e1248 50%, #622342 100%);
  padding: 70px 20px 80px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);   /* halka dark overlay */
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title span {
  color: #fff;
  background: linear-gradient(90deg, #fff, #ffe4ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 35px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-whatsapp,
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  background: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-call {
  background: #fff;
  color: #7e1248;
}

.btn-call:hover {
  background: #fff0f5;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp img,
.btn-call img {
  width: 22px;
  height: 22px;
}

.hero-trust {
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ====================== */
/* Mobile Responsive      */
/* ====================== */
@media (max-width: 768px) {
  .hero-attract {
    padding: 50px 15px 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn-whatsapp,
  .btn-call {
    padding: 14px 26px;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-features {
    gap: 10px;
  }

  .feature-item {
    font-size: 13px;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 6px 16px;
  }
}
/* Fix: Links must not rely only on color */
a {
  color: #ff1493;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

a:hover {
  color: #c71585;
  text-decoration-thickness: 2px;
}

/* Remove underline only from buttons and special links */
.btn-whatsapp,
.btn-call,
.top-whatsapp,
.top-phone,
.header-logo a,
.tag,
.whatsapp-box a,
.phone-box a {
  text-decoration: none !important;
}
.btn-whatsapp {
  background: #128c7e;          /* Darker green for better contrast */
  color: #ffffff;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #075e54;
  color: #ffffff;
}

/* Also fix the fixed bottom WhatsApp button if needed */
.whatsapp-box {
  background: #128c7e;
}