*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f8f5ff;
color:#4b3f72;
line-height:1.7;
overflow-x:hidden;
}

/* HEADER */

.header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(255,255,255,0.55);
backdrop-filter:blur(15px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.3);
}

.logo-img{
    width:60px;
    height:60px;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
}

.logo-text{
    color:#D4AF37;
    text-shadow:0 0 6px rgba(212,175,55,0.3);
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
text-decoration:none;
color:#5e4b8b;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#b28dff;
}

#languageSwitcher{
padding:10px 15px;
border:none;
border-radius:20px;
background:#efe7ff;
color:#5e4b8b;
font-weight:500;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(
rgba(124,90,180,0.35),
rgba(193,167,255,0.25)
),
url('images/hero.jpg');

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(255,255,255,0.15);
}

.hero-content{
position:relative;
z-index:2;
max-width:850px;
padding:20px;
}

.hero h1{
font-size:64px;
color:white;
margin-bottom:25px;
font-weight:700;
text-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.hero p{
font-size:22px;
color:white;
margin-bottom:35px;
font-weight:300;
}

.btn{
display:inline-block;
padding:16px 40px;
border-radius:50px;
background:linear-gradient(135deg,#c8a8ff,#8f6be8);
color:white;
text-decoration:none;
font-weight:600;
transition:0.4s;
box-shadow:0 10px 30px rgba(142,106,216,0.3);
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(142,106,216,0.45);
}

/* =======================
   FIX SECTION SPACING
======================= */

section {
  margin: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

h1, h2, h3, h4, p {
  margin-top: 0;
  margin-bottom: 12px;
}

.hero,
.services,
.about,
.testimonials,
.booking,
.payment,
.auto-links,
.social-section {
  margin: 0;
}

.service-grid,
.testimonial-grid,
.social-grid {
  gap: 20px;
}

img {
  display: block;
  max-width: 100%;
}

/* SECTIONS */

.services,
.about,
.testimonials,
.booking,
.payment,
.blog{
padding:110px 8%;
}

h2{
text-align:center;
font-size:44px;
margin-bottom:70px;
color:#8e6ad8;
font-weight:700;
}

/* CARDS */

.service-grid,
.testimonial-grid,
.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.service-card,
.testimonial-card,
.blog-card{
background:rgba(255,255,255,0.6);
backdrop-filter:blur(12px);
border-radius:28px;
padding:25px;
box-shadow:
0 10px 35px rgba(167,135,230,0.15);
transition:0.4s;
border:1px solid rgba(255,255,255,0.4);
}

.service-card:hover,
.testimonial-card:hover,
.blog-card:hover{
transform:translateY(-10px);
}

.service-card img,
.about-image img{
width:100%;
border-radius:22px;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
font-size:24px;
color:#7a5bc1;
}

.service-card p{
color:#5e4b8b;
}

/* ABOUT */

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-text p{
margin-bottom:20px;
font-size:18px;
}

/* TESTIMONIALS */

.testimonial-card p{
font-style:italic;
margin-bottom:20px;
}

.testimonial-card h4{
color:#8e6ad8;
}

/* BOOKING */

.booking-form{
max-width:750px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.booking-form input,
.booking-form textarea,
.booking-form select{
padding:18px;
border:none;
border-radius:18px;
background:white;
font-size:16px;
color:#5e4b8b;
box-shadow:
0 5px 20px rgba(160,130,220,0.1);
}

.booking-form textarea{
height:140px;
resize:none;
}

.booking-form button{
border:none;
cursor:pointer;
}

/* PAYMENT */

.payment-buttons{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.pay-btn{
padding:16px 35px;
border-radius:40px;
background:linear-gradient(135deg,#b999ff,#8e6ad8);
color:white;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.pay-btn:hover{
transform:translateY(-3px);
}

/* BLOG */

.blog-card iframe{
border-radius:20px;
margin-bottom:20px;
}

/* FOOTER */

footer{
padding:60px 20px;
text-align:center;
background:linear-gradient(
135deg,
#c9b1ff,
#e7ddff
);
color:#5e4b8b;
}

footer h3{
font-size:30px;
margin-bottom:15px;
color:#7a5bc1;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.about-container{
grid-template-columns:1fr;
}

.header{
flex-direction:column;
gap:15px;
padding:20px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

h2{
font-size:34px;
}

}

/* AUTO LINKS SECTION */

.auto-links{
padding:80px 20px;
background:linear-gradient(135deg,#f6f0ff,#ffffff);
text-align:center;
}

.auto-links h2{
color:#8e6ad8;
margin-bottom:40px;
font-size:32px;
}

.links-wrapper{
max-width:900px;
margin:0 auto;
display:flex;
flex-direction:column;
gap:25px;
align-items:center;
}

.link-box{
width:100%;
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-align:left;
}

.link-box h3{
color:#7a4fd6;
margin-bottom:15px;
font-size:20px;
}

.link-box a{
display:block;
color:#5b4a7a;
text-decoration:none;
margin:8px 0;
font-size:14px;
transition:0.3s;
}

.link-box a:hover{
color:#8e6ad8;
transform:translateX(5px);
}

.social-section{
padding:90px 20px;
background:linear-gradient(135deg,#f6f0ff,#ffffff);
text-align:center;
}

.social-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
max-width:1000px;
margin:auto;
margin-top:30px;
}

.social-card{
background:white;
padding:18px;
border-radius:15px;
text-decoration:none;
color:#5b4a7a;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.social-card:hover{
transform:translateY(-6px);
color:#8e6ad8;
}

.philosophy {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.philosophy h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.philosophy p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

/* ================================================
   NEW ADDITIONS — logo, gold accents, whatsapp
   ================================================ */

/* LOGO IMAGE */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(212,168,67,0.28));
  transition: filter 0.3s;
}
.logo-img:hover {
  filter: drop-shadow(0 3px 12px rgba(212,168,67,0.50));
}

/* GOLD buttons */
.btn {
  background: linear-gradient(135deg, #f5d78e, #d4a843);
  color: #3b2800;
  box-shadow: 0 10px 30px rgba(212,168,67,0.30);
}
.btn:hover {
  background: linear-gradient(135deg, #ffe5a0, #f5d78e);
  box-shadow: 0 15px 35px rgba(212,168,67,0.45);
}

/* GOLD hover on cards */
.service-card:hover,
.testimonial-card:hover {
  border: 1px solid rgba(212,168,67,0.35);
  box-shadow: 0 16px 40px rgba(212,168,67,0.18);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 10px 28px rgba(37,211,102,0.60);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.30);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0;   }
  100% { transform: scale(1.65); opacity: 0;   }
}/* Fix long translated hero text */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-content p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 20px auto;
}.hero-symbol img{
    width:90px;
    height:90px;
    margin-bottom:20px;
    opacity:.9;
}

/* ==================================================
   HIZARA HEALING LOGO FIX - FINAL OVERRIDES
   ================================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 6%;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(15px);
    z-index:1000;
    border-bottom:1px solid rgba(212,168,67,.15);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.logo-text{
    font-size:34px;
    font-weight:600;
    letter-spacing:2px;
    color:#5e4b8b;
    text-transform:uppercase;
    white-space:nowrap;
    line-height:1;
    text-shadow:none;
}

.logo-img{
    width:70px;
    height:70px;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 2px 10px rgba(212,168,67,.35));
}

@media(max-width:768px){
    .logo{
        gap:10px;
    }

    .logo-text{
        font-size:22px;
    }

    .logo-img{
        width:50px;
        height:50px;
    }
}
.logo{
    display:flex !important;
    align-items:center !important;
    gap:18px !important;
}

.logo-text{
    font-size:42px !important;
    font-weight:700 !important;
    color:#6b4dbb !important;
    white-space:nowrap !important;
    text-transform:uppercase !important;
    line-height:1 !important;
}

.logo-img{
    width:80px !important;
    height:80px !important;
    object-fit:contain !important;
}