/* ==========================================================================
   JOSEPH HOPE GLOBAL - MODERN PREMIUM STYLESHEET
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Luxury Theme */
:root {
  --color-bg-main: #07080a;
  --color-bg-card: rgba(18, 20, 26, 0.7);
  --color-bg-card-hover: rgba(26, 29, 38, 0.85);
  --color-border: rgba(212, 175, 55, 0.15);
  --color-border-glow: rgba(212, 175, 55, 0.4);

  --color-gold-light: #f3e5ab;
  --color-gold: #D4AF37;
  /* Metallic Gold */
  --color-gold-dark: #aa841c;

  --color-text-primary: #f8f9fa;
  --color-text-secondary: #a0a5b5;
  --color-text-muted: #626875;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;

  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.05);

  --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--color-bg-main);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  position: relative;
}

/* Background Ambient Glow Blobs */
.bg-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

.blob-1 {
  top: 10%;
  left: -200px;
}

.blob-2 {
  top: 40%;
  right: -250px;
}

.blob-3 {
  top: 80%;
  left: 10%;
}

@media (max-width: 768px) {
  .bg-glow-blob {
    display: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  font-weight: 300;
  letter-spacing: 0.02em;
}

.text-gold {
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 1px;
  background-color: var(--color-gold);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-gold);
  color: #000;
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  background-color: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.btn i {
  margin-left: 8px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border);
  height: 70px;
}

.nav-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------------------------------
   LOGOOBOX
------------------------------- */
.logobox {
  display: flex;
  align-items: center;
  gap: 10px;
  /* space between image and text */
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

.logobox img {
  width: 45px;
  /* adjust as needed */
  height: 45px;
  /* adjust as needed */
  object-fit: contain;
  border-radius: 0;
  /* no rounded corners */
  flex-shrink: 0;
}

/* Mobile adjustments for the logo */
@media (max-width: 768px) {
  .logobox {
    font-size: 1rem;
  }

  .logobox img {
    width: 40px;
    height: 40px;
  }
}


.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger {
  width: 28px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Drawer */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: #0b0d12;
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    z-index: 100;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-cta {
    display: none;
    /* hidden on tablet/mobile header */
  }

  .nav-links .nav-cta-mobile {
    display: block !important;
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
  }

  /* hamburger transitions */
  .mobile-nav-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-gold);
  }

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

  .mobile-nav-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-gold);
  }
}

.nav-links .nav-cta-mobile {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 5rem 0;
  background-image: linear-gradient(180deg, rgba(7, 8, 10, 0.4) 0%, rgba(7, 8, 10, 0.95) 90%), url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--color-bg-main), transparent);
  pointer-events: none;
}

.hero-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  z-index: 10;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 390px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  aspect-ratio: 4/5;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(105%);
  transition: var(--transition-smooth);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* Overlay Accent on Hero image */
.hero-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.8) 0%, rgba(7, 8, 10, 0) 50%);
  z-index: 1;
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: rgba(18, 20, 26, 0.8);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem;
  border-radius: 8px;
  z-index: 2;
  box-shadow: var(--shadow-card);
  max-width: 250px;
}

.hero-floating-card p {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.4;
}

.hero-floating-card .author {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-top: 0.6rem;
  display: block;
}

@media (max-width: 992px) {
  .hero {
    padding: calc(var(--header-height) + 2rem) 0 4rem 0;
  }

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

  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 390px;
    margin: 0 auto;
  }

  .hero-floating-card {
    left: 10px;
    bottom: -15px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .logo {
    font-size: 1.25rem;
  }

  .book {
    width: 220px;
    height: 314px;
  }
}

/* ==========================================================================
   ABOUT / INSPIRATION SECTION
   ========================================================================== */
.about {
  padding: 8rem 0;
  position: relative;
}

.about-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.quote-block {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 4rem auto;
  position: relative;
  padding: 0 2rem;
}

.quote-block::before {
  content: '“';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
}

.about-intro-text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-intro-text p {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about {
    padding: 5rem 0;
  }

  .quote-text {
    font-size: 1.65rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
}

/* ==========================================================================
   SIGNATURE PROGRAMS SECTION
   ========================================================================== */
.programs {
  padding: 8rem 0;
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.programs-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.programs-header-left {
  max-width: 600px;
}

.programs-header-left p {
  color: var(--color-text-secondary);
}

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

.program-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
}

.program-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.program-card:hover {
  background: var(--color-bg-card-hover);
  transform: translateY(-8px);
}

.program-card:hover::after {
  border-color: var(--color-border-glow);
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.program-num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.program-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.program-card:hover .program-icon {
  background-color: var(--color-gold);
  color: #000;
}

.program-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.program-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.program-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  transition: var(--transition-fast);
}

.program-link i {
  margin-left: 6px;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.program-card:hover .program-link i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .programs {
    padding: 5rem 0;
  }

  .programs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

/* ==========================================================================
   FEATURED VIDEO SECTION
   ========================================================================== */
.media-section {
  padding: 8rem 0;
  position: relative;
}

.media-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-smooth);
}

.video-container:hover {
  border-color: var(--color-border-glow);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-play-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.video-container:hover .video-poster-img {
  transform: scale(1.03);
  filter: brightness(80%);
}

.play-btn-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transition: var(--transition-smooth);
  padding-left: 6px;
}

.video-container:hover .play-btn-glow {
  transform: scale(1.15);
  background-color: var(--color-gold-light);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
  .media-section {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   CORE PILLARS (CLARITY, GROWTH, IMPACT)
   ========================================================================== */
.pillars {
  padding: 8rem 0;
  position: relative;
}

.pillars-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.pillar-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  border-left: 1px solid var(--color-border);
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
}

.pillar-item:hover {
  border-left-color: var(--color-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(4px);
}

.pillar-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pillar-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillar-item {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   E-BOOKS / RESOURCES SHOP
   ========================================================================== */
.shop {
  padding: 8rem 0;
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.shop-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

/* 3D E-book Animation */
.book-wrapper {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book {
  width: 280px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-20deg);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.6);
}

.book:hover {
  transform: rotateY(-5deg) rotateX(5deg);
}

.book-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform-style: preserve-3d;
  transform-origin: left center;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px 6px 6px 2px;
}

/* 3D Page edge and thickness */
.book::before {
  content: '';
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: -10px;
  width: 16px;
  background-color: #eee;
  background-image: linear-gradient(to right, #ccc 0%, #fff 10%, #ccc 20%, #fff 30%, #ccc 40%, #fff 50%, #ccc 60%, #fff 70%, #ccc 80%, #fff 90%, #ccc 100%);
  transform: rotateY(90deg);
  transform-origin: left center;
  z-index: 1;
  border-radius: 0 2px 2px 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.book::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 6px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
  pointer-events: none;
}

.shop-content {
  display: flex;
  flex-direction: column;
}

.book-badge {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}

.book-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.book-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.book-price span.old {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: 300;
}

.book-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.book-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.book-feat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.book-feat-item i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .book-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .book-features {
    grid-template-columns: 1fr;
  }

  .shop-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-slider {
  margin-top: 4rem;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 10px;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.45;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.client-info h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.client-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
}

.slider-arrows {
  display: flex;
  gap: 1rem;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.05);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2.5rem 1.8rem;
  }

  .testimonial-quote {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq {
  padding: 8rem 0;
  background-color: rgba(255, 255, 255, 0.01);
  position: relative;
}

.faq-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg-card);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.faq-trigger h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.faq-trigger:hover h4 {
  color: var(--color-gold);
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--color-border-glow);
}

.faq-item.active .faq-icon-box {
  transform: rotate(45deg);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-inner {
  padding: 0 2rem 1.8rem 2rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 1.2rem 1.5rem;
  }

  .faq-trigger h4 {
    font-size: 1.05rem;
  }

  .faq-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

/* ==========================================================================
   CONTACT / BOOKING & SUBSCRIPTION SECTION
   ========================================================================== */
.contact {
  padding: 8rem 0;
  position: relative;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

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

.contact-intro {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-method-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
}

.contact-method-details h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

.contact-method-details p {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.contact-method-details a:hover p {
  color: var(--color-gold);
}

/* Social links icons */
.contact-socials h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

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

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  border-color: var(--color-gold);
  color: #000;
  background-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Forms styling */
.contact-form-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.08);
}

textarea.form-input {
  height: 120px;
  resize: none;
}

.form-submit-row {
  margin-top: 2rem;
}

.form-submit-row .btn {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-card {
    order: 1;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   NEWSLETTER INBOX BLOCK
   ========================================================================== */
.newsletter-bar {
  padding: 5rem 0;
  background-color: #0b0d12;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.newsletter-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.newsletter-text h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.9rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-primary);
}

.newsletter-form input:focus {
  border-color: var(--color-gold);
}

@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #050608;
  padding: 5rem 0 3rem 0;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 320px;
}

.footer-links-col h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a {
  color: var(--color-text-muted);
}

.footer-links-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ==========================================================================
   FLOATING BUTTONS & UTILITIES
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  font-size: 1.4rem;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.floating-whatsapp {
  background-color: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   MODALS (BOOKING & CONTACT POPUP)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 8, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #0f1115;
  border: 1px solid var(--color-border);
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-gold);
}

.modal-dialog h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.modal-dialog p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .modal-dialog {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}