/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B76E79' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(183,110,121,0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--rose-gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(183,110,121,0.15);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero h1 .accent {
  color: var(--rose-gold);
  font-style: italic;
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(232,180,184,0.3);
  z-index: -1;
}
.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-gold);
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 85%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero-float {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}
.hero-float-1 { bottom: 15%; left: -10%; }
.hero-float-2 { top: 15%; right: -5%; animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Trust Badges */
.trust-section { background: var(--white); }
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-badge {
  text-align: center;
  padding: 1.5rem;
}
.trust-badge i {
  font-size: 2rem;
  color: var(--rose-gold);
  margin-bottom: 0.8rem;
  display: block;
}
.trust-badge h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.trust-badge p {
  font-size: 0.8rem;
  margin: 0;
}

/* ===== HOME SERVICES PREVIEW ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  padding: 2.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(232,180,184,0.15);
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  border-color: var(--pink);
}
.service-card .icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--pink-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}
.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}
.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

/* ===== HOME TESTIMONIALS ===== */
.testimonial-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,180,184,0.1);
  position: relative;
}
.testimonial-card .quote-icon {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--champagne);
  line-height: 1;
  position: absolute;
  top: 1rem; left: 1.5rem;
}
.testimonial-card .stars {
  color: #D4AF37;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.testimonial-card .text {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text);
}
.testimonial-card .client {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card .client img {
  width: 45px; height: 45px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .client-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}
.testimonial-card .client-info p {
  font-size: 0.8rem;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--hero-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 600px; margin: 0 auto 2rem; }

/* ===== HOME ABOUT PREVIEW ===== */
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-about-image {
  position: relative;
}
.home-about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/5;
}
.home-about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--pink-gradient);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.home-about-badge .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.home-about-badge span:last-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home-about-text h2 {
  margin-bottom: 1rem;
}
.home-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.home-about-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.home-about-feat i {
  color: var(--rose-gold);
  font-size: 0.85rem;
}

/* ===== HOME PORTFOLIO PREVIEW ===== */
.home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.home-portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.home-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.home-portfolio-item:hover img {
  transform: scale(1.08);
}
.home-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,45,45,0.8) 0%, rgba(45,45,45,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}
.home-portfolio-item:hover .home-portfolio-overlay {
  opacity: 1;
}
.home-portfolio-overlay .tag {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.8rem;
  background: rgba(232,180,184,0.3);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.home-portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.home-portfolio-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== HOME GALLERY PREVIEW ===== */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.home-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  aspect-ratio: 1;
}
.home-gallery-item:hover img {
  transform: scale(1.08);
}
.home-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.home-gallery-large img {
  aspect-ratio: auto;
}
.home-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}
.home-gallery-item:hover .home-gallery-caption {
  opacity: 1;
}
.home-gallery-caption span {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== HOME PACKAGES PREVIEW ===== */
.home-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.home-package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(232,180,184,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.home-package-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.home-package-card.featured {
  border: 2px solid var(--pink);
  background: linear-gradient(135deg, var(--ivory), rgba(247,209,205,0.2));
}
.home-package-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--gold-gradient);
  background-size: 200% 200%;
  animation: shimmer 3s ease infinite;
  color: var(--white);
  padding: 0.3rem 2.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}
.home-package-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.2rem;
  color: var(--white);
}
.home-package-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.home-package-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
}
.home-package-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}
.home-package-card ul {
  margin-bottom: 1.5rem;
}
.home-package-card ul li {
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(232,180,184,0.08);
}
.home-package-card ul li i {
  color: var(--rose-gold);
  font-size: 0.75rem;
}

/* ===== HOME BLOG PREVIEW ===== */
.home-blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.home-blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.home-blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.home-blog-featured .home-blog-img {
  position: relative;
  overflow: hidden;
}
.home-blog-featured .home-blog-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.home-blog-featured:hover .home-blog-img img {
  transform: scale(1.05);
}
.home-blog-featured .home-blog-img .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 1rem;
  background: rgba(232,180,184,0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.home-blog-body {
  padding: 1.8rem;
}
.home-blog-body .meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.home-blog-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.home-blog-body h3 a {
  color: var(--dark);
  transition: var(--transition-fast);
}
.home-blog-body h3 a:hover {
  color: var(--rose-gold);
}
.home-blog-body p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.read-more {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.read-more:hover {
  gap: 0.8rem;
  color: var(--dusty-rose);
}
.home-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-blog-card-sm {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232,180,184,0.08);
}
.home-blog-card-sm:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}
.home-blog-card-sm img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.home-blog-card-sm .tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: rgba(232,180,184,0.15);
  color: var(--rose-gold);
  border-radius: 50px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.home-blog-card-sm h4 {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.home-blog-card-sm h4 a {
  color: var(--dark);
  transition: var(--transition-fast);
}
.home-blog-card-sm h4 a:hover {
  color: var(--rose-gold);
}
.home-blog-card-sm .meta {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; margin-bottom: 1rem; }
  .hero-image img { width: 80%; max-width: 300px; }
  .hero-float { display: none; }
  .trust-badges { gap: 1rem; }
  .home-about-grid { grid-template-columns: 1fr; text-align: center; }
  .home-about-badge { right: 0; }
  .home-about-features { grid-template-columns: 1fr; }
  .home-about-feat { justify-content: center; }
  .home-portfolio-grid { grid-template-columns: 1fr; }
  .home-gallery-grid { grid-template-columns: 1fr 1fr; }
  .home-gallery-large { grid-column: span 2; grid-row: span 1; }
  .home-packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .home-blog-grid { grid-template-columns: 1fr; }
  .home-blog-featured .home-blog-img img { height: 220px; }
}
