/* ========================================
   SERVICES PAGE - PREMIUM LUXURY CSS
   Glassmorphism + Advanced Animations
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  --glass-bg: rgba(248, 244, 236, 0.85);
  --glass-bg-dark: rgba(44, 44, 44, 0.7);
  --glass-border: rgba(200, 168, 107, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-shadow-gold: 0 15px 35px rgba(200, 168, 107, 0.15);
  --glass-blur: blur(12px);
}

/* ========================================
   PAGE HERO WITH PARALLAX
   ======================================== */

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(107, 138, 116, 0.15), rgba(184, 149, 93, 0.2));
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroGlow 1.5s ease-out forwards;
}

@keyframes heroGlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineExpand 1s ease-out 0.5s forwards;
  transform: scaleX(0);
}

@keyframes lineExpand {
  to { transform: scaleX(1); }
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  margin: 20px 0;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.3s ease;
  position: relative;
}

.breadcrumb a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
}

.hero-description {
  max-width: 600px;
  margin: 20px auto 0;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   SECTION HEADER STYLES
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: headerReveal 0.8s ease 0.2s forwards;
}

@keyframes headerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.section-tag::before {
  content: '✦';
  margin-right: 10px;
  opacity: 0.8;
}

.section-tag::after {
  content: '✦';
  margin-left: 10px;
  opacity: 0.8;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.section-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 20px auto 0;
  position: relative;
  border-radius: 2px;
}

.section-line::before,
.section-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-line::before {
  left: -15px;
  box-shadow: 0 0 5px var(--gold);
}

.section-line::after {
  right: -15px;
  box-shadow: 0 0 5px var(--gold);
}

/* ========================================
   SERVICES OVERVIEW CARDS (GLASS)
   ======================================== */

.services-overview {
  padding: 100px 0;
  background: linear-gradient(135deg, #F8F4EC, #FFF9F0);
  position: relative;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.category-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 45px 35px;
  text-align: center;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  opacity: 0;
  transform: translateY(40px);
}

.category-card:nth-child(1) { animation: cardFloatIn 0.6s ease 0.05s forwards; }
.category-card:nth-child(2) { animation: cardFloatIn 0.6s ease 0.1s forwards; }
.category-card:nth-child(3) { animation: cardFloatIn 0.6s ease 0.15s forwards; }
.category-card:nth-child(4) { animation: cardFloatIn 0.6s ease 0.2s forwards; }
.category-card:nth-child(5) { animation: cardFloatIn 0.6s ease 0.25s forwards; }
.category-card:nth-child(6) { animation: cardFloatIn 0.6s ease 0.3s forwards; }

@keyframes cardFloatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 107, 0.08), transparent);
  transition: left 0.6s ease;
}

.category-card:hover::after {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.category-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold), var(--sage));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: inline-block;
}

.category-card:hover .category-icon {
  transform: scale(1.15) rotate(5deg);
}

.category-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.category-card:hover h3 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.category-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.category-number {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 168, 107, 0.08);
  font-family: 'Playfair Display', serif;
  transition: all 0.3s ease;
}

.category-card:hover .category-number {
  font-size: 4rem;
  color: rgba(200, 168, 107, 0.18);
}

/* ========================================
   SERVICE DETAIL SECTIONS
   ======================================== */

.service-detail {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.service-detail.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-detail:nth-child(even) {
  background: linear-gradient(135deg, #FFF9F0, #F8F4EC);
}

.service-detail:nth-child(odd) {
  background: #F8F4EC;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(200, 168, 107, 0.03), transparent);
  pointer-events: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse .service-detail-content {
  direction: ltr;
}

.service-detail-content {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.service-detail.visible .service-detail-content {
  opacity: 1;
  transform: translateX(0);
}

.service-detail-grid.reverse .service-detail-content {
  transform: translateX(30px);
}

.service-detail.visible .service-detail-grid.reverse .service-detail-content {
  transform: translateX(0);
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
}

.service-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-detail-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 25px;
  font-style: italic;
}

.service-detail-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(200, 168, 107, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-bottom-color: var(--gold);
  transform: translateX(5px);
}

.feature-item i {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.2);
}

.feature-item span {
  font-size: 0.9rem;
  color: #555;
  transition: color 0.3s ease;
}

.feature-item:hover span {
  color: var(--gold);
}

.service-detail-image {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.service-detail.visible .service-detail-image {
  opacity: 1;
  transform: translateX(0);
}

.service-detail-grid.reverse .service-detail-image {
  transform: translateX(-30px);
}

.service-detail.visible .service-detail-grid.reverse .service-detail-image {
  transform: translateX(0);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s ease;
}

.image-frame:hover {
  box-shadow: var(--glass-shadow-gold);
}

.image-frame img {
  width: 100%;
  height: auto;
  transition: all 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.image-frame:hover img {
  transform: scale(1.08);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
  cursor: pointer;
}

.image-frame:hover .image-badge {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   PROCESS SECTION (GLASS)
   ======================================== */

.process {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.pexels.com/photos/276583/pexels-photo-276583.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  animation: slowZoomBg 30s ease-in-out infinite alternate;
}

@keyframes slowZoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.process .section-header h2,
.process .section-header .section-tag {
  color: white;
}

.process .section-tag {
  color: var(--gold);
}

.process .section-header h2 {
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.process-step {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(200, 168, 107, 0.2);
  opacity: 0;
  transform: translateY(40px);
}

.process-step:nth-child(1) { animation: stepReveal 0.6s ease 0.1s forwards; }
.process-step:nth-child(2) { animation: stepReveal 0.6s ease 0.2s forwards; }
.process-step:nth-child(3) { animation: stepReveal 0.6s ease 0.3s forwards; }
.process-step:nth-child(4) { animation: stepReveal 0.6s ease 0.4s forwards; }

@keyframes stepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(360deg);
}

.step-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ========================================
   WHY CHOOSE US SECTION (GLASS)
   ======================================== */

.why-us-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #F8F4EC, #FFF9F0);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideRight 0.8s ease 0.2s forwards;
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.why-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin: 20px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-row {
  display: flex;
  gap: 50px;
  margin: 40px 0;
}

.stat {
  text-align: center;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.stat:last-child::after {
  display: none;
}

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--gold), var(--sage));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  letter-spacing: 1px;
}

.why-image {
  opacity: 0;
  transform: translateX(30px);
  animation: slideLeft 0.8s ease 0.2s forwards;
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  transition: all 0.6s ease;
  box-shadow: var(--glass-shadow);
}

.why-image:hover img {
  transform: scale(1.02);
  box-shadow: var(--glass-shadow-gold);
}

/* ========================================
   FAQ SECTION (GLASS)
   ======================================== */

.faq {
  padding: 100px 0;
  background: #F8F4EC;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
  color: var(--gold);
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/276583/pexels-photo-276583.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: transform 8s ease;
}

.cta-section:hover .cta-bg {
  transform: scale(1.05);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: ctaReveal 0.8s ease 0.3s forwards;
}

@keyframes ctaReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-content p {
  margin-bottom: 35px;
  opacity: 0.8;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 168, 107, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(200, 168, 107, 0);
  }
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  gap: 18px;
  box-shadow: 0 15px 35px rgba(200, 168, 107, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .page-hero-content h1 {
    font-size: 2.8rem;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .services-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-card {
    padding: 30px 20px;
  }
  
  .service-detail {
    padding: 60px 0;
  }
  
  .service-detail-content h2 {
    font-size: 1.8rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    padding: 30px 20px;
  }
  
  .why-content h2 {
    font-size: 1.8rem;
  }
  
  .stats-row {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .stat::after {
    display: none;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 1.6rem;
  }
  
  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
  
  .category-card h3 {
    font-size: 1.2rem;
  }
  
  .service-detail-content h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   SCROLL REVEAL INTERSECTION OBSERVER
   ======================================== */

.service-detail {
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ========================================
   GOLDEN SPARKLE EFFECT
   ======================================== */

.category-card, .process-step, .faq-item {
  position: relative;
  overflow: hidden;
}

.category-card::after, .process-step::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 168, 107, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.category-card:hover::after, .process-step:hover::after {
  opacity: 1;
  animation: rotateSparkle 3s linear infinite;
}

@keyframes rotateSparkle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}