/* ============================================================
   GARIMA KOHLI MAKEOVERS — Homepage Styles
   ============================================================ */

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-main.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,0,8,0.80) 0%,
    rgba(128,0,32,0.45) 50%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  max-width: 700px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}
.hero-eyebrow::before { width: 40px; }
.hero-eyebrow::after { width: 24px; }
.hero h1 {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Floating badges on hero */
.hero-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-1 { bottom: 120px; right: 60px; }
.hero-badge-2 { top: 200px; right: 100px; }
.hero-badge i { color: var(--color-gold); font-size: 1.2rem; }
.hero-badge-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; line-height: 1; }
.hero-badge-lbl { font-size: 0.7rem; opacity: 0.8; }

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--color-maroon);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.trust-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
}
.trust-num sup { font-size: 1.2rem; }
.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* --- SERVICES OVERVIEW --- */
.services-section { background: var(--color-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--color-ivory);
  border: 1px solid #ede0e5;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--color-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-maroon);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--color-maroon);
  color: var(--color-white);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.85rem; color: var(--color-text-light); }

/* --- WHY CHOOSE --- */
.why-section { background: var(--color-blush); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-image-wrap { position: relative; }
.why-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-maroon);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-gold);
}
.why-badge-lbl {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
}
.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-maroon);
  box-shadow: var(--shadow-sm);
}
.why-item-text h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item-text p { font-size: 0.85rem; }

/* --- PORTFOLIO PREVIEW --- */
.portfolio-section { background: var(--color-ivory); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  margin-bottom: 40px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(128,0,32,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- PRICING --- */
.pricing-section { background: var(--color-black); }
.pricing-section .section-title { color: var(--color-white); }
.pricing-section .section-label { color: var(--color-gold); }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.6); }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-table thead tr {
  background: var(--color-maroon);
  color: var(--color-white);
}
.pricing-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pricing-table thead th:last-child { text-align: right; }
.pricing-table tbody tr { background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
.pricing-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.08); }
.pricing-table tbody tr:hover { background: rgba(212,175,55,0.12); }
.pricing-table tbody td {
  padding: 16px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.pricing-table tbody td:first-child { font-weight: 500; }
.pricing-table tbody td:nth-child(2) { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.pricing-table tbody td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 600;
}
.pricing-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* --- TESTIMONIAL --- */
.testimonial-section { background: var(--color-ivory); }
.testimonial-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 48px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--color-blush);
  line-height: 1;
}
.testimonial-stars { color: var(--color-gold); font-size: 1.1rem; margin-bottom: 24px; display: flex; justify-content: center; gap: 4px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-black);
  line-height: 1.6;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}
.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-black);
}
.testimonial-author-tag {
  font-size: 0.78rem;
  color: var(--color-text-light);
}
.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--color-maroon);
  font-weight: 500;
}

/* --- INSTAGRAM STRIP --- */
.instagram-section { background: var(--color-white); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(128,0,32,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.3rem;
  color: var(--color-white);
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* --- BRAND PARTNERS --- */
.partners-section { background: var(--color-blush); padding: 50px 0; }
.partners-track {
  display: flex;
  align-items: center;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.partner-item:hover { opacity: 1; }
.partner-item i { font-size: 1.4rem; color: var(--color-maroon); }
.partner-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-maroon);
}

/* --- CTA BANNER --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-maroon) 0%, #4a0012 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero/cta-bg.jpg') center/cover;
  opacity: 0.15;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- RESPONSIVE HOMEPAGE --- */
@media (max-width: 1024px) {
  .why-inner { gap: 48px; }
  .hero-badge { display: none; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image-wrap img { height: 360px; }
  .why-badge { position: static; display: inline-block; margin-top: 16px; }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .portfolio-item.tall { grid-row: span 1; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-item::after { display: none; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { padding: 40px 28px; }
  .pricing-table thead th:nth-child(2),
  .pricing-table tbody td:nth-child(2) { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
