/* ============================================================
   GHAZIA CREATIVES — Full Stylesheet
   ============================================================ */

:root{
  --cream:        #F6F0E9;
  --paper:        #FBF8F4;
  --maroon:       #6B2B3A;
  --maroon-dk:    #4C1F2A;
  --maroon-deep:  #2B1218;
  --rose:         #B76E79;
  --ink:          #2B1E22;
  --muted:        #8A7076;
  --line:         rgba(107,43,58,.16);
  --gold:         #C9A15A;
  --gold-soft:    #E5D2A8;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; scroll-padding-top: 80px; }

body{
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--maroon-dk);
  line-height: 1.2;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn{
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  letter-spacing: .02em;
}
.btn-primary{
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}
.btn-primary:hover{
  background: var(--maroon-dk);
  border-color: var(--maroon-dk);
}
.btn-outline-light{
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-outline{
  background: transparent;
  color: var(--maroon-dk);
  border-color: var(--maroon);
}
.btn-outline:hover{
  background: var(--maroon);
  color: var(--cream);
}
.btn-lg{ padding: 16px 36px; font-size: 16px; }
.btn-sm{  padding: 13px 14px;
    font-size: 12px; }
.btn-block{ width: 100%; }

/* ============ NAVBAR ============ */
.navbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,240,233,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 40px;
}
.logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img{
  height: 45px;
  width: auto;
  max-width: none;
  display: block;
}

@media(min-width: 768px){
  .logo-img{
    height: 80px;
  }
  /* .btn-sm {
    padding: 13px 14px;
    font-size: 12px;
}
.nav-inner{
  gap: 40px;
} */
}
.logo-mark{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: var(--maroon);
  position: relative;
}
.logo-mark::after{
  content: "✿";
  position: absolute;
  font-size: 9px;
  color: var(--rose);
  top: -2px;
  right: -11px;
}
.logo-word{
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--maroon-dk);
  line-height: 1.2;
}
.nav-links{
  display: none;
  gap: 32px;
  font-size: 15px;
}
.nav-links a{
  opacity: .85;
  transition: opacity .2s;
}
.nav-links a:hover{ opacity: 1; color: var(--maroon); }

@media(min-width: 860px){
  .nav-links{ display: flex; }
}

/* ============ HERO ============ */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;

  /* Mobile default — portrait image */
  background-image: url('../images/hero-mobile.webp');
  background-position: center top;
}

/* Desktop — landscape image */
@media(min-width: 768px){
  .hero{
    background-image: url('../images/hero-desktop.webp');
    background-position: center right;
  }
}

/* Overlay */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(246,240,233,.15) 0%,
    rgba(246,240,233,.75) 45%,
    rgba(246,240,233,.95) 100%
  );
}
@media(min-width: 768px){
  .hero-overlay{
    background: linear-gradient(
      100deg,
      rgba(246,240,233,.95) 0%,
      rgba(246,240,233,.85) 35%,
      rgba(246,240,233,.35) 60%,
      rgba(246,240,233,0) 100%
    );
  }
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 640px;
  text-align: left;
  margin-left: 60px;
  margin-right: auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media(max-width: 767px){
  .hero{
    align-items: flex-end;
    min-height: 100vh;
  }
  .hero-content{
    padding-bottom: 70px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-buttons{
    justify-content: center;
  }
}
.hero-buttons .btn{
  min-width: 200px;
  text-align: center;
}

.hero-eyebrow{
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 600;
  background: rgba(43,18,24,.45);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero h1{
  font-size: clamp(28px, 5vw, 58px);

  line-height: 1.1;
  color: var(--maroon-deep);
}
.hero-sub{
  margin-top: 22px;
  font-size: 17px;
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.65;
}
@media(max-width: 767px){
  .hero-sub{ margin-left: auto; margin-right: auto; }
}
.hero-buttons{
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ SECTION HEAD ============ */
.section-head{
  max-width: 56ch;
  margin-bottom: 48px;
}
.section-head h2{
  font-size: clamp(26px, 3.6vw, 38px);
}
.section-head p{
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

/* ============ HOW IT WORKS ============ */
/* ============ HOW IT WORKS ============ */
.how{
  padding: 110px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.how .section-head.center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.how .eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  font-weight: 500;
}

.steps-grid{
  display: grid;
  gap: 48px;
  margin-top: 20px;
}
@media(min-width: 760px){
  .steps-grid{ grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
}
@media(min-width: 1024px){
  .steps-grid{ grid-template-columns: repeat(4, 1fr); gap: 40px 28px; }
}
.step{
  text-align: center;
  padding: 0 8px;
}

.step-circle{
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: all .3s ease;
}

.step-circle::after{
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(201,161,90,.4);
}

.step:hover .step-circle{
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-4px);
}

.step:hover .step-circle::after{
  border-color: rgba(255,255,255,.3);
}

.step-num{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 24px;
  font-weight: 600;
  transition: color .3s ease;
}

.step:hover .step-num{
  color: var(--gold-soft);
}

.step h3{
  margin-top: 0;
  font-size: 22px;
  color: var(--maroon-dk);
}

.step p{
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============ DESIGNS ============ */
/* ============ DESIGNS ============ */
.designs{
  padding: 110px 0;
  background: var(--cream);
}

.designs .section-head.center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.designs .eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  font-weight: 500;
}

.designs-grid{
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media(min-width: 640px){
  .designs-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 1024px){
  .designs-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Card */
.design-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.design-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(76,31,42,.4);
}

/* Image area */
.design-image{
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #EFE3D9, #D9C1B3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.design-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.design-card:hover .design-image img{
  transform: scale(1.06);
}
.design-image .placeholder-text{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  opacity: .7;
  text-align: center;
  padding: 20px;
}

/* Badge — gold */
.design-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(201,161,90,.95);
  color: var(--maroon-deep);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11.5px;
  padding: 7px 14px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
}

/* Hover overlay — See Live */
.design-overlay{
  position: absolute;
  inset: 0;
  background: rgba(43,18,24,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.design-card:hover .design-overlay{
  opacity: 1;
}

/* Body */
.design-body{
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.design-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.design-body h3{
  font-size: 22px;
  color: var(--maroon-dk);
}
.design-price{
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--maroon-dk);
  font-weight: 600;
  white-space: nowrap;
}

.design-desc{
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.design-meta{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .02em;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.design-meta-item{
  display: block;
}

.design-actions{
  margin-top: 18px;
  display: flex;
  gap: 10px;
}
.design-actions .btn{
  flex: 1;
  padding: 11px 12px;
  font-size: 13px;
}

/* Bottom CTA */
.designs-cta{
  margin-top: 70px;
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.designs-cta p{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.designs-cta .btn{
  padding: 14px 32px;
}

/* ============ FAQ ============ */
.faq{
  padding: 90px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq .section-head.center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.faq .eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  font-weight: 500;
}
.faq-list{
  max-width: 780px;
}
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--maroon-dk);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon{
  font-size: 22px;
  color: var(--rose);
  transition: transform .25s ease;
}
.faq-item.open .faq-icon{ transform: rotate(45deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p{
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  max-width: 62ch;
  line-height: 1.7;
}
.faq-item.open .faq-a{ max-height: 240px; }

/* FAQ — center heading + center list */
.faq .section-head.center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.faq .eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  font-weight: 500;
}

.faq-list{
  max-width: 780px;
  margin: 0 auto;   /* ← yeh list ko center karega */
}


/* ============ CONTACT CTA ============ */
.contact-cta{
  padding: 80px 0;
  background: var(--maroon-deep);
  color: var(--cream);
  text-align: center;
}
.contact-cta h2{
  color: var(--cream);
  font-size: clamp(26px, 4vw, 40px);
}
.contact-cta p{
  margin-top: 14px;
  color: var(--gold-soft);
  font-size: 16.5px;
}
.contact-cta .btn{
  margin-top: 30px;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--maroon-deep);
  font-weight: 600;
}
.contact-cta .btn:hover{
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

/* ============ FOOTER ============ */
.footer{
  background: var(--cream);
  padding: 60px 0 30px;
}
.footer-inner{
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media(min-width: 720px){
  .footer-inner{ grid-template-columns: 1.6fr 1fr 1fr; }
}
.footer-brand p{
  margin-top: 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 30ch;
}
.footer-links h4{
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--maroon-dk);
  margin-bottom: 14px;
}
.footer-links a{
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 9px;
  transition: color .2s;
}
.footer-links a:hover{ color: var(--maroon); }
.footer-bottom{
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}