:root {
  --primary-gold: #d4a52a;
  --secondary-gold: #e6b84d;
  --accent-gold: #f4d03f;
  --text-black: #ffffff;
  --text-dark: #e0e0e0;
  --text-light: #b0b0b0;
  --background-white: #1a1a1a;
  --background-light: #2a2a2a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-black);
  overflow-x: hidden;
  background-color: var(--background-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--background-white);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  min-height: 90px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 130px;
  width: auto;
  max-width: 550px;
  object-fit: contain;
}

.nav-logo h2 {
  color: var(--primary-gold);
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.8rem;
}

.logo-image {
  height: 200px;
  width: auto;
  max-width: 750px;
  object-fit: contain;
}

.crown {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: -10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-family: "Dancing Script", cursive;
  background: linear-gradient(
    45deg,
    #ffd700,
    #ffed4e,
    #ffd700,
    #daa520,
    #ffd700
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s ease-in-out infinite;
}

.diva {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 0.8;
}

.beauty {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: -5px;
  margin-left: 20px;
}

.logo-subtitle {
  font-size: 0.9rem;
  color: var(--text-black);
  font-weight: 500;
  margin-top: -15px;
  font-family: "Dancing Script", cursive;
  font-style: italic;
}

.hero-services {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(194, 141, 29, 0.05);
  border-radius: 12px;
  border-left: 4px solid #c28d1d;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(194, 141, 29, 0.1);
  transform: translateX(5px);
}

.service-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.service-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--background-white);
  color: var(--text-dark);
  position: relative;
  padding: 4rem 0 0rem;
  margin-top: 60px;
  margin-bottom: 0;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
  align-content: start;
}

.hero-text {
  text-align: left;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c28d1d 0%, #ffd700 100%);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.main-title {
  display: block;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
  letter-spacing: 3px;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-style: italic;
  background: linear-gradient(
    135deg,
    var(--text-black) 0%,
    var(--primary-gold) 50%,
    var(--text-black) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s ease-in-out infinite;
}

.sub-title {
  display: block;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--primary-gold);
  letter-spacing: 2px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  margin-top: -0.2rem;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 90%;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.hero-btn.primary {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--secondary-gold) 100%
  );
  color: var(--text-black);
  box-shadow: 0 8px 25px rgba(196, 143, 29, 0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(196, 143, 29, 0.4);
  background: linear-gradient(
    135deg,
    var(--secondary-gold) 0%,
    var(--accent-gold) 100%
  );
}

.hero-btn.secondary {
  background: transparent;
  color: var(--text-black);
  border: 2px solid var(--primary-gold);
  position: relative;
}

.hero-btn.secondary:hover {
  color: var(--text-black);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(196, 143, 29, 0.3);
}

.hero-btn.secondary:hover::before {
  left: 0;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(8px) scale(1.1);
}

.hero-btn:hover i {
  transform: scale(1.1);
}

.btn-text {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-left: 0.8rem;
  position: relative;
  z-index: 1;
}

.hero-btn i {
  font-size: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-left: 0.8rem;
  position: relative;
  z-index: 1;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-top: 0;
  margin-top: -2rem;
  transform: translateY(0);
  background: transparent;
}

.portrait-container {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  z-index: 2;
  margin-top: -1rem;
  transform: translateY(0);
  background: transparent;
}

.portrait-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
}

.beauty-decoration {
  display: none;
}

.decoration-circle {
  display: none;
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.circle-2 {
  width: 60px;
  height: 60px;
  bottom: -10px;
  left: -10px;
  animation-delay: 2s;
}

.circle-3 {
  width: 40px;
  height: 40px;
  top: 50%;
  left: -15px;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes crownGlow {
  0% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6),
      0 0 30px rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8),
      0 0 50px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes textPulse {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(196, 143, 29, 0.3);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 12px rgba(196, 143, 29, 0.4);
    transform: scale(1.01);
  }
}

@keyframes subtitleGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(196, 143, 29, 0.2);
    opacity: 0.8;
  }
  50% {
    text-shadow: 0 0 15px rgba(196, 143, 29, 0.4);
    opacity: 1;
  }
}

.hero-bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 80%;
  background: var(--primary-gold);
  border-radius: 0;
  z-index: 1;
  opacity: 0.05;
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Portfolio Gallery Section */
.portfolio-gallery {
  padding: 3rem 0;
  background: var(--background-white);
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background: var(--background-light);
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-category {
  background: var(--background-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(196, 143, 29, 0.2);
  border-color: var(--primary-gold);
}

.pricing-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-gold);
}

.pricing-category-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pricing-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-subcategory {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 165, 42, 0.2);
}

.pricing-subcategory:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.pricing-subcategory-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 165, 42, 0.1);
}

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

.pricing-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  flex: 1;
}

.pricing-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Poppins", sans-serif;
  text-align: right;
  min-width: 100px;
}

.pricing-item-description {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-gold);
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
  padding: 0.8rem;
  background: rgba(212, 165, 42, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--primary-gold);
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--secondary-gold) 100%
  );
  color: var(--text-black);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(212, 165, 42, 0.3);
}

.pricing-btn:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-gold) 0%,
    var(--accent-gold) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 42, 0.4);
}

.pricing-btn i {
  font-size: 1rem;
}

.portfolio-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.gallery-category {
  margin-bottom: 3rem;
}

.gallery-category-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--background-light);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(196, 143, 29, 0.25);
}

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

/* Specific positioning for lash extension images */
.lash-extension-top {
  object-position: center top;
}

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

/* Responsive adjustments for portfolio gallery */
@media (max-width: 768px) {
  .portfolio-gallery {
    padding: 2.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .gallery-item img {
    height: 220px;
  }

  .gallery-category-title {
    font-size: 1.8rem;
  }

  .portfolio-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .gallery-category {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .portfolio-gallery {
    padding: 2rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-category-title {
    font-size: 1.6rem;
  }

  .portfolio-subtitle {
    font-size: 1rem;
    padding: 0 0.8rem;
    margin-bottom: 1.8rem;
  }

  .gallery-category {
    margin-bottom: 2rem;
  }
}

@media (max-width: 375px) {
  .portfolio-gallery {
    padding: 1.8rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  .gallery-item img {
    height: 180px;
  }

  .gallery-category-title {
    font-size: 1.4rem;
  }

  .portfolio-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .gallery-category {
    margin-bottom: 1.8rem;
  }
}

/* Blog Section */
.blog {
  padding: 2rem 0;
  background: var(--background-white);
}

.blog-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-card {
  background: var(--background-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(196, 143, 29, 0.2);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-date {
  color: var(--text-light);
}

.blog-category {
  background: var(--primary-gold);
  color: var(--text-black);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--secondary-gold);
}

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

.blog-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--text-black);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(196, 143, 29, 0.3);
}

.blog-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(196, 143, 29, 0.4);
}

/* Blog Post Styles */
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

.blog-post-container {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 2rem 1rem !important;
  background: var(--background-white);
  min-height: 100vh;
  overflow-x: hidden !important;
  position: relative !important;
  z-index: 1 !important;
}

.blog-post {
  background: var(--background-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 100%;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-gold);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: var(--text-light);
}

.blog-post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.blog-post-category {
  background: var(--primary-gold);
  color: var(--text-black);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-post-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

.blog-post-excerpt {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-image {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 2rem !important;
  border-radius: 15px;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.1);
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
}

.blog-post-image img {
  width: 100% !important;
  height: auto !important;
  max-height: 400px !important;
  object-fit: cover !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

.blog-post-content {
  padding: 2rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 100%;
  overflow-x: hidden;
}

.blog-post-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-post-category {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 100%);
  color: var(--text-dark);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(196, 143, 29, 0.3);
  transition: all 0.3s ease;
}

.blog-post-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 143, 29, 0.4);
}

.blog-post-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-post-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.blog-post-intro {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-left: 4px solid var(--primary-gold);
  border-radius: 5px;
}

.blog-post-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
  font-family: "Poppins", sans-serif;
}

.blog-post-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 2rem 0 1rem;
  font-family: "Poppins", sans-serif;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.blog-post-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.blog-post-cta {
  background: var(--background-light);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
}

.blog-post-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.blog-post-cta p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Post Specific Elements */
.comparison-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #5a5a5a 0%, #4a4a4a 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(196, 143, 29, 0.2);
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary-gold);
  transition: all 0.3s ease;
}

.comparison-table th {
  background: var(--primary-gold);
  color: var(--text-dark);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
}

.comparison-table tr:hover {
  background: linear-gradient(135deg, #6a6a6a 0%, #5a5a5a 100%);
  transform: translateY(-1px);
}

.comparison-table tr:hover td {
  color: #ffd700;
}

.faq-section {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
  border-radius: 15px;
  border-left: 5px solid var(--primary-gold);
  color: var(--background-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.faq-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-left-color: #d4af37;
}

.faq-answer {
  margin-top: 1rem;
}

.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-item {
  padding: 2rem;
  background: linear-gradient(135deg, #e8e9ea 0%, #d8d9da 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 143, 29, 0.3);
  position: relative;
  overflow: hidden;
}

.comparison-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), #d4af37);
}

.comparison-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, #d8d9da 0%, #e8e9ea 100%);
}

.comparison-item h3 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-gold);
}

.comparison-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-item li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(196, 143, 29, 0.2);
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
  color: #1a1a1a;
  font-weight: 500;
}

.comparison-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

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

.care-routine {
  background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 1.5rem 0;
  color: var(--background-white);
  border-left: 5px solid var(--primary-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.care-routine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.care-routine:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-left-color: #d4af37;
}

.avoid-products {
  background: linear-gradient(135deg, #4a3a3a 0%, #3a2a2a 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 1.5rem 0;
  border-left: 5px solid #e53e3e;
  color: var(--background-white);
  box-shadow: 0 8px 32px rgba(229, 62, 62, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.avoid-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e53e3e, transparent);
}

.avoid-products:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(229, 62, 62, 0.3);
  border-left-color: #ff6b6b;
}

.care-routine h3,
.avoid-products h3 {
  color: var(--primary-gold);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(196, 143, 29, 0.3);
  font-weight: 600;
}

.care-routine h3:first-of-type,
.avoid-products h3:first-of-type {
  margin-top: 0;
}

.care-routine ul,
.avoid-products ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.care-routine li,
.avoid-products li {
  padding: 0.8rem 0 0.8rem 2.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: #ffffff;
}

.care-routine li:last-child,
.avoid-products li:last-child {
  border-bottom: none;
}

.care-routine li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.avoid-products li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #e53e3e;
  font-weight: bold;
  font-size: 1.2rem;
}

.care-routine li:hover,
.avoid-products li:hover {
  padding-left: 3rem;
  background: rgba(196, 143, 29, 0.1);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--text-black);
  box-shadow: 0 8px 25px rgba(196, 143, 29, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(196, 143, 29, 0.4);
}

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

.cta-btn.secondary:hover {
  background: var(--primary-gold);
  color: var(--text-black);
}

.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--background-light);
}

.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-post {
  background: var(--background-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.1);
  transition: transform 0.3s ease;
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post h4 {
  padding: 1.5rem 1.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.related-post a {
  display: block;
  padding: 0 1.5rem 1.5rem;
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
}

.related-post a:hover {
  text-decoration: underline;
}

/* Reviews Section */
/* Logo Section */
.logo-section {
  padding: 0.5rem 0;
  background: var(--background-white);
  text-align: center;
  margin-bottom: 0;
}

.logo-display {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-display-image {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-display-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(196, 143, 29, 0.3);
}

/* Responsive logo section */
@media (max-width: 768px) {
  .logo-section {
    padding: 0.3rem 0;
  }

  .logo-display-image {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .logo-section {
    padding: 0.2rem 0;
  }

  .logo-display-image {
    max-width: 200px;
  }
}

@media (max-width: 375px) {
  .logo-section {
    padding: 0.1rem 0;
  }

  .logo-display-image {
    max-width: 180px;
  }
}

.reviews {
  padding: 0 0 4rem 0;
  background: var(--background-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0;
}

.review-card {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(196, 143, 29, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.15);
}

/* Read More Button */
.read-more-btn {
  color: var(--primary-gold);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9em;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: var(--secondary-gold);
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.map-content {
  text-align: center;
  z-index: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.map-content i.fa-map-marker-alt {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: block;
}

.map-content h3 {
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.map-content p {
  margin: 0.25rem 0;
  color: var(--text-color);
  font-size: 1rem;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--secondary-gold) 100%
  );
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 143, 29, 0.3);
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 143, 29, 0.4);
  color: white;
  text-decoration: none;
}

/* Google Maps Container */
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.google-map {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  max-width: 250px;
  z-index: 10;
}

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

.map-info i.fa-map-marker-alt {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.map-info h3 {
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.map-info p {
  margin: 0.25rem 0;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive map overlay */
@media (max-width: 768px) {
  .map-overlay {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .map-container {
    height: 300px;
  }
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-stars i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.review-stars i.far {
  color: #ddd;
}

.review-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 165, 42, 0.1);
  padding-top: 1rem;
}

.review-author strong {
  color: var(--text-dark);
  font-weight: 600;
}

.review-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.google-reviews-link {
  text-align: center;
  margin-top: 2rem;
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #4285f4;
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.google-reviews-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.google-reviews-btn i {
  font-size: 1.2rem;
}

/* Services Section */
.services {
  padding: 3rem 0 3rem;
  background-color: var(--background-white);
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.reviews .section-title {
  margin-bottom: 1.5rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.service-card {
  background: var(--background-light);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Accordion Styles */
.accordion-card {
  padding: 0;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

/* Service title responsive display */
.desktop-title {
  display: inline;
}

.mobile-title {
  display: none;
}

@media (max-width: 480px) {
  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }
}

/* Image Container and Overlay Styles */
.image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.accordion-card .service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-overlay {
  display: none;
}

.overlay-title {
  color: var(--primary-gold);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.overlay-description {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}

.overlay-button {
  background: var(--primary-gold);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 165, 42, 0.3);
}

.overlay-button:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 42, 0.4);
}

.accordion-header {
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(212, 165, 42, 0.05);
}

.accordion-title-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 1rem;
  padding: 0 2.5rem;
  position: relative;
  gap: 1rem;
}

.accordion-card h3 {
  margin: 0;
  text-align: left;
  flex: 0 0 auto;
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: var(--primary-gold);
  color: var(--background-white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
}

.accordion-toggle:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 143, 29, 0.3);
}

.read-more-text {
  display: block;
}

.read-less-text {
  display: none;
}

.accordion-card.active .read-more-text {
  display: none;
}

.accordion-card.active .read-less-text {
  display: block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 2.5rem;
}

.accordion-card.active .accordion-content {
  max-height: 2000px;
  padding: 0 2.5rem 2.5rem 2.5rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(196, 143, 29, 0.2);
}

.service-card:not(.accordion-card) .service-card-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 250px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px 12px 0 0;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-description p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.service-description p:last-child {
  margin-bottom: 0;
}

.intro-text {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.method-text,
.technique-text {
  color: var(--text-light);
  font-size: 1rem;
}

.result-text {
  font-weight: 500;
  color: var(--primary-gold);
  font-style: italic;
  font-size: 1.05rem;
}

/* Powder Brows Inline FAQ Styles */
.powder-brows-faq {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(212, 165, 42, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
}

.faq-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-item-inline {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(212, 165, 42, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item-inline:hover {
  background: rgba(212, 165, 42, 0.05);
  border-color: var(--primary-gold);
}

.faq-item-inline:last-child {
  margin-bottom: 0;
}

.faq-question-inline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item-inline.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer-inline {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-top: 0.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
}

.faq-item-inline.active .faq-answer-inline {
  max-height: 200px;
  margin-top: 0.8rem;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-align: center;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 165, 42, 0.1);
  border-radius: 8px;
  border: 2px solid var(--primary-gold);
}

/* Pricing details within service package */
.service-package .pricing-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.service-package .pricing-category {
  border: 1px solid rgba(212, 165, 42, 0.3);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(212, 165, 42, 0.05);
}

.service-package .pricing-category-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 165, 42, 0.3);
}

.service-package .pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(212, 165, 42, 0.15);
}

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

.service-package .pricing-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  flex: 1;
}

.service-package .pricing-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  text-align: right;
  min-width: 80px;
}

.service-details {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(212, 165, 42, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--primary-gold);
}

.detail-item {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item strong {
  color: var(--text-dark);
  font-weight: 600;
}

.service-package {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(212, 165, 42, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 42, 0.2);
  text-align: center;
}

.package-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-includes {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: var(--background-white);
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(196, 143, 29, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 143, 29, 0.15);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-question::before {
  content: "❓";
  font-size: 1.2rem;
  color: var(--primary-gold);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin-left: 1.5rem;
}

/* About Section */
.about {
  padding: 3rem 0;
  background: var(--background-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.about-portrait {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  padding: 3rem 0;
  background-color: var(--background-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  width: 20px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-gold);
  color: var(--background-white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 143, 29, 0.3);
}

.call-btn i {
  color: var(--background-white);
  font-size: 0.9rem;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-gold);
  color: var(--background-white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 143, 29, 0.3);
}

.directions-btn i {
  color: var(--background-white);
  font-size: 0.9rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
  color: white;
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--secondary-gold) 100%
  );
  color: var(--text-black);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background: var(--background-white);
  color: var(--text-black);
  padding: 2rem 0 1rem;
  text-align: center;
  margin-top: 2rem;
}

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

.footer p a {
  color: white;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-gold);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--text-dark);
  color: var(--background-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: var(--primary-gold);
  transform: translateY(-2px);
}

.back-to-top.show {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 50px;
    flex-direction: column;
    background-color: var(--background-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

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

  .main-title {
    font-size: 4rem;
    letter-spacing: 1px;
    line-height: 1.1;
  }

  .sub-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 0;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .greeting {
    font-size: 1.5rem;
  }

  .name {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-btn {
    min-width: auto;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .portrait-container {
    width: 400px;
    height: 520px;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    gap: 1rem;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-category {
    padding: 1.5rem;
  }

  .pricing-category-title {
    font-size: 1.3rem;
  }

  .pricing-subcategory-title {
    font-size: 1rem;
  }

  .pricing-label {
    font-size: 0.9rem;
  }

  .pricing-value {
    font-size: 1.1rem;
  }

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

  .hero-description {
    font-size: 1.1rem;
    padding: 0 1rem;
    line-height: 1.7;
  }

  .main-title {
    font-size: 3.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
  }

  .sub-title {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-top: 0;
  }

  .accordion-title-section {
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .accordion-card h3 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .accordion-toggle {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .accordion-content {
    padding: 0 2rem;
  }

  .accordion-card.active .accordion-content {
    padding: 0 2rem 2rem 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Services section - add small padding for curvy corners */
  .services .container {
    padding: 0 10px;
  }

  /* Service cards - subtle styling for mobile with curvy corners */
  .services .service-card {
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 1rem 0 !important;
    box-shadow: 0 4px 12px rgba(196, 143, 29, 0.15) !important;
    overflow: hidden !important;
  }

  /* Accordion cards - add curvy corners but maintain edge-to-edge design */
  .services .accordion-card {
    border-radius: 40px 40px 40px 40px !important;
    overflow: hidden !important;
    margin: 0 0 1rem 0 !important;
  }

  /* Image container - curvy top corners, straight sides */
  .services .image-container {
    border-radius: 40px 40px 0 0 !important;
  }

  /* Add very curvy border radius to accordion content areas */
  .services .accordion-title-section {
    background: var(--background-light) !important;
    border-radius: 0 0 30px 30px !important;
    padding: 1rem 1.5rem !important;
  }

  .services .accordion-content {
    background: var(--background-light) !important;
    border-radius: 0 0 30px 30px !important;
  }

  /* Accordion content - add padding back for text */
  .services .accordion-content {
    padding: 0 1.5rem;
  }

  .services .accordion-card.active .accordion-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

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

  .main-title {
    font-size: 3.5rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }

  .sub-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-top: 0;
  }

  .hero-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
    line-height: 1.6;
  }

  .greeting {
    font-size: 1.2rem;
  }

  .name {
    font-size: 1.8rem;
  }

  .portrait-container {
    width: 300px;
    height: 380px;
  }

  .nav-logo img {
    height: 100px;
    max-width: 400px;
  }

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

  .hero-description {
    font-size: 1rem;
    padding: 0 0.8rem;
    line-height: 1.6;
  }

  .main-title {
    font-size: 3.2rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }

  .sub-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-top: 0;
  }

  .blog-post-cta {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
  }

  .blog-post-cta h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .blog-post-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .cta-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    max-width: 280px;
  }

  .pricing-card {
    padding: 1.2rem;
  }

  .pricing-category-title {
    font-size: 1.6rem;
  }

  .pricing-service {
    font-size: 1.1rem;
  }

  .pricing-price {
    font-size: 1.6rem;
  }

  .pricing-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .image-placeholder {
    width: 250px;
    height: 250px;
    font-size: 3rem;
  }

  .accordion-title-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 1rem;
    min-height: 80px;
  }

  .accordion-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    word-break: break-word;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .accordion-toggle {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .accordion-content {
    padding: 0 1.5rem;
  }

  .accordion-card.active .accordion-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  /* Mobile pricing styles */
  .service-package .pricing-details {
    gap: 1rem;
  }

  .service-package .pricing-category {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .service-package .pricing-category-title {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .service-package .pricing-item {
    padding: 0.3rem 0;
  }

  .service-package .pricing-label {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .service-package .pricing-value {
    font-size: 0.9rem;
    min-width: 70px;
  }

  .package-includes {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
}

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

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--background-white);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--secondary-gold) 100%
  );
  border-radius: 6px;
  border: 2px solid var(--background-white);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-gold) 0%,
    var(--accent-gold) 100%
  );
}

/* Firefox scrollbar styling */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-gold) var(--background-white);
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Force image containment */
.blog-post-image,
.blog-post-image img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  max-height: 400px !important;
  object-fit: cover !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
}

/* Blog Listing Styles */
.blog-listing {
  padding: 8rem 0 4rem 0;
  background: var(--background-white);
  min-height: 100vh;
}

.blog-listing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-listing-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--primary-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.blog-listing-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary-gold);
  background: transparent;
  color: var(--primary-gold);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 143, 29, 0.3);
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-listing-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 143, 29, 0.1);
}

.blog-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-listing-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-listing-card:hover .blog-listing-image img {
  transform: scale(1.05);
}

.blog-listing-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 100%);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-listing-content {
  padding: 1.5rem;
}

.blog-listing-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-listing-read-time {
  color: var(--primary-gold);
  font-weight: 600;
}

.blog-listing-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-listing-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-listing-title a:hover {
  color: var(--primary-gold);
}

.blog-listing-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-listing-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(196, 143, 29, 0.1);
  color: var(--primary-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-listing-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-listing-read-more:hover {
  color: var(--text-dark);
  transform: translateX(5px);
}

.blog-newsletter {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  margin-top: 4rem;
}

.newsletter-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--primary-gold);
  color: var(--text-dark);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #d4af37;
  transform: translateY(-2px);
}

/* Blog Post Responsive Styles */
@media (max-width: 768px) {
  .blog-post-container {
    padding: 1rem 0.5rem;
  }

  .blog-post-header {
    padding: 1rem;
  }

  .blog-post-title {
    font-size: 2rem;
  }

  .blog-post-content {
    padding: 1rem;
  }

  .comparison-box {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-post-cta {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }

  .blog-post-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .blog-post-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
  }

  .blog-post-image,
  .blog-post-image img {
    max-height: 300px !important;
  }

  /* Blog Listing Responsive */
  .blog-listing-title {
    font-size: 2.2rem;
  }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .container {
    padding: 0 10px;
  }

  /* Services section - add small padding for curvy corners */
  .services .container {
    padding: 0 8px;
  }

  /* Service cards - subtle styling for mobile with curvy corners */
  .services .service-card {
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 0.8rem 0 !important;
    box-shadow: 0 3px 10px rgba(196, 143, 29, 0.15) !important;
    overflow: hidden !important;
  }

  /* Accordion cards - add curvy corners but maintain edge-to-edge design */
  .services .accordion-card {
    border-radius: 35px 35px 35px 35px !important;
    overflow: hidden !important;
    margin: 0 0 0.8rem 0 !important;
  }

  /* Image container - curvy top corners, straight sides */
  .services .image-container {
    border-radius: 35px 35px 0 0 !important;
  }

  /* Add very curvy border radius to accordion content areas */
  .services .accordion-title-section {
    background: var(--background-light) !important;
    border-radius: 0 0 25px 25px !important;
    padding: 0.8rem 1rem !important;
  }

  .services .accordion-content {
    background: var(--background-light) !important;
    border-radius: 0 0 25px 25px !important;
  }

  /* Accordion content - add padding back for text */
  .services .accordion-content {
    padding: 0 1rem;
  }

  .services .accordion-card.active .accordion-content {
    padding: 0 1rem 1rem 1rem;
  }

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

  .main-title {
    font-size: 3.2rem;
    letter-spacing: 0.3px;
  }

  .sub-title {
    font-size: 1rem;
    letter-spacing: 0.3px;
  }

  .hero-description {
    font-size: 0.85rem;
    padding: 0 0.3rem;
  }

  .portrait-container {
    width: 280px;
    height: 350px;
  }

  .nav-logo img {
    height: 90px;
    max-width: 350px;
  }

  .section-title {
    font-size: 1.8rem;
    padding: 0 0.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    line-height: 1.6;
  }

  .main-title {
    font-size: 2.8rem;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }

  .sub-title {
    font-size: 1.6rem;
    letter-spacing: 0.3px;
    margin-top: 0;
  }

  .hero-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  .service-card:not(.services .service-card) {
    padding: 1rem;
  }

  .pricing-card {
    padding: 1rem;
  }

  .pricing-category-title {
    font-size: 1.4rem;
  }

  .pricing-service {
    font-size: 1rem;
  }

  .pricing-price {
    font-size: 1.4rem;
  }

  .pricing-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .accordion-title-section {
    padding: 0.8rem 1rem;
  }

  .accordion-card h3 {
    font-size: 1rem;
    line-height: 1.2;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .blog-listing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-post-cta {
    padding: 1.2rem 0.8rem;
    margin: 1.2rem auto;
  }

  .blog-post-cta h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .blog-post-cta p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .cta-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    max-width: 260px;
  }

  .blog-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .blog-newsletter {
    padding: 2rem 1rem;
  }

  /* Extra small mobile pricing styles */
  .service-package .pricing-details {
    gap: 0.8rem;
  }

  .service-package .pricing-category {
    padding: 0.6rem;
    margin-bottom: 0.3rem;
  }

  .service-package .pricing-category-title {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .service-package .pricing-item {
    padding: 0.2rem 0;
  }

  .service-package .pricing-label {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .service-package .pricing-value {
    font-size: 0.85rem;
    min-width: 60px;
  }

  .package-includes {
    font-size: 0.8rem;
    padding: 0 0.3rem;
    line-height: 1.3;
  }
}

/* Blog Card Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-listing-card {
  animation: fadeInUp 0.6s ease forwards;
}

.blog-listing-card:nth-child(1) {
  animation-delay: 0.1s;
}
.blog-listing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.blog-listing-card:nth-child(3) {
  animation-delay: 0.3s;
}
.blog-listing-card:nth-child(4) {
  animation-delay: 0.4s;
}
