/* Original About Page CSS - Exact Match (WITH INLINE MOBILE FIXES) */

:root {
  /* Base golden color */
  --gold-dark:  #a57a1c;
  --gold-base:  #d4af37;
  --gold-light: #ffe9a9;
  --gold-highlight: #fff7d1;
  --gold-stop-1: #ccab85; /* 0%   */
  --gold-stop-2: #f9f1d3; /* 50%  - highlight */
  --gold-stop-3: #dbc6a5; /* 100% */
  --gold-main-1: #d9b36c;

  /* Derived shades for shiny effect */
  --gold-dark-1: #b38b46;      /* darker edge */
  --gold-light-1: #f3e0b4;     /* soft light */
  --gold-highlight-1: #fff9e5; /* bright shine */
  --gold-stop-4: #ccab85; /* 0%   */
  --gold-stop-5: #f9f1d3; /* 50%  */
  --gold-stop-6: #dbc6a5; /* 100% */
}

/* GLOBAL FIXES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
}

body {
    font-family: 'Georgia', serif;
}

/* Helper: ensure media elements never overflow */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Quick Navigation Section - Redesigned */
.quick-nav-section {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: linear-gradient(
        135deg,
        var(--gold-stop-1) 0%,
        var(--gold-stop-2) 50%,
        var(--gold-stop-3) 100%
    );
    padding: 25px 0;
    box-shadow: 0 2px 8px rgba(165, 128, 106, 0.1);
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(165, 128, 106, 0.2);
}

.quick-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.quick-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 25px;
    background: #ffffff;
    border: 2px solid rgba(165, 128, 106, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(165, 128, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.quick-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(165, 128, 106, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.quick-nav-btn:hover::before,
.quick-nav-btn.active::before {
    opacity: 1;
}

.quick-nav-btn:hover {
    transform: translateY(-3px);
    border-color: #A5806A;
    box-shadow: 0 6px 20px rgba(165, 128, 106, 0.2);
}

.quick-nav-btn.active {
    background: linear-gradient(135deg, rgba(165, 128, 106, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: #A5806A;
    box-shadow: 0 6px 20px rgba(165, 128, 106, 0.25);
}

.quick-nav-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f1ed 0%, #faf8f6 100%);
    border-radius: 50%;
    color: #A5806A;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.quick-nav-btn:hover .quick-nav-icon {
    background: linear-gradient(135deg, #A5806A 0%, #d4af37 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.quick-nav-btn.active .quick-nav-icon {
    background: linear-gradient(135deg, #A5806A 0%, #d4af37 100%);
    color: #ffffff;
}

.quick-nav-icon svg {
    width: 24px;
    height: 24px;
}

.quick-nav-text {
    font-size: 0.813rem;
    font-weight: 700;
    color: #2c1810;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Georgia', serif;
}

.quick-nav-btn:hover .quick-nav-text,
.quick-nav-btn.active .quick-nav-text {
    color: #A5806A;
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    padding-top: 2rem;
    width: 100%;
    background: #ffffff;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #A5806A;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #A5806A;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
}

.image-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
}

.image-frame {
    width: 110%;
    height: 110%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A5806A;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

.image-frame img {
    width: 100%;
    height: 100%;
}

/* Award badge: ensure it doesn't push layout on small screens */
.award-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
}

/* On very small screens, keep the badge inside image */
@media (max-width: 480px) {
  .award-badge {
    right: 0.5rem;
    transform: translateX(0);
  }
}

.award-text {
    font-size: 0.75rem;
    color: #A5806A;
    font-weight: 600;
    text-align: center;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #A5806A;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trusted Astrologer Section */
.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-bottom: 20px;
}

.trusted-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.trusted-image-wrapper {
    position: relative;
    width: 280px;
    height: 700px;
}

.oval-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A5806A;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

.oval-frame img {
    width: 100%;
    height: 100%;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1rem;
    color: #A5806A;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 300;
}

.trusted-text-content {
    padding: 0 1rem;
    width: 100%;
}

.trusted-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
}

/* News & Media Section */
.news-media-section {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--gold-stop-1) 0%,
    var(--gold-stop-2) 50%,
    var(--gold-stop-3) 100%
  );
  padding: 4rem 1rem;
}

.news-media-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* News header */
.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #9b313f;
    margin-bottom: 1.5rem;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    max-width: 600px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #A5806A;
}

.divider-icon {
    width: 40px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath d='M0 25 Q25 10, 50 25 T100 25' stroke='%23A5806A' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* keep responsive smaller than 1200 */
@media (max-width: 1200px) {
    .carousel-container {
        max-width: 100%;
    }
}

/* MOBILE: smaller layout adjustments */
@media (max-width: 600px) {
  .slide-content {
        gap: 1rem;
        padding: 0;
    }

    .carousel-slide {
        padding: 1rem 0;
        min-width: 100%;
    }

    .slide-text {
        max-width: 100%;
        padding: 0 1rem;
        text-align: left;
    }

    .slide-image-container {
        padding: 0 1rem;
    }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-description {
    font-size: 0.95rem;
  }

  .arch-frame {
    width: 70vw;
    max-width: 260px;
    height: auto;
    aspect-ratio: 3/4;
    padding: 0.5rem;
  }

  .arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
  }

  .carousel-button.prev {
    left: 0.5rem;
  }

  .carousel-button.next {
    right: 0.5rem;
  }
}

/* mobile inner padding adjustments to avoid right white gap */
@media (max-width: 600px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }

  .news-media-section {
    padding: 3rem 0;
    max-width: 100%;
  }

  .news-media-inner {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem; 
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.slide-text {
    text-align: center;
    flex: 1;
    max-width: 600px;
}

.slide-title {
    font-size: 2rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.slide-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.slide-image-container {
    flex-shrink: 0;
}

.arch-frame {
    width: 300px;
    height: 400px;
    border-top-left-radius: 1000px;
    border-top-right-radius: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

.arch-frame img {
    width: 100%;
    height: 100%;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #A5806A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background: #A5806A;
    color: white;
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #A5806A;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .carousel-slide {
        padding: 2rem 3rem;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
}

/* Tarot Card Reader Section */
.tarot-section {
    width: 100%;
    background: #ffffff;
    padding: 4rem 1rem;
}

.tarot-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.tarot-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #A5806A;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.tarot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.tarot-text {
    flex: 1;
    text-align: center;
}

.tarot-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 300px;
}

.tarot-media-container {
    flex-shrink: 0;
    position: relative;
    max-width: 500px;
    overflow: visible;
}

.tarot-small-image {
    position: relative;
    width: 200px;
    margin-left: auto;
    margin-right: 20px;
    margin-bottom: -40px;
    z-index: 3;
}

.tarot-small-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #ffe7fc;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.tarot-small-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tarot-video-image-wrapper {
    position: relative;
    width: 100%;
}

.tarot-video-container {
    position: relative;
    width: 280px;
    z-index: 2;
}

.tarot-video-frame {
    aspect-ratio: 3/4;
    background: #93C5FD;
    border-radius: 8px;
    overflow: hidden;
    border: 8px solid #93C5FD;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.tarot-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tarot-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    z-index: 1;
}

/* prevent overflow on tiny phones */
@media (max-width: 499px) {
  .tarot-image-wrapper {
    position: static;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* ========== FIXED TAROT-FRAME (YELLOW IMAGE) ========== */
.tarot-frame {
    width: 2%;
    aspect-ratio: 4/3;
    background: linear-gradient(to bottom, #fef3c7, #fde68a);
    border-radius: 8px;
    overflow: hidden;
    border: 8px solid #fef3c7;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A5806A;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    margin-top: -60px;
    margin-left: 200px;
    position: relative;
    z-index: 1;
}

/* Make the frame larger on laptop screens so it doesn't appear tiny */
@media (min-width: 768px) {
  .tarot-frame {
    width: 360px;
  }
}

.tarot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 420px){
    .tarot-frame {
      position: absolute;
      width: 55%;
      max-width: 180px;
      right: -20px;
      top:180px;
      margin: 0 !important;
      padding: 0.5rem;
      z-index: 1;
  }
  .tarot-media-container {
      position: relative;
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
      height: auto;
      min-height: 220px;
  }
}

/* --------------------------------------------
   MOBILE + SMALL SCREEN FIXES ONLY (<768px)
   DO NOT affect tablet or desktop
---------------------------------------------*/
@media (max-width: 767px) {
  .tarot-video-container {
      width: 70%;
      max-width: 260px;
      margin: 0 auto;
      position: relative;
      z-index: 3;
      margin-right: 200px;
  }

  .tarot-small-image {
      position: absolute;
      width: 42%;
      max-width: 180px;
      right: -10px;
      top: -35px;
      margin: 0;
      z-index: 4;
  }

  .tarot-frame {
      position: absolute;
      width: 55%;
      max-width: 180px;
      right: -20px;
      bottom: -35px;
      margin: 0 !important;
      padding: 0.5rem;
      z-index: 1;
  }

  .tarot-media-container {
      position: relative;
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
      height: auto;
      min-height: 420px;
  }

  .tarot-image-wrapper {
      display: none !important;
  }
}


/* Services Offered Section */
.services-offered-section {
    width: 100%;
    background: #ffffff;
    padding: 5rem 1rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.05em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 0 1rem;
}

.service-card {
    background: linear-gradient(135deg, #faf8f6 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(165, 128, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(165, 128, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A5806A 0%, #d4af37 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(165, 128, 106, 0.25);
    border-color: #A5806A;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A5806A 0%, #d4af37 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(165, 128, 106, 0.4);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.service-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-sub-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #A5806A;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #A5806A 0%, #d4af37 100%);
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-offered-section {
        padding: 4rem 1rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.75rem;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-card-title {
        font-size: 1.35rem;
    }
    
    .service-description,
    .service-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-offered-section {
        padding: 3rem 0.75rem;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .service-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
    
    .service-description,
    .service-list li {
        font-size: 0.875rem;
    }
}

/* Awards & Achievements Section */
.awards-section {
    width: 100%;
    background: linear-gradient(
    135deg,
    var(--gold-stop-1) 0%,
    var(--gold-stop-2) 50%,
    var(--gold-stop-3) 100%
  );
    padding: 4rem 1rem;
}

.awards-header {
    text-align: center;
    margin-bottom: 3rem;
}

.awards-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #862033;
    margin-bottom: 1.5rem;
}

.awards-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    padding: 0;
}

.awards-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: flex-start;
    width: 100%;
    flex-wrap: nowrap;
}

.awards-slide {
    min-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.award-card {
    flex: 0 0 auto;
    width: 280px;
    text-align: center;
    max-width: 100%;
}

.award-image-wrapper {
    width: 100%;
    height: 320px;
    background: #ffffff;
    border: 3px solid #1f2937;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.award-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.award-label {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 400;
}

.awards-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #1f2937;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.awards-nav-button:hover {
    background: #1f2937;
    color: white;
}

.awards-nav-button.prev {
    left: 1rem;
}

.awards-nav-button.next {
    right: 1rem;
}

.awards-nav-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* News Clipping Section Styles */
.news-clipping-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #faf8f6 0%, #f5f1ed 100%);
    position: relative;
    overflow: hidden;
}

.news-clipping-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #A5806A, transparent);
}

.clipping-header {
    text-align: center;
    margin-bottom: 30px;
}

.clipping-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.clipping-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.clipping-carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.clipping-slide {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    animation: fadeInClipping 0.5s ease-in-out;
}

.clipping-slide.active {
    display: grid;
}

@keyframes fadeInClipping {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clipping-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(165, 128, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(165, 128, 106, 0.1);
}

.clipping-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(165, 128, 106, 0.25);
}

.clipping-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f1ed, #faf8f6);
}

.clipping-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.clipping-card:hover .clipping-image-wrapper img {
    transform: scale(1.08);
}

.clipping-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.clipping-card:hover .clipping-overlay {
    opacity: 1;
}

.clipping-content {
    padding: 25px;
}

.clipping-publication {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #A5806A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(165, 128, 106, 0.1);
    border-radius: 20px;
}

.clipping-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clipping-description {
    font-size: 0.875rem;
    color: #6b6b6b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.clipping-date {
    font-size: 0.813rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clipping-date::before {
    content: '📅';
    font-size: 0.875rem;
}

.clipping-card.has-link {
    cursor: pointer;
}

.clipping-link-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ccab85 0%, #f9f1d3 50%, #dbc6a5 100%);
    color: rgb(155, 49, 63);
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 0.813rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 2px 10px rgba(165, 128, 106, 0.3);
}

.clipping-link-badge:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(165, 128, 106, 0.5);
}

.clipping-link-badge::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.clipping-link-badge:hover::after {
    transform: translateX(3px);
}

.clipping-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #A5806A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(165, 128, 106, 0.2);
}

.clipping-nav-button:hover {
    background: #A5806A;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(165, 128, 106, 0.4);
}

.clipping-nav-button svg {
    width: 24px;
    height: 24px;
    stroke: #A5806A;
    transition: stroke 0.3s ease;
}

.clipping-nav-button:hover svg {
    stroke: #ffffff;
}

.clipping-nav-button.prev { left: 0; }
.clipping-nav-button.next { right: 0; }

.clipping-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.clipping-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4c5b9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clipping-dot.active {
    background: #A5806A;
    width: 32px;
    border-radius: 6px;
}

.clipping-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background: #f9f7f4;
    padding: 4rem 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #A5806A;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.faq-answer {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: #A5806A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #8B4513;
    text-decoration: underline;
}

/* Work Profile Section */
.work-profile-section {
    width: 100%;
    background: #ffffff;
    padding: 5rem 1rem;
}

.work-profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work-profile-header {
    text-align: center;
    margin-bottom: 4rem;
}

.work-profile-main-title {
    font-size: 3rem;
    font-weight: 300;
    color: #A5806A;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.media-row {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.media-row.reverse {
    grid-template-columns: 1fr 400px;
}

.media-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(165, 128, 106, 0.2);
    transition: transform 0.3s ease;
}

.media-image:hover {
    transform: scale(1.02);
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-content {
    padding: 1rem;
}

.media-title {
    font-size: 2rem;
    font-weight: 500;
    color: #2c1810;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.75rem;
}

.media-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #A5806A 0%, #d4af37 100%);
}

.media-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-list li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.media-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background: #8B4513;
    border-radius: 50%;
}

.media-list li strong {
    color: #A5806A;
    font-weight: 600;
}

.media-list li a {
    color: #A5806A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.media-list li a:hover {
    color: #8B4513;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .work-profile-section {
        padding: 4rem 1rem;
    }
    
    .work-profile-main-title {
        font-size: 2.5rem;
    }
    
    .media-row,
    .media-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .media-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .media-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .work-profile-section {
        padding: 3rem 0.75rem;
    }
    
    .work-profile-header {
        margin-bottom: 3rem;
    }
    
    .work-profile-main-title {
        font-size: 2rem;
    }
    
    .media-row {
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }
    
    .media-content {
        padding: 0.5rem;
    }
    
    .media-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .media-list li {
        font-size: 0.938rem;
        margin-bottom: 0.875rem;
    }
}

@media (max-width: 480px) {
    .work-profile-main-title {
        font-size: 1.75rem;
    }
    
    .media-title {
        font-size: 1.35rem;
    }
    
    .media-list li {
        font-size: 0.9rem;
    }
}
/* Footer */
footer {
    background: url(../images/footer_bg.jpg) no-repeat center/cover;
    padding: 40px 80px;
    min-height: 280px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    font-size: 14px;
    color: #090909;
    position: relative;
    z-index: 1;
    gap: 20px;
    font-family: 'Libre Baskerville', serif;
    bottom:0;
    margin-bottom: -80px;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

footer div {
    margin-bottom: 30px;
}

footer h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #0e0e0e;
    font-size: 19px;
}

.social a {
    display: block;
    color: #080808;
    text-decoration: none;
    margin: 15px 0;
}

.social a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .quick-nav-section {
        padding: 20px 0;
        margin-bottom: 25px;
    }
    
    .quick-nav-container {
        gap: 15px;
    }
    
    .quick-nav-btn {
        min-width: 130px;
        padding: 18px 20px;
    }
    
    .quick-nav-icon {
        width: 40px;
        height: 40px;
    }
    
    .quick-nav-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .quick-nav-text {
        font-size: 0.75rem;
    }
    
    .hero-section {
        padding-top: 1.8rem;
    }
    
    .clipping-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .image-section {
        min-height: 400px;
        padding: 40px;
    }

    .text-section {
        padding: 40px 30px;
    }

    .section-label h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .quick-nav-section {
        top: 60px;
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .quick-nav-container {
        gap: 10px;
        padding: 0 15px;
    }
    
    .quick-nav-btn {
        min-width: 110px;
        padding: 15px 18px;
        gap: 8px;
    }
    
    .quick-nav-icon {
        width: 36px;
        height: 36px;
    }
    
    .quick-nav-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .quick-nav-text {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }
    
    html {
        scroll-padding-top: 140px;
    }
    
    .hero-section{
        margin-top: 0;
        padding-top: 1.5rem;
    }
    
    .stats-section { 
        grid-template-columns: 1fr; 
    }
    
    nav {
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    footer {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 15px;
    }

    footer h4 {
        font-size: 16px;
    }

    footer p {
        font-size: 12px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-item {
        padding: 1.25rem;
    }
    
    .news-clipping-section {
        padding: 60px 15px;
    }
    
    .clipping-title {
        font-size: 2rem;
    }
    
    .clipping-carousel-container {
        padding: 0 50px;
    }
    
    .clipping-slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clipping-nav-button {
        width: 40px;
        height: 40px;
    }
    
    .clipping-nav-button svg {
        width: 20px;
        height: 20px;
    }
    
    .clipping-image-wrapper {
        height: 220px;
    }
    
    body {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-section,
    .trusted-section,
    .news-media-section,
    .tarot-section,
    .awards-section,
    .faq-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 640px) {
    body {
        padding: 20px 10px;
    }

    .image-section {
        padding: 30px 20px;
    }

    .text-section {
        padding: 30px 20px;
    }

    .section-label h1 {
        font-size: 28px;
    }

    .credentials-list li {
        font-size: 14px;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    .awards-carousel-container {
        padding: 0 1rem;
    }

    .awards-carousel-wrapper {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .awards-slide {
        min-width: auto;
        display: contents;
    }

    .award-card {
        flex: 0 0 50%;
        min-width: 50%;
        width: 50%;
        padding: 0 0.5rem;
    }

    .award-image-wrapper {
        height: 320px;
    }

    .awards-nav-button {
        width: 40px;
        height: 40px;
    }

    .awards-nav-button.prev {
        left: 0.5rem;
    }

    .awards-nav-button.next {
        right: 0.5rem;
    }

    .awards-nav-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 499px) {
    .awards-carousel-container {
        padding: 0 1rem;
    }

    .awards-carousel-wrapper {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .awards-slide {
        min-width: auto;
        display: contents;
    }

    .award-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        padding: 0;
    }

    .award-image-wrapper {
        height: 320px;
    }

    .awards-nav-button {
        width: 40px;
        height: 40px;
    }

    .awards-nav-button.prev {
        left: 0.5rem;
    }

    .awards-nav-button.next {
        right: 0.5rem;
    }

    .awards-nav-button svg {
        width: 20px;
        height: 20px;
    }

    .awards-slide, .awards-carousel-wrapper, .awards-carousel-container {
      width: 100%;
      max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .quick-nav-section {
        position: relative;
        top: 0;
        padding: 20px 0;
        margin-bottom: 15px;
    }
    
    .quick-nav-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    
    .quick-nav-btn {
        min-width: auto;
        padding: 15px 10px;
        gap: 8px;
    }
    
    .quick-nav-icon {
        width: 34px;
        height: 34px;
    }
    
    .quick-nav-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .quick-nav-text {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }
    
    html {
        scroll-padding-top: 100px;
    }
    
    .hero-section {
        padding-top: 1rem;
    }
    
    .tarot-image-wrapper {
        top: 320px;
        right: 0;
        width: 260px;
    }
    
    .tarot-video-container {
        margin-left: 0;
    }
    
    .tarot-small-image {
        margin-right: 40px;
        margin-bottom: -30px;
    }

    footer {
      padding: 20px 12px;
      margin-bottom: 0;
    }

    .awards-nav-button.prev { left: 0.5rem; }
    .awards-nav-button.next { right: 0.5rem; }

    .arch-frame { max-width: 240px; width: 70vw; }
    
    nav {
        padding: 10px 15px;
    }
    
    .main-content{
        width: 250px;
    }
    
    .arch-frame{
        width:250px;
        height: 325px;
    }
    
    .nav-logo img {
        height: 40px;
        width: auto;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        text-align: center;
    }

    footer h4 {
        font-size: 15px;
    }

    footer p {
        font-size: 11px;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .faq-item {
        padding: 1rem;
    }
    
    .clipping-carousel-container {
        padding: 0 40px;
    }
    
    .clipping-card-title {
        font-size: 1.1rem;
    }
    
    .clipping-content {
        padding: 20px;
    }

    .container, .news-media-inner, .awards-carousel-container, .tarot-container {
      padding-left: 12px;
      padding-right: 12px;
      box-sizing: border-box;
      max-width: 100%;
    }
}

@media (max-width: 400px) {
    .main-title{
        font-size:2.2rem;
    }
}

@media (max-width: 380px) {
    .quick-nav-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-nav-btn {
        padding: 12px 8px;
    }
    
    .quick-nav-text {
        font-size: 0.6rem;
    }
}

@media (min-width: 768px) {
    .tarot-title {
        font-size: 2.5rem;
    }

    .tarot-description {
        font-size: 1.125rem;
    }

    .tarot-media-container {
        max-width: 600px;
    }

    .tarot-small-image {
        width: 250px;
        margin-right: 80px;
        margin-bottom: -50px;
    }

    .tarot-video-container {
        width: 340px;
    }

    .tarot-image-wrapper {
        width: 340px;
    }

    .slide-content {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
        justify-content: center;
        text-align: left;
    }

    .slide-text {
        text-align: left;
        max-width: 500px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    footer {
        padding: 40px 40px;
        grid-template-columns: repeat(3, 1fr);
    }
   
    .awards-slide {
        justify-content: flex-start;
        padding: 2rem 3rem;
    }
   
    .award-card {
        width: 300px;
    }
}

@media (min-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .main-title {
        font-size: 4rem;
    }

    .image-container {
        justify-content: flex-end;
    }

    .image-wrapper {
        width: 400px;
        height: 500px;
    }

    .stats-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 4rem;
    }

    .trusted-container {
        flex-direction: row;
        gap: 4rem;
        justify-content: center;
    }

    .trusted-image-container {
        gap: 2rem;
    }

    .trusted-image-wrapper {
        width: 360px;
        height: 700px;
    }

    .vertical-text {
        font-size: 1.25rem;
    }

    .tarot-title {
        font-size: 3rem;
    }

    .tarot-content {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .tarot-text {
        text-align: left;
    }

    .tarot-media-container {
        max-width: 700px;
    }

    .tarot-small-image {
        width: 300px;
        margin-right: 100px;
        margin-bottom: -60px;
    }

    .tarot-video-container {
        width: 400px;
    }

    .tarot-image-wrapper {
        width: 400px;
    }

    .awards-slide {
        gap: 2rem;
        justify-content: flex-start;
        padding-left: 4rem;
    }

    .award-card {
        width: 360px;
        flex-shrink: 0;
    }

    .awards-nav-button.prev {
        left: 2rem;
    }

    .awards-nav-button.next {
        right: 2rem;
    }
}

/* EXTRA SAFETY RULES */
.container *, .news-media-inner *, .awards-carousel-container *, .tarot-container * {
  max-width: 100%;
  box-sizing: border-box;
}

.awards-carousel-wrapper, .carousel-wrapper {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  [style*="left: -"], [style*="right: -"] {
    max-width: 100%;
    overflow: visible;
  }
}