:root {
  --primary-color: #2C5F7C;
  --secondary-color: #E8A87C;
  --accent-color: #C38D5F;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo {
  height: 40px;
}

.navbar-brand i {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

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

/* Dropdown Menu */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 0.5rem;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Desktop: Show on hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
  }
}

/* Mobile: Show on click */
@media (max-width: 991px) {
  .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.5rem;
    box-shadow: none;
    background: #f8f9fa;
  }

  .dropdown-menu.show {
    display: block;
  }
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  transform: translateX(5px);
}

/* Mobile dropdown toggle icon */
.dropdown-toggle-icon {
  display: none;
}

@media (max-width: 991px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 3rem;
  }

  .dropdown-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .dropdown-toggle-icon i {
    transition: transform 0.3s ease;
  }

  .nav-item.dropdown.show .dropdown-toggle-icon i {
    transform: rotate(180deg);
  }
}

.btn-contact {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Hero Slider */
.hero-slider {
  margin-top: 76px;
  height: 600px;
  position: relative;
}

.carousel-item {
  height: 600px;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 30%;
  text-align: left;
  left: 10%;
  right: 10%;
}

.carousel-caption h2 {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.carousel-caption p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.btn-read-more {
  background: white;
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease;
}

.btn-read-more:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--accent-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

/* Main Content Section */
.main-content {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Blog Card Styles */
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  text-decoration: none;
}

.blog-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: #888;
  font-size: 0.9rem;
}

.blog-meta i {
  color: var(--accent-color);
  margin-right: 0.3rem;
}

.blog-card-title {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.9rem;
  /* Approx. 2 lines * 1.35 * 1.45rem */
}

.blog-card-title a {
  color: #333;
  transition: all 0.2s ease;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #004499;
}

.blog-card-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 5.1rem;
  /* Approx. 3 lines * 1.7 line-height */
}

.blog-read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  gap: 1rem;
  color: var(--accent-color);
}

/* Sidebar Styles */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: var(--shadow-md);
}

.widget-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 0.8rem 3rem 0.8rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-form button:hover {
  transform: translateY(-50%) scale(1.1);
}

.category-list {
  list-style: none;
  padding-left: 0;
}

.category-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: var(--dark-color);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.category-list a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.category-count {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post:hover {
  transform: translateX(5px);
}

.popular-post-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.popular-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.popular-post:hover .popular-post-img img {
  transform: scale(1.1);
}

.popular-post-content h6 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.popular-post-content h6 a {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.popular-post-content h6 a:hover {
  color: var(--primary-color);
}

.popular-post-date {
  color: #888;
  font-size: 0.85rem;
}

.popular-post-date i {
  color: var(--accent-color);
  margin-right: 0.3rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag-cloud .tag {
  background: #f8f9fa;
  color: var(--dark-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tag-cloud .tag:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  transform: translateY(-2px);
}

/* Pagination */
.pagination {
  margin-top: 3rem;
}

.page-link {
  color: var(--primary-color);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  margin: 0 0.3rem;
  padding: 0.6rem 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  background: #fff;
}

.page-link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white !important;
  border-color: transparent;
  font-weight: 700;
}

.page-item.disabled .page-link {
  background: #f1f1f1;
  color: #ccc;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 100px 0 60px;
  margin-top: 76px;
  color: white;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.rank-math-breadcrumb {
  margin: 1.5rem 0;
}

.rank-math-breadcrumb p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

.rank-math-breadcrumb p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.rank-math-breadcrumb p a:hover {
  text-decoration: underline;
}

.rank-math-breadcrumb .separator {
  margin: 0 8px;
  color: #bbb;
}

.rank-math-breadcrumb .last {
  color: #888;
}

/* Archive Page Header Breadcrumbs */
.page-header .rank-math-breadcrumb {
  margin-top: 0;
}

.page-header .rank-math-breadcrumb p {
  color: rgba(255, 255, 255, 0.8);
}

.page-header .rank-math-breadcrumb p a {
  color: #fff;
  font-weight: 500;
}

.page-header .rank-math-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
}

.page-header .rank-math-breadcrumb .last {
  color: #fff;
}

/* Single Post Styles */
.single-post {
  margin-top: 76px;
}

.post-header-image {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.post-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-breadcrumb {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.single-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.single-breadcrumb .breadcrumb-item {
  color: #666;
}

.single-breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
}

.single-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

.post-header {
  padding: 2rem 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 2rem;
}

.post-category {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 2rem;
  color: #888;
  font-size: 1rem;
}

.post-meta i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

figure.wp-caption.aligncenter {
  max-width: 100%;
  height: auto;
  text-align: center;
}

figure.wp-caption.aligncenter img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}


figcaption.wp-caption-text {
  font-size: 14px;
  font-style: italic;
  color: #666;
  margin-top: 5px;
}

.post-content .lead {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.post-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.8rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 10px 0;
  border-top: 2px solid #f0f0f0;
  margin: 1rem 0;
}

.post-share {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-share h5 {
  margin: 0;
  font-size: 1.1rem;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  transform: translateY(-3px);
}

.related-posts {
  padding-top: 3rem;
  border-top: 2px solid #f0f0f0;
}

/* About Page Styles */
.about-section {
  background: #fff;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  margin: 3rem 0;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  margin-top: 3rem;
}

/* Contact Page Styles */
.contact-info-card,
.wpcf7-form-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-info-content p,
.contact-info-content a {
  color: #666;
  margin: 0;
  text-decoration: none;
}

.contact-info-content a:hover {
  color: var(--primary-color);
}

.social-link-item {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  display: none;
}

.wpcf7-form p {
  margin-bottom: 0;
}

.social-link-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}


.wpcf7-form .form-control {
  padding: 0.8rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.wpcf7-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.wpcf7-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wpcf7-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
}

.footer-text {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--secondary-color);
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-links li a:hover::before {
  margin-right: 12px;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 10px;
}

.footer-links i {
  color: var(--secondary-color);
}

.contact-info {
  list-style: none;
  padding-left: 0;
}

.contact-info li {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #ccc;
}

.row.mb-5.title-contact {
  margin-bottom: 0 !important;
}

.row.mb-5.title-contact .section-subtitle {
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* Responsive */
@media (max-width: 991px) {
  .carousel-caption h2 {
    font-size: 2.5rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }

  .sidebar {
    position: static;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {

  .hero-slider,
  .carousel-item {
    height: 400px;
  }

  .carousel-caption h2 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .page-title {
    font-size: 2rem;
  }

  .post-title {
    font-size: 2rem;
  }
}

.post-tags {
  margin-bottom: 0;
}

.post-tags a {
  color: #333;
  text-decoration: none;
}

/* 404 Page Styles */
.error-page {
  padding: 150px 0 100px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-number {
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.error-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.error-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.error-search {
  max-width: 450px;
  margin: 0 auto 3rem;
}

.error-search .search-form {
  display: flex;
  gap: 0;
  box-shadow: var(--shadow-md);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #eee;
}

.error-search input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  outline: none;
  font-size: 1rem;
}

.error-search button {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 0 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.error-search button:hover {
  opacity: 0.9;
}

.error-actions .btn-home {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.error-actions .btn-home:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: white;
}

@media (max-width: 768px) {
  .error-number {
    font-size: 100px;
  }

  .error-title {
    font-size: 2rem;
  }
}

/* Search Page Styles */
.search-page-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.search-page-form .form-control:focus {
  box-shadow: none;
}

.no-results i {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  img.logo {
    width: 140px;
  }

  .carousel-caption h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  img.logo {
    width: 150px;
  }

  a.btn.btn-contact {
    display: none;
  }

  .carousel-caption h2 {
    font-size: 2rem;
  }

  .nav-link::after {
    display: none;
  }

  .post-header-image {
    height: 350px;
  }

  .post-header {
    padding: 1rem 0;
    margin: 0;
  }

  .rank-math-breadcrumb {
    margin: 10px 0;
  }

  .post-content h2 {
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  nav.navbar.navbar-expand-lg.fixed-top {
    padding: 0;
  }

  .carousel-caption p,
  button.carousel-control-prev,
  button.carousel-control-next {
    display: none;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .btn-read-more {
    font-size: 13px;
    padding: 8px 15px;
  }

  .hero-slider {
    margin-top: 50px;
  }

  .hero-slider,
  .carousel-item {
    height: 350px;
  }

  .main-content {
    padding: 20px 0;
  }

  .section-title::after {
    display: block;
    margin: 0 auto;
    position: unset;
    margin-top: 5px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .sidebar-widget {
    padding: 15px;
  }

  .post-header-image {
    height: 250px;
  }

  .post-title {
    font-size: 30px;
  }

  .post-content.entry-content {
    font-size: 15px;
    padding-top: 15px;
  }

  .post-content h2 {
    font-size: 23px;
    line-height: 1.5;
  }

  .post-content h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .post-share h5 {
    display: none;
  }

  .post-share {
    display: flex;
    justify-content: center;
    border-top: 1px solid #ededed;
    background: #ededed;
  }

  section.page-header {
    padding: 40px 0;
    margin-top: 60px;
  }
}