/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 56px;
  background-color: #F8F8F8;
  color: #333333;
  font-size: 0.9rem;
}


#mainNav {
  border-bottom: 3px solid #212529;
}

/* Navigation */
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  --bs-navbar-padding-y: 0.1rem;
}

.navbar-logo {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #C8A45D !important;
}

.navbar-nav .nav-link.active {
  color: #C8A45D !important;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 34px;
  }
}


/* Hero Section */
.hero-section {
  background: linear-gradient(90deg, #C8A45D 0%, #F8F8F8 50%, #C8A45D 100%);
  color: #333;
  padding: 100px 150px;
  text-align: center;
  margin-top: 0;
}

.hero-section h1 {
  text-shadow: 1px 1px 2px rgba(255,255,255,0.7);
}
.hero-section p.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #555;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .hero-section p.lead {
    font-size: 1.1rem;
  }
}

/* Buttons */
.btn-dark-grey {
  background-color: #333;
  border-color: #333;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-dark-grey:hover {
  background-color: #555;
  border-color: #555;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: white;
}
/* Social Bio Banner */
.social-bio {
  background-color: #333;
  color: white;
  padding: 15px 0;
  text-align: center;
  font-weight: 400;
}


/* Tagline Rotator */
.tagline-section {
  background-color: #f8f9fa;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.tagline-rotator {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: #555;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .tagline-rotator {
    font-size: 1.2rem;
    min-height: 50px;
  }
}

@media (max-width: 576px) {
  .tagline-rotator {
    font-size: 1rem;
    min-height: 40px;
  }
}

.carousel-item p {
  margin: 0;
  padding: 0 20px;
}

/* Section Headings */
.section-heading {
  position: relative;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-heading:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #D4AF37;
  margin: 5px auto 0;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.8rem;
  }
}

/* About Section */
#about {
  padding: 80px 0;
}

@media (max-width: 768px) {
  #about {
    padding: 60px 0;
  }
}

.intro-text {  
  color: #555;
  text-align:justify;
}

/* Expertise Badges */
.expertise-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C8A45D, #F8F8F8);
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin: 5px;
  font-size: 0.85rem;
  border: 1px solid #ddd;
}

@media (max-width: 576px) {
  .expertise-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin: 3px;
  }
}

/* Qualification Badges */
.qualification-badge {
  background-color: rgba(200, 164, 93, 0.3);
  border-radius: 20px;
  padding: 8px;
  margin: 5px;
  display: inline-block;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

@media (max-width: 576px) {
  .qualification-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin: 3px;
  }
}


.expect{
    border: none;
    border-radius: 8px;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;    
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  #services {
    padding: 60px 0;
  }
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 8px;
  transition: transform 0.3s;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: white;
  padding: 20px 0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card .card-body {
  padding: 2rem 1.5rem;
}

@media (max-width: 576px) {
  .service-card .card-body {
    padding: 1.5rem 1rem;
  }
}

.service-card i {
  color: #C8A45D;
  margin-bottom: 1.5rem;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
}

/* Service Images */
.service-image-container {
  margin-top: 50px;
  margin-bottom: 40px;
}

.service-image-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .service-image-title {
    font-size: 1.5rem;
  }
}

.service-image-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #D4AF37;
  margin: 10px auto 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

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

.treatment-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background: white;
  height: 100%;
}

.treatment-image:hover {
  transform: translateY(-5px);
}

.treatment-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.treatment-image:hover img {
  transform: scale(1.05);
}

.treatment-info {
  padding: 20px;
  background: white;
}

.treatment-info h4 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
  font-size: 1.3rem;
}

.treatment-info h5 {
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.benefits-list li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
  color: #666;
  font-size: 0.95rem;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* Before/After Container */
.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .before-after-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.before-after-label {
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Pricing */
.lip-filler-pricing {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: #D4AF37;
  margin: 10px 0;
  text-align: center;
}

/* Carbon Treatment */
.carbon-treatment {
  background: linear-gradient(135deg, #333, #555);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.carbon-treatment h4 {
  color: white;
  margin-bottom: 10px;
}

/* Why Choose Us Section */
.bg-light {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .bg-light {
    padding: 60px 0;
  }
}

/* Contact Section */
#contact {
  padding: 80px 0;
  background-color: white;
}

@media (max-width: 768px) {
  #contact {
    padding: 60px 0;
  }
}

.contact-info h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-info .fs-5 {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: #333;
}
.contact-info i {
    color: #C8A45D;
}
iframe {
  border-radius: 8px;
}

/* Form Styles */
.form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #C8A45D;
  box-shadow: 0 0 0 0.2rem rgba(200, 164, 93, 0.25);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
#whychoose .lead {
    font-size: 1rem;
    font-weight: 300;
}
/* Footer */
.footer {
  padding: 2rem 0;
  background-color: #333;
  color: white;
  text-align: center;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer .small {
  font-size: 0.85rem;
  color: #aaa;
}

/* Menu Images */
.menu-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.menu-image:hover {
  transform: translateY(-5px);
}

.menu-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* Price Page Styles */
:root {
  --salon-light: #F8F8F8;
  --salon-gold: #C8A45D;
  --salon-dark: #333333;
}

.price-header {
  background: linear-gradient(to right, var(--salon-gold), #d4b67c);
  color: white;
  padding: 2rem 0;
  margin-bottom: 1.5rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.price-header h1 {
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .price-header h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1400px) {
  .price-header h1 {
    font-size: 1.5rem;
  }
}

.price-header p {
  font-size: 1rem;
  opacity: 0.9;
}

.service-category {
  background-color: white;
  border-radius: 8px;
  padding: 0.1rem 0.5rem 0.5rem 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--salon-gold);
}

@media (max-width: 1400px) {
  .service-category {
    padding: 0.9rem;
  }
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(200, 164, 93, 0.15);
}

.category-title {
  background-color: rgba(200, 164, 93, 0.1);
  color: var(--salon-dark);
  border-bottom: 2px solid var(--salon-gold); 
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px 8px 0 0;
  padding: 0.4rem 0.2rem;
}

@media (max-width: 1400px) {
  .category-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 1200px) {
  .category-title {
    font-size: 0.9rem;
  }
}

.service-item {
  display: flex;
  justify-content: space-between;
  padding: 0.1rem 0;
  border-bottom: 1px dashed #e8e8e8;
  font-size: 0.85rem;
}

@media (max-width: 1400px) {
  .service-item {
    font-size: 0.83rem;
  }
}

@media (max-width: 1200px) {
  .service-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .service-item {
    padding: 0.35rem 0;
  }
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  flex-grow: 1;
  padding-right: 0.5rem;
}

.service-price {
  color: var(--salon-gold);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.subcategory-title {
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 2px solid var(--salon-gold);
  background-color: rgba(200, 164, 93, 0.1);
  border-radius: 8px 8px 0 0;
  padding: 0.4rem 0.2rem;
}

.note {
  background-color: rgba(200, 164, 93, 0.1);
  padding: 0.3rem;
  font-size: 0.8rem;
  border-radius: 0 4px 4px 0;
}

.note-box {
  background-color: rgba(200, 164, 93, 0.1);
  border-left: 3px solid var(--salon-gold);
  padding: 0.5rem;
  font-size: 0.8rem;
  border-radius: 0 4px 4px 0;
}

.category-icon {
  color: var(--salon-gold);
  margin-right: 0.3rem;
  font-size: 1rem;
}



/* Responsive adjustments */
@media (max-width: 1200px) {
  body {
    font-size: 0.85rem;
  }
}

/* Equal height adjustment for rows */
.category-row {
  display: flex;
  flex-wrap: wrap;
}

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

.category-col .service-category {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-content {
  flex: 1;
}
.price .accordion-button {
    justify-content: center !important;
    text-align: center;
	border-radius: 8px !important;
  }
  
  .price .accordion-button::after {
    position: absolute;
    right: 20px;
  }
  .priceheading{
	background-color: var(--salon-gold);
    color: black;
	
  }
 .accordion-button:not(.collapsed) {
    color: black;
    background-color: var(--salon-gold);
	opacity:0.5;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


.about, .contact{
    padding: 0 10px;    
}

.price .row>* {
  padding-right: calc(var(--bs-gutter-x) * .1);
}

.price .row {
    --bs-gutter-x: 0.5rem;
}