/* =========================================
   HOME PAGE SPECIFIC STYLES
   ========================================= */

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 30, 0.88) 0%,
    rgba(26, 53, 99, 0.78) 50%,
    rgba(232, 101, 10, 0.25) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-glow 1.5s ease infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title-accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: 0.85em;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 32px;
  height: 54px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease infinite;
}

@keyframes scrollBounce {
  0% { top: 8px; opacity: 1; }
  80% { top: 28px; opacity: 0; }
  100% { top: 8px; opacity: 0; }
}

/* ---- Marquee ---- */
.marquee-strip {
  background: var(--gradient-orange);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Features ---- */
.features-section {
  padding: 96px 0;
  background: var(--gray-50);
}

.section-header { margin-bottom: 16px; }
.text-center { text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Showcase ---- */
.showcase-section {
  padding: 96px 0;
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-images {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}

.showcase-main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.showcase-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.showcase-main-img:hover img { transform: scale(1.04); }

.showcase-badge-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

.showcase-badge-float i { color: #f59e0b; }

.showcase-small-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showcase-small-imgs img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: var(--transition);
}

.showcase-small-imgs img:hover { transform: scale(1.03); }

.showcase-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.highlight-item i { color: var(--orange); font-size: 1.1rem; }

/* ---- Categories ---- */
.categories-section {
  padding: 96px 0;
  background: var(--cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,101,10,0.04), rgba(26,53,99,0.04));
  opacity: 0;
  transition: var(--transition);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.cat-card:hover::after { opacity: 1; }

.cat-emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

.cat-card h4 {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}

.cat-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.8rem;
  transition: var(--transition);
}

.cat-card:hover .cat-arrow {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

/* ---- Gallery Strip ---- */
.gallery-strip-section {
  padding: 96px 0;
  background: var(--white);
  overflow: hidden;
}

.gallery-strip-scroll {
  width: 100%;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--gray-100);
}

.gallery-strip-scroll::-webkit-scrollbar { height: 4px; }
.gallery-strip-scroll::-webkit-scrollbar-track { background: var(--gray-100); }
.gallery-strip-scroll::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

.gallery-strip-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-bottom: 8px;
}

.gallery-strip-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 320px;
  aspect-ratio: 4/3;
  flex-shrink: 0;
  cursor: pointer;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,20,40,0.8));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 24px 16px 14px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-strip-item:hover .gallery-strip-label { transform: translateY(0); }

/* ---- CTA ---- */
.cta-section {
  padding: 80px 0;
  background: var(--cream);
}

.cta-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232,101,10,0.2) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(232,101,10,0.15) 0%, transparent 50%);
}

.cta-content { position: relative; z-index: 1; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-div { display: none; }
  .hero-actions { flex-direction: column; }
  .showcase-highlights { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 24px; }
}
