@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./contact.css");
@import url("./pagination.css");

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #bb9a49; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

 /* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;

  /* background-image REMOVED – set per page inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 900px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: McQueen;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-family: Coldiac;
    font-size: 2.5rem;
  }

  .hero-content p {
    font-family: McQueen;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-family: Coldiac;
    font-size: 2rem;
  }

  .hero-content p {
    font-family: McQueen;
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author .author-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

@media (max-width: 991.98px) {
  .blog-author .author-card {
    flex-direction: column;
  }
}

.blog-author .author-background {
  position: relative;
  width: 35%;
  min-height: 400px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 90%));
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .blog-author .author-background {
    width: 100%;
    min-height: 300px;
  }
}

.blog-author .author-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  background: linear-gradient(to right, transparent, var(--surface-color));
}

@media (max-width: 991.98px) {
  .blog-author .author-background::after {
    display: none;
  }
}

.blog-author .author-image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
  z-index: 2;
}

.blog-author .author-image-wrapper:hover {
  transform: rotate(0deg);
}

.blog-author .author-image-wrapper .author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author .author-details {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .blog-author .author-details {
    padding: 2rem 1.5rem;
  }
}

.blog-author .author-meta .author-name {
  font-size: 2rem;
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-meta .author-credentials {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-author .author-meta .author-credentials .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.blog-author .author-description {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .author-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 767.98px) {
  .blog-author .author-stats {
    gap: 1rem;
    justify-content: space-around;
  }
}

.blog-author .author-stats .stat-item {
  text-align: center;
}

.blog-author .author-stats .stat-item .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.blog-author .author-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
}

.blog-author .author-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

@media (max-width: 767.98px) {
  .blog-author .author-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.blog-author .author-footer .social-links {
  display: flex;
  gap: 1rem;
}

.blog-author .author-footer .social-links a {
  color: var(--accent-color);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.blog-author .author-footer .social-links a:hover {
  transform: translateY(-3px);
  color: var(--heading-color);
}

.blog-author .author-footer .btn-connect {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-author .author-footer .btn-connect i {
  transition: transform 0.3s ease;
}

.blog-author .author-footer .btn-connect:hover {
  background-color: var(--heading-color);
}

.blog-author .author-footer .btn-connect:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: #bb9a49;
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta .post-date {
  background-color: #bb9a49;
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: #bb9a49;
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: #bb9a49;
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-hero .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  padding-top: 30px;
}

.col-lg-4 {
  flex: 0 0 auto;
  padding-top: 30px;
}

.blog-hero .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}

.blog-hero .featured-post .post-content {
  max-width: 800px;
}

.blog-hero .featured-post .post-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.blog-hero .featured-post .post-title a {
  color: var(--contrast-color);
}

.blog-hero .featured-post .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.blog-hero .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.blog-hero .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-hero .secondary-post .post-content {
  padding: 1.5rem;
}

.blog-hero .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-hero .secondary-post .post-title a {
  color: var(--heading-color);
}

.blog-hero .secondary-post .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .news-tabs {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
}

.blog-hero .news-tabs .nav-tabs {
  border: none;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background-color: var(--surface-color);
}

.blog-hero .news-tabs .nav-tabs .nav-link {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--default-color);
  font-weight: 500;
  border-radius: 20px;
  transition: 0.3s;
}

.blog-hero .news-tabs .nav-tabs .nav-link:hover {
  color: #bb9a49;
}

.blog-hero .news-tabs .nav-tabs .nav-link.active {
  background-color: #bb9a49;
  color: var(--contrast-color);
}

.blog-hero .news-tabs .tab-content {
  padding: 1.5rem;
}

.blog-hero .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-hero .tab-post:first-child {
  padding-top: 0;
}

.blog-hero .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-hero .tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.blog-hero .tab-post .post-content {
  padding-left: 1rem;
}

.blog-hero .tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-hero .tab-post .post-title a {
  color: var(--heading-color);
}

.blog-hero .tab-post .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #bb9a49;
  color: var(--contrast-color);
  margin-right: 0.5rem;
}

.blog-hero .date {
  font-size: 0.875rem;
  color: #bb9a49;
}

.blog-hero .post-author {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author a {
  color: #bb9a49;
  font-weight: 500;
}

.blog-hero .post-author a:hover {
  color: #bb9a49;
}

@media (max-width: 991.98px) {
  .blog-hero .featured-post img {
    height: 400px;
  }

  .blog-hero .featured-post .post-title {
    font-size: 1.75rem;
  }

  .blog-hero .secondary-post .post-image img {
    height: 220px;
  }

  .blog-hero .news-tabs {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .blog-hero .featured-post img {
    height: 500px;
  }

  .blog-hero .featured-post .post-title {
    font-size: 1.5rem;
  }

  .blog-hero .featured-post .post-overlay {
    padding: 1.5rem;
  }

  .blog-hero .tab-post .post-title {
    font-size: 0.875rem;
  }

  .blog-hero .tab-post img {
    height: 80px;
  }
}

body{
  background-color: #000000;
}

/* Destinations Curated Section */
.destinations-curated-section {
  position: relative;
  padding: 100px 0 120px;
  background-color: #121212;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.destinations-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 18, 18, 0.75);
  z-index: 1;
}

.destinations-curated-section .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.destinations-header {
  margin-bottom: 80px;
}

.destinations-main-title {
  font-family: Coldiac;
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 30px;
}

.destinations-description {
  font-family: McQueen;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.destinations-tagline {
  font-family: McQueen;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 20px;
}

/* Destinations Grid */
.destinations-grid {
  margin-bottom: 40px;
}

/* Destination Card Link */
.destination-card-link {
  text-decoration: none;
  display: block;
}

/* Destination Card */
.destination-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
}

/* Image Wrapper with Zoom Effect */
.destination-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.15);
}

/* Overlay */
.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: background 0.4s ease;
}

/* Content */
.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  text-align: center;
}

.destination-title {
  font-family: Coldiac;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.destination-subtitle {
  font-family: McQueen;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  margin: 0;
}

.destination-card:hover .destination-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* View All Button */
.view-all-destinations-btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: McQueen;
  font-size: 16.56px;
  font-weight: 500;
  color: #d4af37;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-destinations-btn:hover {
  color: #121212;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .destinations-main-title {
    font-size: 2.5rem;
    font-family: Coldiac;
  }

  .destination-card {
    height: 320px;
  }
}

@media (max-width: 991px) {
  .destinations-curated-section {
    padding: 80px 0 100px;
  }

  .destinations-header {
    margin-bottom: 60px;
  }

  .destinations-main-title {
    font-size: 2.2rem;
    font-family: Coldiac;
  }

  .destinations-description {
    font-size: 1rem;
    font-family: McQueen;
  }

  .destinations-description br {
    display: none;
  }

  .destination-card {
    height: 300px;
    margin-bottom: 15px;
  }

  .destination-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .destinations-curated-section {
    padding: 60px 0 80px;
    background-attachment: scroll;
  }

  .destinations-header {
    margin-bottom: 50px;
  }

  .destinations-main-title {
    font-size: 1.8rem;
    font-family: Coldiac;
  }

  .destinations-description {
    font-size: 0.95rem;
    padding: 0 15px;
    font-family: McQueen;
  }

  .destinations-tagline {
    font-size: 1rem;
  }

  .destination-card {
    height: 280px;
  }

  .destination-title {
    font-size: 1.5rem;
  }

  .destination-content {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .destinations-curated-section {
    padding: 50px 0 60px;
  }

  .destinations-main-title {
    font-size: 1.5rem;
    font-family: Coldiac;
  }

  .destinations-description {
    font-size: 0.9rem;
    font-family: McQueen;
  }

  .destinations-tagline {
    font-size: 0.9rem;
  }

  .destination-card {
    height: 250px;
  }

  .destination-title {
    font-size: 1.3rem;
  }

  .destination-subtitle {
    font-size: 0.9rem;
  }

  .view-all-destinations-btn {
    padding: 15px 40px;
    font-size: 0.9rem;
  }
}

/* FAQ Section Styles */
.luxury-faq-section {
  background-color: #000000;
  padding: 100px 0;
}
.faq-header {
  margin-bottom: 60px;
}
.faq-header h2 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0;
}
.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #d4af37;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-question h3 {
  font-family: McQueen;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  padding-right: 20px;
}
.faq-question i {
  font-size: 1.2rem;
  color: #ffffff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer{
  padding: 0 30px 30px 30px; /* keep your padding */
}

.faq-answer p {
  font-family: McQueen;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}
/* Responsive */
@media (max-width: 768px) {
  .luxury-faq-section {
    padding: 60px 0;
  }
  .faq-header h2 {
    font-family: Coldiac;
    font-size: 1.8rem;
  }
  .faq-question {
    padding: 20px;
  }
  .faq-question h3 {
    font-family: McQueen;
    font-size: 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  .faq-answer p {
    font-family: McQueen;
  }
}
@media (max-width: 576px) {
  .faq-header h2 {
    font-family: Coldiac;
    font-size: 1.5rem;
  }
  .faq-question h3 {
    font-family: McQueen;
    font-size: 0.95rem;
  }
  .faq-answer p {
    font-family: McQueen;
    font-size: 0.9rem;
  }
}

/* ===== Responsive Table (Clean lines) ===== */
.table-responsive{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0 26px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Table */
.content-table{
  width: 100%;
  min-width: 980px;      /* keeps columns readable; still scrolls on mobile */
  border-collapse: collapse;
  table-layout: fixed;   /* keeps columns aligned properly */
}

/* Cells */
.content-table th,
.content-table td{
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.10); /* ✅ grid lines */
  vertical-align: top;
  line-height: 1.6;
  white-space: normal;   /* allow wrapping */
  word-break: break-word;
}

/* Header */
.content-table thead th{
  background: rgba(26,26,26,0.92);
  font-weight: 600;
}

/* Row zebra (optional but makes it clearer) */
.content-table tbody tr:nth-child(even){
  background: rgba(255,255,255,0.03);
}

/* Mobile tweak */
@media (max-width: 768px){
  .content-table{
    min-width: 900px; /* still scrollable */
  }
}

/* =========================
   ✅ Mobile-only FIX for your inline split blocks (DESKTOP unchanged)
   ========================= */
@media (max-width: 768px){

  /* Guard against long text overflow on mobile */
  .blog-details .article-content,
  .blog-details .content{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Stack your inline flex blocks once we add classes in HTML */
  .blog-details .content .lu-split{
    flex-direction: column !important; /* overrides inline row flex */
    gap: 16px !important;
    margin: 24px 0 !important;
  }

  .blog-details .content .lu-split-text{
    width: 100% !important;
    min-width: 0 !important;
  }

  .blog-details .content .lu-split-media{
    width: 100% !important;     /* overrides inline width:340px */
    max-width: 100% !important;
    flex: 0 0 auto !important;
  }

  .blog-details .content .lu-split-media img{
    width: 100% !important;
    height: auto !important;    /* overrides inline height:260/280 */
    max-height: 320px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Nice mobile typography */
  .blog-details{
    max-width: 100%;
    margin-top: 40px;
  }

  .blog-details .article-content{
    padding: 0 12px;
  }

  .blog-details .article-content .content-header .title{
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .blog-details .article-content .content{
    font-size: 1rem;
    line-height: 1.75;
  }

  .blog-details .article-content .content .lead{
    font-size: 1.1rem;
  }

  .blog-details .article-content .content h2{
    font-size: 1.5rem;
    margin: 2.2rem 0 1rem;
  }
}

@media (max-width: 576px){
  .blog-details .content .lu-split-media img{
    max-height: 260px;
  }
}
