:root {
  --primary-color: #ff6b00;
  --primary-hover: #e65c00;
  --bg-dark: #0f141a;
  --bg-section: #161c24;
  --bg-card: #1c242e;
  --text-main: #ffffff;
  --text-muted: #b3b3b3;
  --border-color: #2a3441;
  --font-main: "Montserrat", sans-serif;
  --font-heading: "Sarpanch", sans-serif;
  --container-width: 1200px;
  --section-spacing: 80px;
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title span {
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  transition:
    background-color 0.3s ease,
    transform 0.2s,
    box-shadow 0.3s;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-glow {
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
  }
}

section {
  padding: var(--section-spacing) 0;
}

html {
  scroll-behavior: smooth;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(15, 20, 26, 0.85);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    padding 0.3s,
    background 0.3s;
}

#main-header.scrolled {
  padding: 5px 0;
  background: rgba(15, 20, 26, 0.98);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.9;
}

.main-nav a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-contact {
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .header-content {
    justify-content: space-between;
  }

  .btn-header-cta {
    padding: 8px 12px;
    font-size: 0.8rem;
    margin-right: 10px;
  }

  .phone-number {
    display: none;
  }

  .phone-contact i {
    font-size: 1.5rem;
  }
}

#hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  margin-bottom: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  z-index: 2;
  pointer-events: none;
}

.hero-text-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 15px;
}

#hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#hero h1 span {
  color: var(--primary-color);
}

#hero p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: 70vh;
    padding-top: 140px;
    padding-bottom: 50px;
  }
  #hero h1 {
    font-size: 2rem;
  }
  #hero p {
    font-size: 1rem;
  }
}

#about {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.about-text-content {
  flex: 1;
}

.section-title.text-left {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.section-title i {
  color: var(--text-main);
  border: 2px solid var(--primary-color);
  padding: 8px;
  font-size: 1.2rem;
  border-radius: 4px;
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.stats-container {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about-image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-frame {
  position: relative;
  padding: 10px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  max-width: 100%;
}

.image-frame img {
  border-radius: 2px;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .about-text-content {
    text-align: left;
    width: 100%;
  }
  .stats-container {
    justify-content: center;
    gap: 30px;
  }

  .stat-item {
    align-items: center;
    text-align: center;
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 3.5rem;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  .image-frame {
    max-width: 100%;
  }
}
#process {
  background-color: var(--bg-section);
  overflow: hidden;
}

.process-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  gap: 30px;
  position: relative;
  padding-bottom: 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 80px;
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
  border: 2px solid #fff;
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  background-color: white;
  color: var(--bg-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.process-step:not(:last-child) .step-visual::after {
  content: "";
  position: absolute;
  top: 70px;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background-color: var(--primary-color);
  z-index: 1;
}

.step-content {
  padding-top: 10px;
  text-align: left;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 576px) {
  .process-timeline {
    padding-left: 10px;
    padding-right: 10px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .process-step:not(:last-child) .step-visual::after {
    top: 60px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }
}

#packages {
  background-color: var(--bg-dark);
  padding: 100px 0;
}

.packages-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  align-items: stretch;
}

.package-card {
  background-color: #121212;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 50px 40px;
  flex: 1;
  max-width: 480px;
  position: relative;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:not(.pro-card) {
  background-color: rgba(20, 20, 20, 0.5);
}

.pro-card {
  border: 2px solid var(--primary-color);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 107, 0, 0.1),
      transparent 60%
    ),
    rgba(20, 20, 20, 0.9);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.15);
  transform: scale(1.02);
  z-index: 2;
}

.badge-recommended {
  position: absolute;
  top: -18px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-heading);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 4px solid var(--bg-dark);
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.pro-card .card-header h3 {
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.card-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.package-features {
  margin-top: auto;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: #cccccc;
  font-size: 1rem;
}

.package-features li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.packages-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .packages-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .package-card {
    width: 100%;
    max-width: 550px;
    padding: 30px 20px;
  }
  .pro-card {
    transform: scale(1);
    margin-top: 20px;
  }
}

#pricing {
  background-color: var(--bg-section);
  padding-bottom: 80px;
}

.pricing-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background-color: #000;
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.accordion-item.active {
  border: 1px solid #444;
}

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: #000;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header span {
  letter-spacing: 1px;
}

.arrow-icon {
  font-size: 0.8rem;
  color: #666;
  transition: transform 0.3s ease;
}

.accordion-item.active .arrow-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #000;
}

.price-list {
  padding: 10px 25px 30px 25px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #222;
  font-size: 1rem;
}

.price-row:last-child {
  border-bottom: none;
}

.service-name {
  color: #ddd;
}

.service-price {
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
  white-space: nowrap;
  margin-left: 20px;
}

.pricing-note {
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

@media (max-width: 576px) {
  .accordion-header {
    font-size: 1rem;
    padding: 15px;
  }
  .price-list {
    padding: 10px 15px;
  }
  .price-row {
    font-size: 0.85rem;
  }
}

#gallery {
  background-color: var(--bg-dark);
  padding-bottom: 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: var(--primary-color);
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

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

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

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

#lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  display: block;
  max-width: 90%;
  max-height: 90vh;
  border: 1px solid #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2001;
}

.close-lightbox:hover {
  color: var(--primary-color);
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

#reviews {
  background-color: var(--bg-section);
  padding-bottom: 100px;
}

.reviews-full-container {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-summary-box {
  background-color: var(--bg-dark);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.google-logo-real {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 5px;
}

.rating-stars {
  color: #f4b400;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.reviews-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.review-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #333;
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background-color: #555;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.stars-small {
  font-size: 0.7rem;
  color: #f4b400;
}

.review-text {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .reviews-summary-box {
    padding: 20px;
  }
  .review-card {
    width: 100%;
  }
}

#contact {
  background-color: var(--bg-dark);
  padding-bottom: 80px;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.contact-box:hover {
  border-color: var(--primary-color);
}

.icon-box {
  min-width: 40px;
  height: 40px;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}

.info-text h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-map {
  flex: 1.5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #333;
  min-height: 400px;
  position: relative;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  filter: grayscale(100%) invert(92%) hue-rotate(180deg) contrast(90%);
  transition: filter 0.5s ease;
}

.contact-map:hover iframe {
  filter: none;
}

#main-footer {
  background-color: #050505;
  border-top: 1px solid #222;
  padding: 60px 0 20px;
  font-size: 0.9rem;
  color: #888;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--bg-card);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid var(--border-color);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.8rem;
}
.developer-credit {
  margin-top: 5px;
  font-size: 0.75rem;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.developer-credit:hover {
  opacity: 1;
}

.developer-credit a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-map {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.btn-map-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  background-color: #e65c00;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn-map-overlay:hover {
  background-color: #ff7b00;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 92, 0, 0.6);
}

@media (max-width: 768px) {
  .btn-map-overlay {
    bottom: 15px;
    font-size: 0.9rem;
    padding: 10px 20px;
    width: 80%;
    justify-content: center;
  }
}
