/* ========================================
   Astrologer Theme - Professional Stylesheet
   ======================================== */

/* === Google Fonts Import (already in header) === */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a8872e;
  --dark: #0c0c1a;
  --dark-2: #1a1a2e;
  --dark-3: #16213e;
  --light-bg: #f7f5f0;
  --white: #ffffff;
  --text: #2d2d3a;
  --text-light: #6b6b80;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.text-gold { color: var(--gold); }

/* Section Title - premium styling */
.section-title {
  text-align: center;
  margin-bottom: 55px;
  position: relative;
}
.section-title .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-title h2 .text-gold { color: var(--gold); }
.section-title p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 650px;
  margin: 15px auto 0;
  line-height: 1.8;
}
.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,168,76,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* === TOP BAR === */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 3px solid var(--gold);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; gap: 28px; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 8px; }
.top-bar-left i { color: var(--gold); font-size: 14px; }
.top-bar-right { display: flex; gap: 12px; }
.social-link {
  width: 32px; height: 32px; line-height: 32px; text-align: center;
  border-radius: 50%; color: rgba(255,255,255,0.6); font-size: 13px;
  transition: all 0.3s;
}
.social-link:hover { background: var(--gold); color: var(--dark); }

/* === HEADER === */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.site-logo a { display: flex; align-items: center; gap: 12px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.logo-text span { display: block; font-size: 12px; font-weight: 400; color: var(--text-light); font-family: var(--font-body); letter-spacing: 1px; }

.nav-menu { display: flex; gap: 8px; }
.nav-menu li a {
  padding: 8px 18px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}
.nav-menu li a:hover, .nav-menu li.current-menu-item a {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 5px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* === HERO SECTION === */
.hero-section {
  height: 88vh;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
.hero-section .swiper,
.hero-section .swiper-slide { height: 100%; }
.hero-section .swiper-slide {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-section .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,12,26,0.88) 0%, rgba(12,12,26,0.45) 50%, rgba(12,12,26,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content .hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.12;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.75;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content .btn { font-size: 15px; padding: 15px 38px; }
.hero-content .btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  margin-left: 10px;
  padding: 15px 38px;
  backdrop-filter: blur(4px);
}
.hero-content .btn-hero-secondary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-section .swiper-button-next { right: 30px; }
.hero-section .swiper-button-prev { left: 30px; }
.hero-section .swiper-pagination { bottom: 30px; }

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev {
  color: var(--white) !important;
  background: rgba(201,168,76,0.2);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--gold);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px !important; }

/* === ABOUT SECTION === */
.about-section {
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image .img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image .img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}
.about-image .img-frame img {
  width: 100%;
  display: block;
  transition: transform 0.6s;
}
.about-image:hover .img-frame img { transform: scale(1.03); }
.about-image .exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
  z-index: 3;
}
.about-image .exp-badge span { font-size: 36px; font-weight: 700; line-height: 1; }
.about-image .exp-badge small { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.about-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.about-features-list li i { color: var(--gold); font-size: 16px; }

/* === WHY CHOOSE / FEATURES === */
.why-choose-section {
  background: var(--light-bg);
  position: relative;
}
.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border-radius: 50%;
  margin: 0 auto 22px;
  font-size: 32px;
  color: var(--gold);
  transition: all 0.4s;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: rotateY(180deg);
}
.feature-card h3 { font-size: 19px; color: var(--dark); margin-bottom: 8px; font-weight: 600; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.feature-count {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 16px;
  background: rgba(201,168,76,0.1);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

/* === SERVICES === */
.services-section {
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 38px 24px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s;
  border-radius: 2px;
}
.service-card:hover::after { width: 80%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.service-icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  margin: 0 auto 22px;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(201,168,76,0.25);
  transition: all 0.4s;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.service-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.testimonials-section .section-title h2 { color: var(--white); }
.testimonials-section .section-title p { color: rgba(255,255,255,0.6); }
.testimonials-section .section-title::after { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 40px 35px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  margin: 10px 0;
  transition: all 0.4s;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); margin-bottom: 18px; font-size: 16px; letter-spacing: 3px; }
.testimonial-card p {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author h4 { font-size: 15px; color: var(--white); font-weight: 600; }

.google-rating {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.google-rating p { color: rgba(255,255,255,0.7); font-size: 14px; }
.google-rating strong { color: var(--gold); font-size: 16px; }
.google-rating .stars-display { color: var(--gold); margin-bottom: 6px; font-size: 18px; letter-spacing: 2px; }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,12,26,0.8) 0%, rgba(12,12,26,0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  color: var(--gold);
  font-size: 36px;
  transform: scale(0);
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.gallery-overlay span {
  color: var(--white);
  margin-top: 10px;
  font-size: 14px;
  transform: translateY(10px);
  transition: transform 0.4s 0.1s;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* === BLOG === */
.blog-section { background: var(--light-bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card .blog-image { overflow: hidden; }
.blog-card .blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-card .blog-content { padding: 28px; }
.blog-card .blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-card .blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card .blog-meta i { color: var(--gold); }
.blog-card .blog-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card .blog-content h3 a { color: var(--dark); }
.blog-card .blog-content h3 a:hover { color: var(--gold); }
.blog-card .blog-content p { color: var(--text-light); font-size: 14px; margin-bottom: 18px; line-height: 1.7; }
.blog-card .read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card .read-more:hover { gap: 12px; }

/* === CONTACT SECTION === */
.contact-section { position: relative; }
.contact-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: var(--dark);
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 2; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-box {
  background: var(--dark);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-info-box .contact-head-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-info-box h3 { font-size: 24px; margin-bottom: 8px; }
.contact-info-box > p { color: rgba(255,255,255,0.6); margin-bottom: 35px; font-size: 14px; }
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ci-icon {
  width: 48px; height: 48px; line-height: 48px; text-align: center;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--white); }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.7); font-size: 14px; }
.contact-item a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; position: relative; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e8e8ed;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: all 0.3s;
  background: var(--light-bg);
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.char-count { position: absolute; bottom: 12px; right: 16px; font-size: 11px; color: #bbb; }
.form-message { margin-top: 15px; padding: 12px 18px; border-radius: 8px; display: none; font-size: 14px; }
.form-message.success { display: block; background: #d4edda; color: #155724; }
.form-message.error { display: block; background: #f8d7da; color: #721c24; }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-col p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; line-height: 40px; text-align: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

.footer-links li { padding: 8px 0; }
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: var(--gold);
  transition: transform 0.3s;
}
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }

.contact-info li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; align-items: flex-start; }
.contact-info li i { color: var(--gold); margin-top: 5px; width: 16px; }
.contact-info li a { color: rgba(255,255,255,0.6); }
.contact-info li a:hover { color: var(--gold); }
.timings li { padding: 4px 0; font-size: 14px; }
.timings .text-gold { font-weight: 600; }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
}
.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* === Utility === */
.bg-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.map-section iframe { display: block; }

/* === PAGE HERO === */
.page-hero {
  padding: 90px 0;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,12,26,0.85), rgba(12,12,26,0.6));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-heading); font-size: 44px; font-weight: 700; margin-bottom: 12px; }
.breadcrumbs { font-size: 14px; color: rgba(255,255,255,0.6); }
.breadcrumbs a { color: var(--gold); }

/* === STATS SECTION === */
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-grid .stat-item { padding: 30px; }
.stats-grid .stat-icon { font-size: 36px; margin-bottom: 12px; opacity: 0.8; }
.stats-grid .stat-number { font-size: 44px; font-weight: 700; color: var(--white); display: block; line-height: 1; }
.stats-grid .stat-item p { font-size: 15px; margin-top: 8px; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }

/* === WHY CHOOSE PAGE === */
.why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-list { margin-top: 20px; }
.why-list li {
  padding: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.why-list li:last-child { border-bottom: none; }
.why-list li i { color: var(--gold); font-size: 16px; }
.why-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* === SERVICE DETAIL === */
.service-detail { text-align: center; max-width: 800px; margin: 0 auto; }
.service-detail-icon {
  width: 100px; height: 100px; line-height: 100px; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; margin: 0 auto 30px; font-size: 40px; color: var(--white);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.service-detail h2 { font-family: var(--font-heading); font-size: 32px; color: var(--dark); margin-bottom: 30px; }
.service-detail-content { text-align: left; color: var(--text-light); line-height: 1.9; }
.service-detail-content p { margin-bottom: 18px; }
.service-cta {
  background: var(--light-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.15);
}
.service-cta h3 { font-family: var(--font-heading); font-size: 24px; color: var(--dark); margin-bottom: 10px; }
.service-cta p { margin-bottom: 22px; color: var(--text-light); }
.service-cta .btn { margin: 0 8px; }

/* === SINGLE POST === */
.post-meta { display: flex; gap: 20px; flex-wrap: wrap; margin: 22px 0; color: var(--text-light); font-size: 14px; }
.post-meta i { margin-right: 6px; color: var(--gold); }
.post-content { line-height: 1.9; color: var(--text); }
.post-content h2, .post-content h3 { color: var(--dark); margin: 35px 0 18px; font-family: var(--font-heading); }
.post-content p { margin-bottom: 22px; }
.post-content img { border-radius: var(--radius); margin: 25px 0; }
.post-tags { margin: 30px 0; padding: 18px 0; border-top: 1px solid #eee; }
.post-tags span { font-weight: 600; color: var(--dark); margin-right: 8px; }
.post-tags a { color: var(--gold); }
.post-tags a:hover { text-decoration: underline; }
.post-navigation { display: flex; justify-content: space-between; padding: 24px 0; border-top: 1px solid #eee; margin-top: 30px; }
.post-navigation a { color: var(--gold); font-weight: 500; }
.post-navigation a:hover { color: var(--gold-dark); }

/* === BLOG LAYOUT === */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.blog-card-horizontal { display: flex; gap: 28px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 28px; transition: all 0.3s; }
.blog-card-horizontal:hover { box-shadow: var(--shadow-md); }
.blog-card-horizontal .blog-image { flex: 0 0 280px; overflow: hidden; }
.blog-card-horizontal .blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card-horizontal:hover .blog-image img { transform: scale(1.05); }
.blog-card-horizontal .blog-content { flex: 1; padding: 28px; }
.blog-category { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; }

/* === Sidebar === */
.blog-sidebar .widget {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.widget-search form { display: flex; }
.widget-search input { flex: 1; padding: 12px; border: 1.5px solid #e8e8ed; border-radius: 8px 0 0 8px; font-size: 14px; }
.widget-search button { padding: 12px 16px; background: var(--gold); color: var(--white); border: none; border-radius: 0 8px 8px 0; cursor: pointer; }
.widget ul li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-light); }
.widget ul li a:hover { color: var(--gold); padding-left: 4px; }

/* === PAGINATION === */
.pagination { text-align: center; margin: 40px 0; }
.pagination a, .pagination span {
  display: inline-block; padding: 10px 20px; margin: 0 4px; border-radius: 8px;
  background: var(--white); border: 1.5px solid #e8e8ed; color: var(--text); font-weight: 500; transition: all 0.3s;
}
.pagination .current { background: var(--gold); color: var(--white); border-color: var(--gold); }
.pagination a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title h2 { font-size: 34px; }
  .about-text h3 { font-size: 26px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-left span:not(:first-child) { display: none; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 80vh; overflow-y: auto;
  }
  .main-nav.active { display: block; }
  .nav-menu { flex-direction: column; gap: 0; padding: 16px; }
  .nav-menu li a { display: block; padding: 14px 16px; border-bottom: 1px solid #f0f0f0; border-radius: 0; }

  .hero-content { padding: 0 24px !important; text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
  .hero-content h1 { font-size: 32px; }
  .hero-section { height: 65vh; min-height: 400px; }
  .hero-content .hero-badge { font-size: 11px; padding: 6px 16px; }
  .hero-content p { font-size: 15px; max-width: 100% !important; margin-left: auto !important; margin-right: auto !important; }
  .hero-content .btn { padding: 13px 28px; font-size: 14px; display: inline-block; width: auto; margin: 5px; }
  .hero-content .btn-hero-secondary { padding: 13px 28px; margin: 5px; display: inline-block; width: auto; }
  .hero-section .swiper-button-next, .hero-section .swiper-button-prev { display: none; }
  .hero-section .swiper-pagination { bottom: 18px; }

  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-image .exp-badge { width: 100px; height: 100px; right: -10px; bottom: -10px; }
  .about-image .exp-badge span { font-size: 28px; }
  .about-features-list { grid-template-columns: 1fr; }

  .why-content { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-card-horizontal { flex-direction: column; }
  .blog-card-horizontal .blog-image { flex: none; }
  .blog-card-horizontal .blog-image img { height: 200px; }
  .blog-grid, .features-grid, .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 30px; }
  .section-title h2 { font-size: 28px; }
  .contact-form-box, .contact-info-box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .logo-text { font-size: 18px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 26px; }
  .section-title h2 { font-size: 24px; }
  .section-padding { padding: 60px 0; }
  .about-text h3 { font-size: 22px; }
}
