@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #f97316;
  /* Orange */
  --bg-color: #ffffff;
  --surface-color: #f8fafc;
  --text-color: #111827;
  --text-muted: #475569;
  --border-color: #e2e8f0;
  --transition-speed: 0.4s;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

ul {
  list-style: none;
}

/* --- Layout Classes --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 40px 0;
}

.text-center {
  text-align: center;
}

/* --- Typography --- */
.section-title {
  font-size: 28px;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* --- Buttons --- */
.btn {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: #000;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #000;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: background-color var(--transition-speed), padding var(--transition-speed);
  background: #e9e5e5bd;
  border-bottom: none;
}

.header.scrolled {
  padding: 15px 0;
  background: #e5e3e3db;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 68px;
  border-radius: 5px;
  margin-left: -10px !important;
}

.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links>a,
.dropdown-toggle {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.nav-links>a::after,
.dropdown-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links>a:hover::after,
.nav-links>a.active::after,
.dropdown:hover .dropdown-toggle::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown:hover .dropdown-toggle {
  color: var(--primary-color);
}

/* Dropdown CSS */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  background: var(--surface-color);
  min-width: 200px;
  width: max-content;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: calc(100% + 15px);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-transform: none;
  font-weight: 400;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  color: var(--text-color);
  z-index: 1001;
  padding: 5px;
  transition: color var(--transition-speed), transform var(--transition-speed);
}

.mobile-menu-btn:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.mobile-menu-btn svg {
  display: block;
  width: 28px;
  height: 28px;
}

/* --- Hero Section --- */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/b1.jpg');
  /* placeholder */
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.4);
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ddd;
}

/* --- Page Banner (Inner Pages) --- */
.page-banner {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  color: #fff;
  z-index: 1;
  /* Establishes stacking context */
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
  /* Sits on top of the section background */
  animation: overlayPulse 8s infinite alternate ease-in-out;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  /* Sits on top of the dark overlay */
}

@keyframes overlayPulse {
  0% {
    background: rgba(0, 0, 0, 0.65);
  }

  100% {
    background: rgba(0, 0, 0, 0.85);
  }
}

.page-banner .section-title {
  color: var(--primary-color);
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.page-banner .section-subtitle {
  color: #f2f2f2;
  font-size: 1.2rem;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 30px rgba(249, 115, 22, 0.15);
  border-color: var(--primary-color);
}

.service-img {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.1);
}

.service-info {
  padding: 25px;
}

.service-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

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

/* --- About Preview Section --- */
.about-preview {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 0.8;
}

.about-img img,
.about-img video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

/* --- Highlights Grid inside About Text --- */
.about-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;
  margin-top: 25px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15);
  border-color: #fed7aa;
}

.highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #fff7ed;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.1);
}

.highlight-item:hover .highlight-icon {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.highlight-item p {
  margin-bottom: 0 !important;
  font-size: 0.925rem !important;
  line-height: 1.5 !important;
  color: var(--text-muted) !important;
  transition: color 0.3s ease;
}

.highlight-item:hover p {
  color: var(--text-color) !important;
}

@media (max-width: 768px) {
  .about-highlights-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}


/* --- Gallery Masonry Grid --- */
.gallery-grid {
  display: block;
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

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

/* --- Lightbox CSS --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  animation: zoom 0.3s ease-out forwards;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes zoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 35px;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

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

@media (max-width: 991px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* --- Service 4x4 & 3x3 Gallery Grid --- */
.service-gallery-grid,
.service-gallery-grid-3 {
  display: grid;
  gap: 20px;
  padding: 20px 0;
}

.service-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-gallery-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.service-gallery-item:hover::after {
  opacity: 1;
}

.service-gallery-item .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 2;
}

.service-gallery-item:hover .overlay-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

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

@media (max-width: 576px) {
  .service-gallery-grid,
  .service-gallery-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Lightbox Navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
  transition: 0.3s;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.lightbox-nav:hover {
  background: var(--primary-color);
  color: #000;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}


/* --- Contact Section --- */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h4 {
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
}

.contact-form {
  width: 100%;
  max-width: 680px;
  background: var(--surface-color);
  padding: 45px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(249, 115, 22, 0.06);
  border-color: rgba(249, 115, 22, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-color);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
  background-color: var(--bg-color);
  transform: translateX(4px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  transform: translateX(10px);
  opacity: 0;
}

.contact-form button[type="submit"] {
  width: 100%;
  border: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  background: var(--primary-color);
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.contact-form button[type="submit"]:hover {
  background: #ff8533;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  transform: scale(1.02);
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

.contact-form button[type="submit"]:focus {
  animation: buttonPulse 1.5s infinite;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 30px 20px;
  }
}

/* --- Footer --- */
.footer {
  background: #f4f5f6;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 60px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 20px;
  border-radius: 4px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo:hover {
  transform: scale(1.06) rotate(-2deg);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-title {
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  position: relative;
}

.footer-links {
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom center;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.footer-links a:hover {
  color: var(--text-color);
  transform: translateX(4px);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.contact-info {
  padding: 0;
  margin: 0 0 25px 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-icon {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 3px;
  width: 18px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.contact-info li:hover .contact-icon {
  transform: scale(1.25) rotate(15deg);
  color: var(--text-color);
}

.contact-info a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--text-color);
}

.footer-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 25px 0;
}

.working-hours-sec {
  margin-top: 5px;
}

.working-hours-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px !important;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.hours-row:hover {
  transform: translateX(4px);
  color: var(--text-color);
}

.hours-row .day {
  font-weight: 500;
}

.hours-row .time {
  font-weight: 600;
  color: var(--text-color);
}

.hours-row .time.holiday {
  color: #ef4444;
  font-style: italic;
  font-weight: 500;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social-icons .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-social-icons .social-btn i {
  z-index: 2;
  transition: transform 0.4s ease, color 0.4s ease;
}

.footer-social-icons .social-btn::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.footer-social-icons .social-btn:hover {
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.footer-social-icons .social-btn:hover::before {
  top: 0;
}

.footer-social-icons .social-btn:hover i {
  transform: rotate(360deg);
  color: #fff;
}

.footer-bottom {
  text-align: left;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.bny-link {
  display: inline-flex;
  align-items: center;
}

.bny-logo {
  height: 25px;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.bny-logo:hover {
  transform: scale(1.15);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--text-color);
  transform: translateY(-2px);
}

.dot-separator {
  color: var(--border-color);
  font-size: 0.8rem;
}

/* --- Footer Responsiveness --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .brand-col {
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    align-self: center;
  }

  .footer-desc {
    max-width: 500px;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .brand-col {
    grid-column: span 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .copyright-text {
    justify-content: center;
  }
}


/* --- Animations replaced by AOS --- */
/* --- Stats Section --- */
.stats-section {
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item {
  padding: 10px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 20px;
  font-weight: 600;
  color: #f97316;
  margin: 0;
}

.stat-value.text-pop {
  font-size: 20px;
  padding-top: 10px;
  color: var(--primary-color);
}

/* --- Portfolio Preview Grid --- */
.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

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

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

.portfolio-preview-item::after {
  content: '\f00e';
  /* FontAwesome search-plus icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.portfolio-preview-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.portfolio-preview-item:hover img {
  transform: scale(1.1);
}

.portfolio-preview-item:hover::before {
  opacity: 1;
}

.portfolio-preview-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

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

/* --- Review Carousel --- */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  gap: 20px;
  padding-bottom: 20px;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #FBBC04;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4d5156;
  margin-bottom: 25px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
  color: #202124;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #4285F4;
}

/* --- Instagram Feed --- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.insta-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

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

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  border: 1px solid #ccc;
  border-radius: 30px;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.insta-btn:hover {
  background: #f5f5f5;
  border-color: #999;
  color: #000;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .about-preview {
    flex-direction: column;
  }

  .gallery-grid {
    column-count: 2;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .portfolio-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex: 0 0 calc(50% - 10px);
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    /* Made wider for long text */
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    /* Less transparent for readability */
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 40px 20px;
    transition: right 0.2s ease-out;
    border-left: 1px solid var(--border-color);
    align-items: flex-start;
    /* Align left instead of center for better readability */
    overflow-y: auto;
    /* Allow scrolling if menu gets too tall */
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: block !important;
    color: var(--text-color) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mobile-menu-btn svg {
    display: block !important;
    stroke: var(--text-color) !important;
  }

  /* Mobile Dropdown Fix with Unique Animation */
  @keyframes slideDownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 15px !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-width: 100% !important;
  }

  .dropdown-menu a {
    white-space: normal;
    /* Allow long text to wrap */
    padding: 12px 10px;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .dropdown-menu a:hover {
    border-left: 2px solid var(--primary-color);
    padding-left: 15px;
    background: rgba(249, 115, 22, 0.05);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:active .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    margin-top: 10px !important;
    animation: slideDownFade 0.4s ease forwards;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    column-count: 1;
  }

  .stat-value {
    font-size: 2.2rem;
  }

  .stat-value.text-pop {
    font-size: 1.6rem;
  }

  .portfolio-preview-grid {
    gap: 10px;
  }

  .review-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-preview-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: 1fr;
  }
}


/* --- Extreme Hover Animations --- */
.service-card,
.pricing-card,
.review-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background-color 0.4s ease !important;
}

.service-card:hover,
.pricing-card:hover,
.review-card:hover {
  transform: translateY(-15px) scale(1.03) !important;
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15) !important;
  border-color: var(--primary-color) !important;
}

.service-card:hover .service-info h3,
.pricing-card:hover h3,
.review-card:hover h4 {
  color: var(--primary-color);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* --- Advanced Image Zoom --- */
.gallery-item,
.portfolio-preview-item,
.insta-item {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img,
.portfolio-preview-item img,
.insta-item img {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), filter 0.8s ease !important;
}

.gallery-item:hover img,
.portfolio-preview-item:hover img,
.insta-item:hover img {
  transform: scale(1.2) !important;
  filter: brightness(1.15) contrast(1.1) !important;
}

/* --- Text Hover Color Changes & Zoom --- */
h1:hover,
h2:hover,
h3:hover {
  color: var(--primary-color);
  transform: scale(1.02);
  transition: all 0.4s ease;
  cursor: default;
}

p:hover {
  color: #000;
  transition: color 0.3s ease;
}

.stat-value:hover {
  color: var(--primary-color);
  transform: scale(1.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



/* --- Why Choose Us Section --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-choose-card {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  z-index: 1;
}

.why-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.why-choose-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.why-choose-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover Animations for Why Choose Us */
.why-choose-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15);
  border-color: var(--primary-color);
  z-index: 2;
}

.why-choose-card:hover .why-icon {
  transform: scale(1.2) rotate(10deg);
  background-color: var(--primary-color);
  color: #fff;
}

.why-choose-card:hover h3 {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Responsive Why Choose Us */
@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Floating Social Sidebar --- */
.floating-social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  padding: 10px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  right: 0px;
  /* Hide slightly off screen */
  opacity: 0.8;
}

.social-btn i {
  transition: transform 0.4s ease;
}

/* Original Brand Colors */
.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.call {
  background: #007BFF;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube {
  background: #FF0000;
}

/* Unique Hover Animations */
.social-btn:hover {
  right: 10px;
  /* Slide into view fully */
  opacity: 1;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-btn:hover i {
  transform: rotate(360deg);
}

/* Entrance Animation for the Sidebar */
@keyframes slideInRightFade {
  from {
    right: -100px;
    opacity: 0;
  }

  to {
    right: 0;
    opacity: 1;
  }
}

.floating-social-sidebar {
  animation: slideInRightFade 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .floating-social-sidebar {
    top: auto;
    bottom: 20px;
    right: 10px;
    transform: none;
    flex-direction: column;
    padding: 0;
    gap: 8px;
  }

  .social-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    right: 0;
    /* Fully visible on mobile */
    opacity: 0.9;
  }

  .social-btn:hover {
    right: 0;
    transform: scale(1.1) translateY(-10px);
  }
}

/* --- New Hero Typography & Buttons --- */
.hero-highlight {
  color: var(--primary-color);
  /* font-style: italic; */
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-outline-white {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero Adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* --- Service Pages Specific CSS --- */
.service-details-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.service-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-content-wrapper h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Packages Grid */
.packages-section {
  padding: 80px 0;
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.package-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
}

.package-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15);
  border-color: var(--primary-color);
}

.package-card.popular:hover {
  transform: translateY(-15px) scale(1.08);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-color);
  color: #000;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.package-name {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.package-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.package-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li i {
  color: var(--primary-color);
  margin-top: 4px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.faq-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-card h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.faq-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: var(--primary-color);
  padding: 60px 20px;
  text-align: center;
  color: #000;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
}

.cta-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 500;
}

.cta-banner .btn-outline {
  border-color: #000;
  color: #000;
}

.cta-banner .btn-outline:hover {
  background: #000;
  color: var(--primary-color);
}

/* Service Hero Backgrounds */
.bg-wedding {
  background-image: url('../images/wedding_engagement.jpg');
}

.bg-baby {
  background-image: url('../images/baby_theme.jpg');
}

.bg-maternity {
  background-image: url('../images/maternity_newborn.jpg');
}

.bg-passport {
  background-image: url('../images/best_studio.jpg');
}

.bg-events {
  background-image: url('../images/banner.jpg');
}

.bg-studio {
  background-image: url('../images/best_studio.jpg');
}

.bg-frames {
  background-image: url('../images/photo_gifts.jpg');
}

.bg-customise {
  background-image: url('../images/photo_gifts.jpg');
}

@media (max-width: 768px) {
  .package-card.popular {
    transform: none;
  }

  .package-card.popular:hover {
    transform: translateY(-10px);
  }
}

/* --- Service Split Layout (What We Do) --- */
.service-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  text-align: left;
}

.what-we-do-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.what-we-do-content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.whats-included-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whats-included-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.whats-included-box h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

.whats-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whats-included-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.whats-included-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-color);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .service-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- Journal / Blog Styles --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  /* 5:3 Aspect Ratio */
}

.blog-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-color);
  transition: color var(--transition-speed);
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.blog-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.blog-link i {
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* --- FAQ Accordion Styles --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.08);
}

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question {
  color: var(--primary-color);
}

.faq-item[open] .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
  border-top-color: var(--border-color);
}

/* --- Policy Pages Custom CSS --- */
.policy-content h2,
.policy-content h3 {
  color: var(--text-color);
}

/* --- Branches Section Styles --- */
.branches-section {
  background-color: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
}

.branches-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 40px;
  perspective: 1000px;
}

.branch-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 35px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "location map"
    "name map"
    "details map"
    "actions map";
  gap: 15px 40px;
  align-items: center;
}

/* 3D tilt and elevation hover effect */
.branch-card:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(1deg);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.12);
  border-color: var(--primary-color);
}

/* Orange gradient top border bar expanding on hover */
.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.branch-card:hover::before {
  transform: scaleX(1);
}

/* Branch location badge */
.branch-location {
  grid-area: location;
  display: inline-block;
  align-self: start;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.05);
  transition: all 0.4s ease;
  width: fit-content;
}

.branch-card:hover .branch-location {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
  transform: translateY(-2px);
}



.branch-name {
  grid-area: name;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-color);
  text-align: left;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.branch-card:hover .branch-name {
  color: var(--primary-color);
}

.branch-details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.branch-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.branch-detail-item i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 3px;
  width: 18px;
  text-align: center;
  transition: transform 0.4s ease;
}

.branch-card:hover .branch-detail-item i {
  transform: scale(1.2);
}

.branch-detail-text {
  flex: 1;
}

.branch-detail-text p {
  margin: 0;
  color: var(--text-muted);
}

.branch-link-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.branch-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  word-break: break-all;
}

.branch-link:hover {
  color: var(--text-color);
  transform: translateX(3px);
}

/* Branch Call/WhatsApp/Email shortcut actions */
.branch-actions {
  grid-area: actions;
  display: flex;
  gap: 15px;
  margin-top: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  transition: border-color 0.4s ease;
  width: 100%;
}

.branch-card:hover .branch-actions {
  border-color: rgba(249, 115, 22, 0.2);
}

.branch-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--surface-color);
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.branch-action-btn:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(249, 115, 22, 0.2);
}

.branch-action-btn.whatsapp-btn:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 5px 12px rgba(37, 211, 102, 0.2);
}

/* --- Branch Map Embed & Animations --- */
.branch-map {
  grid-area: map;
  width: 100%;
  height: 100%;
  min-height: 280px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed) ease;
  position: relative;
}

.branch-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(15%) opacity(0.9);
  transition: all var(--transition-speed) ease;
}

.branch-card:hover .branch-map {
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

.branch-card:hover .branch-map iframe {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.04);
}

/* Responsive details */

@media (max-width: 992px) {
  .branches-grid {
    gap: 25px;
  }

  .branch-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "location"
      "name"
      "details"
      "map"
      "actions";
    gap: 15px;
    padding: 30px 25px;
  }

  .branch-map {
    min-height: 200px;
  }

  .branch-name {
    text-align: center;
  }

  .branch-location {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .branches-grid {
    gap: 20px;
  }

  .branch-card {
    padding: 25px 20px;
  }
}


/* --- Hero Banner Centered Logo --- */
.hero-logo-container {
  display: inline-flex;
  margin: 80px auto 35px auto;
  padding: 15px 30px;
  /* background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
              inset 0 0 20px rgba(255, 255, 255, 0.05); */
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  animation: floatBadge 6s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 5;
}

.hero-logo-container img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  /* filter: drop-shadow(0 4px 10px rgb(255, 255, 255));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
}

/* Shimmer Light Sweep Effect */
.hero-logo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease; */
}

/* Interactive Hover States */
.hero-logo-container:hover {
  /* transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.25), 
              inset 0 0 20px rgba(249, 115, 22, 0.1);
  background: rgba(255, 255, 255, 0.1); */
}

.hero-logo-container:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 15px rgba(249, 115, 22, 0.3));
}

.hero-logo-container:hover::after {
  left: 150%;
}

/* Floating animation */
@keyframes floatBadge {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Responsive banner logo */
@media (max-width: 768px) {
  .hero-logo-container {
    padding: 10px 22px;
    border-radius: 18px;
    margin-top: 60px;
    margin-bottom: 25px;
  }

  .hero-logo-container img {
    max-height: 55px;
  }
}

@media (max-width: 480px) {
  .hero-logo-container {
    padding: 8px 18px;
    border-radius: 14px;
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .hero-logo-container img {
    max-height: 45px;
  }
}

/* --- About Page Redesign CSS --- */
.about-hero-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-top: 20px;
}

.about-profile-card {
  flex: 0 0 320px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
  border-color: var(--primary-color);
}

.profile-img-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--surface-color);
}

.profile-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.about-profile-card:hover .profile-img-wrapper img {
  transform: scale(1.08);
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.profile-title {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-journey-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-journey-content p {
  color: var(--text-muted);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.about-journey-content p:hover {
  color: var(--text-color);
}

.journey-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.signature-bar {
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.4s ease;
}

.about-journey-content:hover .signature-bar {
  width: 50px;
}

.signature-text {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Large Quote Section */
.about-quote-section {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.about-large-quote {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color);
  max-width: 900px;
  margin: 0 auto;
  text-transform: none;
  font-style: normal;
}

/* Stats Section */
.about-stats-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.about-stats-grid {
  display: flex;
  justify-content: center;
  gap: 120px;
  text-align: center;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-stat-item:hover {
  transform: translateY(-5px) scale(1.05);
}

.about-stat-value {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Why Choose Us Section */
.about-why-section {
  background-color: var(--bg-color);
}

.about-section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 700;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-why-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08);
  border-color: var(--primary-color);
}

.about-why-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px auto;
  transition: all 0.4s ease;
}

.about-why-card:hover .about-why-icon-container {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.about-why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-color);
}

.about-why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Bottom CTA */
.about-cta-section {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.about-cta-title {
 font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 25px;
}

.about-cta-btn {
  border-radius: 30px;
  padding: 14px 40px;
  font-size: 0.95rem;
}

/* Responsiveness */
@media (max-width: 992px) {
  .about-hero-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .about-profile-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
  }

  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-large-quote {
    font-size: 1.8rem;
    padding: 0 20px;
  }

  .about-cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-stats-grid {
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    flex-direction: column;
    gap: 30px;
  }

  .about-large-quote {
    font-size: 1.5rem;
  }

  .about-cta-title {
    font-size: 1.5rem;
  }

  .about-section-title {
    font-size: 1.8rem;
  }
}

/* --- Journal Article Detail Pages CSS --- */
.journal-detail-header {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.journal-detail-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.journal-detail-header .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.journal-meta-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.journal-detail-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #fff;
}

.journal-meta-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: #ccc;
  font-size: 0.95rem;
  font-weight: 500;
}

.journal-meta-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.journal-meta-row i {
  color: var(--primary-color);
}

.journal-detail-body {
  background-color: var(--bg-color);
  padding: 80px 0;
}

.journal-detail-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.journal-detail-content h2,
.journal-detail-content h3 {
  font-family: var(--font-heading);
  color: var(--text-color);
  margin: 40px 0 20px;
  font-weight: 700;
  line-height: 1.3;
}

.journal-detail-content h2 {
  font-size: 2rem;
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}

.journal-detail-content h3 {
  font-size: 1.5rem;
}

.journal-detail-content p {
  margin-bottom: 25px;
}

.journal-detail-content ul,
.journal-detail-content ol {
  margin-bottom: 30px;
  padding-left: 20px;
}

.journal-detail-content li {
  margin-bottom: 12px;
  position: relative;
}

.journal-detail-content ul li {
  list-style-type: disc;
}

.journal-detail-content blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-color);
  border-left: 4px solid var(--primary-color);
  padding: 10px 0 10px 25px;
  margin: 35px 0;
  line-height: 1.6;
  background: var(--surface-color);
  border-radius: 0 12px 12px 0;
}

.journal-inline-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.journal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.journal-back-btn:hover {
  transform: translateX(-5px);
  color: var(--text-color);
}

/* Responsiveness for Journal Details */
@media (max-width: 992px) {
  .journal-detail-title {
    font-size: 2.4rem;
  }

  .journal-detail-header {
    padding: 150px 0 60px;
  }
}

@media (max-width: 600px) {
  .journal-detail-title {
    font-size: 1.8rem;
  }

  .journal-meta-row {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .journal-detail-content h2 {
    font-size: 1.6rem;
  }

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

  .journal-detail-content {
    font-size: 1rem;
  }
}

/* Responsiveness for Header Logo */
@media (max-width: 480px) {
  .logo img {
    height: 52px;
  }
}

/* --- Pricing Range Grid & Cards Section --- */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px 25px 20px 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(33.333% - 17px);
  min-width: 300px;
  box-sizing: border-box;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.08);
  border-color: var(--primary-color);
}

.price-range-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.price-range-value {
  font-family: var(--font-body);
  font-size: 22px ;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 2.1;
}

.price-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
}

.price-category-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.price-view-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.price-view-link i {
  transition: transform 0.3s ease;
}

.pricing-card:hover .price-view-link i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .pricing-card {
    width: calc(50% - 13px);
  }
}

@media (max-width: 680px) {
  .pricing-card {
    width: 100%;
    min-width: 100%;
  }
}