/*
* Modern Theme Stylesheet for Delta Espace Consulting
* Version: 2.0.0
*/

/* =========== 1. Global Styling & Variables =========== */
:root {
      
  /* Colors */
  --primary-color: #C81908;        /* Changed from #000000 to #C81908 */
  --secondary-color: #343a40;      /* Changed from #0a2463 to #343a40 */
  --accent-color: #C81908;         /* Changed from #cc0000 to #C81908 */
  --text-color: #333333;           
  --light-text: #ffffff;           
  --light-gray: #e2e2e2;           /* Changed from #f8f9fa to #e2e2e2 */
  --border-color: #e2e2e2;         /* Changed from #e5e5e5 to #e2e2e2 */
  --dark-blue: #343a40;            /* Changed from #1b3a61 to #343a40 */
  --light-blue: #e2e2e2;           /* Changed from #e9f0f7 to #e2e2e2 */
  --success-color: #4caf50;        
  --warning-color: #ffc107;        
  --error-color: #f44336;          
  
  /* Social Media Colors */
  --facebook-color: #1877f2;
  --twitter-color: #000000;
  --whatsapp-color: #25d366;
  --linkedin-color: #0077b5;
  
  /* UI Elements */
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --small-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --medium-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  
  /* Typography */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Animation */
  --transition: all 0.3s ease;
  
  /* Border Radius - Standardized */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --button-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-round: 50%;
  
  /* Spacing */
  --section-padding-sm: 40px;
  --section-padding-md: 60px;
  --section-padding-lg: 80px;
  --section-padding-xl: 100px;
  
  /* Card Padding */
  --card-padding-sm: 15px;
  --card-padding-md: 25px;
  --card-padding-lg: 35px;
  /* Social Media Colors */
  --facebook-color: #1877f2;
  --twitter-color: #000000;
  --whatsapp-color: #25d366;
  --linkedin-color: #0077b5;
}

/* =========== 16. Blog Detail Styles =========== */
/* Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Page Header Styling */
.page-header {
  position: relative;
  padding: 80px 0;
  background-color: var(--secondary-color);
  text-align: center;
}

.page-header h1 {
  color: var(--light-text) !important;
  font-size: 42px;
  margin-bottom: 15px;
}

.breadcrumb {
  background: none;
  display: inline-flex;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: #fff;
}

.breadcrumb-item.active {
  color: var(--accent-color);
}

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

/* Blog Header Specific */
.page-header.blog-header {
  position: relative;
  padding: 100px 0 70px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
  text-align: center;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 36, 99, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.blog-meta-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.blog-meta-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  display: flex;
  align-items: center;
}

.blog-meta-item i {
  margin-right: 8px;
  color: var(--accent-color);
}

/* Blog Content Styling */
.blog-detail-content {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--medium-shadow);
  overflow: hidden;
}

.blog-detail-image {
  position: relative;
  overflow: hidden;
}

.blog-detail-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.blog-detail-content:hover .blog-detail-image img {
  transform: scale(1.05);
}

.blog-detail-text {
  padding: var(--card-padding-lg);
}

.blog-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.key-takeaway {
  background-color: var(--light-blue);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.key-takeaway h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.key-takeaway p {
  margin-bottom: 0;
  color: var(--secondary-color);
}

/* Blog Detail Enhancement */
.blog-detail-text blockquote {
  background-color: var(--light-gray);
  padding: 25px;
  border-left: 4px solid var(--accent-color);
  margin: 30px 0;
  font-style: italic;
  color: var(--secondary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-detail-text h2 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.blog-detail-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.blog-detail-text ul,
.blog-detail-text ol {
  margin-left: 20px;
  margin-bottom: 25px;
}

.blog-detail-text li {
  margin-bottom: 10px;
}

/* Tags Section */
.blog-tags {
  padding: 20px var(--card-padding-lg);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--light-blue);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 14px;
  transition: var(--transition);
}

.tag-item:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Author Bio */
.author-bio {
  margin: 0 var(--card-padding-lg);
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius-round);
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

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

.author-info h4 {
  margin: 0 0 5px;
  color: var(--secondary-color);
  font-weight: 600;
}

.author-position {
  color: var(--accent-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.author-description {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Post Navigation */
.post-navigation {
  padding: 25px var(--card-padding-lg);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
}

.nav-link {
  display: flex;
  align-items: center;
  transition: var(--transition);
  max-width: 45%;
}

.nav-link.prev {
  padding-right: 15px;
}

.nav-link.next {
  padding-left: 15px;
  text-align: right;
}

.nav-link i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.nav-link.prev i {
  margin-right: 15px;
}

.nav-link.next i {
  margin-left: 15px;
}

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

.nav-label {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.nav-title {
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Comments Section */
.comments-section {
  padding: var(--card-padding-lg);
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--medium-shadow);
  margin-top: 40px;
}

.comments-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: 600;
}

.comments-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-item-container {
  margin-bottom: 30px;
}

.comment-item-container:last-child {
  margin-bottom: 0;
}

.comment-item {
  display: flex;
  gap: 20px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-round);
  overflow: hidden;
  background-color: var(--light-blue);
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex-grow: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.comment-author {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.comment-date {
  font-size: 14px;
  color: #777;
}

.comment-text {
  margin-bottom: 15px;
}

.comment-text p {
  margin: 0;
  line-height: 1.6;
}

.reply-button {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.reply-button i {
  margin-right: 5px;
}

.reply-button:hover {
  color: var(--accent-color);
}

.replies-list {
  margin-left: 80px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.replies-list li {
  margin-bottom: 20px;
}

.replies-list li:last-child {
  margin-bottom: 0;
}

.replies-list .comment-item {
  background-color: var(--light-blue);
  padding: 20px;
  border-radius: var(--border-radius-lg);
}

/* Comment Form */
.comment-form {
  padding: var(--card-padding-lg);
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--medium-shadow);
  margin-top: 40px;
}

.form-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: 600;
}

.form-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.form-desc {
  color: #777;
  margin-bottom: 25px;
  font-size: 15px;
}

/* Modern Form Styling */
.modern-form .form-group {
  margin-bottom: 25px;
}

.modern-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.modern-form .form-control {
  height: auto;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.modern-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.modern-form textarea.form-control {
  min-height: 150px;
}

.modern-form .btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: var(--button-radius);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.modern-form .btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

/* Sidebar Styling */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--small-shadow);
  padding: var(--card-padding-md);
  margin-bottom: 30px;
}

.widget-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 600;
}

.widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

/* Search Widget */
.search-form .input-group {
  display: flex;
}

.search-form .form-control {
  flex-grow: 1;
  height: 50px;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  font-size: 15px;
  box-shadow: none;
}

.search-form .btn {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-form .btn:hover {
  background-color: var(--secondary-color);
}

/* Recent Posts Widget */
.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.post-item:first-child {
  padding-top: 0;
}

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

.post-item a {
  display: block;
  color: var(--text-color);
  transition: var(--transition);
  line-height: 1.5;
}

.post-item a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Social Share Widget */
.social-share-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-share-btn {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  place-content: center;

}

.social-share-btn i {
  margin-right: 10px;
}

.social-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
  color: #fff;
}

.facebook-btn {
  background-color: var(--facebook-color);
}

.twitter-btn {
  background-color: var(--twitter-color);
}

.whatsapp-btn {
  background-color: var(--whatsapp-color);
}

.linkedin-btn {
  background-color: var(--linkedin-color);
}

/* Newsletter Widget */
.newsletter-widget p {
  margin-bottom: 15px;
}

.newsletter-form .input-group {
  display: flex;
}

.newsletter-form .form-control {
  flex-grow: 1;
  height: 45px;
  border-radius: 8px 0 0 8px;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  font-size: 14px;
}

.newsletter-form .btn {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form .btn:hover {
  background-color: var(--secondary-color);
}

/* Related Posts Section */
.related-posts-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.title-with-line {
  position: relative;
  padding-bottom: 15px;
}

.title-with-line:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  transform: translateX(-50%);
}

.section-title p {
  font-size: 16px;
  max-width: 600px;
  margin: 15px auto 0;
}

/* Mobile Share Widget */
.mobile-share-widget {
  display: none;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  margin-top: 20px;
  padding: 15px 20px;
  box-shadow: var(--small-shadow);
}

.mobile-share-widget span {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-button {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.share-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

.share-button.facebook {
  background-color: var(--facebook-color);
}

.share-button.twitter {
  background-color: var(--twitter-color);
}

.share-button.whatsapp {
  background-color: var(--whatsapp-color);
}

.share-button.linkedin {
  background-color: var(--linkedin-color);
}

/* Enhanced Quote Modal Styling */
#quoteModal .modal-content {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--medium-shadow);
}

.quote-modal-wrapper {
  position: relative;
}

.quote-modal-wrapper .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: none;
  opacity: 1;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quote-modal-wrapper .btn-close:hover {
  background-color: var(--accent-color);
  transform: rotate(90deg);
}

.quote-modal-wrapper .btn-close i {
  color: var(--text-color);
  font-size: 16px;
  transition: var(--transition);
}

.quote-modal-wrapper .btn-close:hover i {
  color: #fff;
}

/* Image Section */
.quote-modal-image {
  position: relative;
  background-image: url('/front/images/consultation-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.85;
}

.image-content {
  position: relative;
  color: #fff;
  padding: 40px 30px;
  text-align: center;
  z-index: 2;
}

.image-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.image-content p {
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 16px;
}

.quote-features {
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-item i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item span {
  font-weight: 500;
}

/* Form Section */
.quote-modal-form {
  padding: 40px;
}

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

.form-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 600;
}

.form-header p {
  color: #666;
  font-size: 15px;
}

.quote-modal-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.quote-modal-form label {
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 8px;
  display: block;
}

.quote-modal-form .form-control,
.quote-modal-form .form-select {
  height: 50px;
  padding: 10px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #e0e6ed;
  box-shadow: none;
  transition: var(--transition);
  color: var(--text-color);
  font-size: 15px;
}

.quote-modal-form .form-control:focus,
.quote-modal-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.quote-modal-form textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.quote-modal-form .form-submit {
  margin-top: 10px;
}

.btn-quote-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 25px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--small-shadow);
}

.btn-quote-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-quote-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.btn-quote-submit:hover::before {
  left: 100%;
}

.btn-quote-submit span {
  z-index: 1;
  margin-right: 8px;
}

.btn-quote-submit i {
  z-index: 1;
}

/* Loading state */
.btn-quote-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-quote-submit .fa-spinner {
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Quote Modal Validation Styles */
.quote-modal-form .form-control.is-valid {
  border-color: var(--success-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.quote-modal-form .form-control.is-invalid {
  border-color: var(--error-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.quote-modal-form .invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--error-color);
}

/* Success message styling */
.swal2-popup.swal2-toast {
  padding: 1rem !important;
  box-shadow: var(--small-shadow) !important;
}

.swal2-title {
  font-size: 1.2rem !important;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 81px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-round);
  background-color: var(--primary-color);
  color: white;
  border: none;
  box-shadow: var(--small-shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Animations */
.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Custom styles for terms page */
.terms-section {
  background-color: var(--light-blue);
  position: relative;
}

.terms-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.terms-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.terms-content {
  background: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.terms-content h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.terms-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.terms-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.terms-content ul {
  margin-bottom: 25px;
}

.terms-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.terms-content ul li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
  font-size: 14px;
}

.effective-date {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--light-blue);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 30px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.effective-date strong {
  color: var(--secondary-color);
}

.last-update {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  font-style: italic;
}

.contact-info-box {
  background-color: var(--light-blue);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-top: 40px;
}

.contact-info-box h4 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.contact-info-box p {
  margin-bottom: 0;
}

.divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 30px 0;
}

.terms-sidebar {
  position: sticky;
  top: 100px;
}

.terms-nav-box {
  background: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.terms-nav-box h4 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.terms-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-nav-list li {
  margin-bottom: 10px;
  padding-left: 0;
}

.terms-nav-list li:before {
  display: none;
}

.terms-nav-list li a {
  color: var(--text-color);
  transition: var(--transition);
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
}

.terms-nav-list li a:hover,
.terms-nav-list li a.active {
  background-color: var(--light-blue);
  color: var(--primary-color);
  padding-left: 20px;
}

.download-terms {
  background-color: var(--light-blue);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
}

.download-terms p {
  margin-bottom: 15px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--button-radius);
  transition: var(--transition);
  font-weight: 500;
}

.btn-download i {
  margin-right: 8px;
}

.btn-download:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

/* Base Styles */
body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #fff;
}

.modern-theme h1, 
.modern-theme h2, 
.modern-theme h3, 
.modern-theme h4, 
.modern-theme h5, 
.modern-theme h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.3;
}

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

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Background Colors */
.bg-light-blue {
  background-color: var(--light-blue);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
  color: var(--light-text);
}

.bg-light-gray {
  background-color: var(--light-gray);
}

.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--light-text);
}

/* Section Padding - Standardized */
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }
.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.pt-70 { padding-top: 70px; }
.pb-70 { padding-bottom: 70px; }
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }

/* Section Margins - Standardized */
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-70 { margin-bottom: 70px; }
.mb-80 { margin-bottom: 80px; }

/* Card & Box Shadows - Standardized */
.card-shadow {
  box-shadow: var(--box-shadow);
}

.card-shadow-sm {
  box-shadow: var(--small-shadow);
}

.card-shadow-lg {
  box-shadow: var(--medium-shadow);
}

/* =========== 2. Button Styles =========== */
.btn-primary, 
.btn-outline,
.btn-white {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--button-radius);
  text-align: center;
  transition: var(--transition);
  text-transform: capitalize;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

.btn-white {
  background-color: var(--light-text);
  color: var(--primary-color);
  border-color: var(--light-text);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--light-text);
  border-color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

.btn-consultation {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--accent-color);
  color: var(--light-text);
  border-radius: var(--button-radius);
  font-weight: 500;
  transition: var(--transition);
}

.btn-consultation:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--accent-color);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Button Hover Effects - Standardized */
.btn-hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: var(--small-shadow);
}

/* =========== 3. Preloader =========== */
.modern-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-round);
  display: inline-block;
  animation: bounce-delay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes bounce-delay {
  0%, 80%, 100% { 
    transform: scale(0);
  } 40% { 
    transform: scale(1.0);
  }
}

/* =========== 4. Header Styles =========== */
.modern-header {
  position: relative;
  z-index: 999;
}

/* Toolbar Area */
.toolbar-area {
  background-color: var(--secondary-color);
  padding: 10px 0;
  color: var(--light-text);
}

.toolbar-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.toolbar-contact ul li {
  margin-right: 20px;
  font-size: 14px;
}

.toolbar-contact ul li a {
  color: var(--light-text);
  display: flex;
  align-items: center;
}

.toolbar-contact ul li i {
  margin-right: 8px;
  color: var(--accent-color);
}

.toolbar-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.toolbar-social ul li {
  margin-left: 15px;
}

.toolbar-social ul li a {
  color: var(--light-text);
  font-size: 14px;
  transition: var(--transition);
}

.toolbar-social ul li a:hover {
  color: var(--accent-color);
}

/* Menu Area */
.modern-menu {
  background-color: #fff;
  transition: var(--transition);
  padding: 15px 0;
}

.menu-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: var(--box-shadow);
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-block;
}

.main-logo {
  max-height: 85px;
  width: auto;
}

.modern-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dec-menu ul.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.dec-menu ul.nav-menu > li {
  margin: 0 12px;
  position: relative;
}

.dec-menu ul.nav-menu > li > a {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  padding: 30px 0;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.dec-menu ul.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 25px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.dec-menu ul.nav-menu > li:hover > a:before,
.dec-menu ul.nav-menu > li.current-menu-item > a:before {
  width: 100%;
}

.dec-menu ul.nav-menu > li:hover > a,
.dec-menu ul.nav-menu > li.current-menu-item > a {
  color: var(--primary-color);
}

.dec-menu-toggle {
  display: none;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Search Box */
.search-box {
  position: relative;
  margin-right: 20px;
}

.search-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue);
  border-radius: var(--border-radius-round);
  cursor: pointer;
  transition: var(--transition);
}

.search-toggle:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.search-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.search-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-wrapper form {
  display: flex;
  align-items: center;
}

.search-wrapper input {
  flex: 1;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0 15px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.search-wrapper input:focus {
  border-color: var(--primary-color);
}

.search-wrapper button {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  color: var(--light-text);
  cursor: pointer;
  margin-left: 10px;
  transition: var(--transition);
}

.search-wrapper button:hover {
  background-color: var(--secondary-color);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-results.active {
  opacity: 1;
  visibility: visible;
}

.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results-list li {
  border-bottom: 1px solid var(--border-color);
}

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

.search-results-list li a {
  display: block;
  padding: 10px 15px;
  color: var(--text-color);
  transition: var(--transition);
}

.search-results-list li a:hover {
  background-color: var(--light-blue);
  color: var(--primary-color);
}

.no-results,
.error-message {
  padding: 15px;
  text-align: center;
}

/* =========== 5. Banner Styles =========== */
.dec-banner {
  position: relative;
  overflow: hidden;
}

.home-banner .banner-slide {
  position: relative;
  height: 550px;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

.banner-text {
  max-width: 700px;
  color: var(--light-text);
}

.banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light-text);
}

.banner-title h1{
  color: var(--light-text) !important;

}

.feature-list {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent-color);
}

.banner-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}

.owl-prev,
.owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-radius: var(--border-radius-round) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--light-text) !important;
  font-size: 24px !important;
  transition: var(--transition) !important;
}

.owl-prev {
  left: 20px;
}

.owl-next {
  right: 20px;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: var(--primary-color) !important;
}

.owl-carousel .owl-item img {
  width: 100%;
  object-fit: contain;
}

/* =========== 6. Feature Boxes =========== */
.feature-box {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* =========== 7. Services Styles =========== */
.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-content {
  padding: var(--card-padding-md);
}

.service-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-title a {
  color: var(--secondary-color);
  transition: var(--transition);
}

.service-title a:hover {
  color: var(--primary-color);
}

.service-text {
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.services-item {
  display: flex;
  margin-bottom: 30px;
}

.service-icon {
  flex: 0 0 70px;
  margin-right: 20px;
}

.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.services-desc h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.video-section-area {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-round);
  background-color: var(--accent-color);
  animation: pulse 2s infinite;
  z-index: -1;
}

.play-button i {
  color: var(--light-text);
  font-size: 24px;
  margin-left: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* =========== 8. Counter Section =========== */
.counter-box {
  text-align: center;
}

.counter-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.counter-number {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--light-text);
}

.counter-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-text);
  margin: 0;
}

/* =========== 9. Blog Styles =========== */
.blog-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--light-text);
  text-align: center;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.blog-date span:first-child {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.blog-date span:last-child {
  font-size: 14px;
  text-transform: uppercase;
}

.blog-content {
  padding: var(--card-padding-md);
}

.blog-meta {
  margin-bottom: 15px;
}

.blog-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.blog-meta ul li {
  margin-right: 20px;
  font-size: 14px;
  color: #777;
}

.blog-meta ul li i {
  margin-right: 5px;
  color: var(--primary-color);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-title a {
  color: var(--secondary-color);
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  margin-bottom: 15px;
}

/* =========== 10. Partner Styles =========== */
.partner-carousel {
  padding: 20px 0;
}

.partner-item {
  text-align: center;
  padding: 15px;
}

.partner-link {
  display: block;
  padding: 15px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.partner-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-link img {
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
  height: 89px;
  object-fit: contain;
}

.partner-link:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* =========== 11. CTA Section =========== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-content {
  color: var(--light-text);
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--light-text);
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* =========== 12. Footer Styles =========== */
.modern-footer {
  background-color: #e2e2e2;
  color: #000000;
  position: relative;
}

.footer-top {
  position: relative;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 180px;
}

.footer-social .social-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social .social-links li {
  margin-right: 15px;
}

.footer-social .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.64);
  border-radius: var(--border-radius-round);
  color: var(--light-text);
  transition: var(--transition);
}

.footer-social .social-links li a:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 20px;
  color: var(--light-text);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #000000 !important;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact li i {
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 5px;
}

.footer-contact li .contact-info {
  flex: 1;
}

.footer-contact li .contact-info span,
.footer-contact li .contact-info a {
  display: block;
}

.footer-contact li .contact-info a {
  color: #000000;
  transition: var(--transition);
}

.footer-contact li .contact-info a:hover {
  color: var(--accent-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #000000;
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-links li a:before {
  content: '→';
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent-color);
  padding-left: 20px;
}

.news-note {
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form .form-input {
  width: 100%;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgb(81, 81, 81);
  border-radius: 30px;
  padding: 0 60px 0 20px;
  color: #515151;
  outline: none;
  transition: var(--transition);
}

.newsletter-form .form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form .form-button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  border: none;
  border-radius: var(--border-radius-round);
  color: var(--light-text);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form .form-button:hover {
  background-color: var(--primary-color);
}

.map-container {
  margin-top: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.footer-bottom {
  background-color: rgb(81, 81, 81);
  padding: 20px 0;
  position: relative;
}

.copyright p {
  margin: 0;
  color: #ffffff;
}

.footer-bottom-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links ul li {
  margin-left: 20px;
}

.footer-bottom-links ul li a {
  color: #ffffff;
  transition: var(--transition);
}

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

.developer-credit {
  margin-top: 10px;
}

.developer-credit p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.developer-credit a {
  color: #ffffff;
  transition: var(--transition);
}

.developer-credit a:hover {
  color: #1172b7;
}

/* =========== 13. Scroll to Top & WhatsApp Button =========== */
.modern-scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: var(--small-shadow);
}

.modern-scroll-up.active {
  opacity: 1;
  visibility: visible;
}

.modern-scroll-up:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-wigdet {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: var(--whatsapp-color);
  color: white;
  border-radius: 50px;
  padding: 10px 20px 10px 15px;
  box-shadow: var(--small-shadow);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  overflow: hidden;
}

.whatsapp-wigdet:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #1ea952;
  color: white;
  text-decoration: none;
}

.whatsapp-wigdet:active {
  transform: translateY(0px);
}

.whatsapp-wigdet .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 22px;
}

.whatsapp-wigdet .text {
  white-space: nowrap;
}

.whatsapp-wigdet .pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: var(--whatsapp-color);
  z-index: -1;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* =========== 14. Cookie Consent Bar =========== */
.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: var(--light-text);
  padding: 1px;
  display: flex;
  justify-content: center;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-bar p {
  margin: 0;
  max-width: 1000px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn-cookie-accept {
  background-color: var(--accent-color);
  color: var(--light-text);
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 2px 10px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background-color: var(--primary-color);
}

/* =========== 15. Responsive Styles =========== */
@media (max-width: 1199px) {
  .banner-title {
    font-size: 40px;
  }
  
  .feature-list li {
    font-size: 16px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .pt-100 { padding-top: 70px; }
  .pb-100 { padding-bottom: 70px; }
  .pt-80 { padding-top: 50px; }
  .pb-80 { padding-bottom: 50px; }
  
  .section-title h2 {
    font-size: 30px;
  }
  
  .banner-title {
    font-size: 36px;
  }
  
  .home-banner .banner-slide {
    height: 450px;
  }
  
  .dec-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--light-text);
    z-index: 999;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
  }
  
  .dec-menu.active {
    right: 0;
  }
  
  .dec-menu ul.nav-menu {
    flex-direction: column;
    padding: 0;
  }
  
  .dec-menu ul.nav-menu > li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .dec-menu ul.nav-menu > li > a {
    padding: 15px 25px;
    display: block;
    width: 100%;
  }
  
  .dec-menu ul.nav-menu > li > a:before {
    display: none;
  }
  
  .dec-menu-toggle {
    display: flex;
    z-index: 1000;
  }
  
  .dec-menu-toggle.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 7px);
  }
  
  .dec-menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
  }
  
  .dec-menu-toggle.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
  }
  
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .search-box {
    margin-right: 15px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .appointment-cart {
    justify-content: flex-end;
  }
  
  /* Blog Specific Media Queries */
  .page-header.blog-header {
    padding: 70px 0 50px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .blog-meta-header {
    gap: 10px;
  }

  .blog-detail-text {
    padding: var(--card-padding-md);
  }

  .blog-tags,
  .post-navigation {
    padding: 15px var(--card-padding-md);
  }

  .author-bio {
    margin: 0 var(--card-padding-md);
    padding: 20px;
  }

  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .pt-100 { padding-top: 60px; }
  .pb-100 { padding-bottom: 60px; }
  .pt-80 { padding-top: 40px; }
  .pb-80 { padding-bottom: 40px; }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .banner-title {
    font-size: 30px;
  }
  
  .home-banner .banner-slide {
    height: 400px;
  }
  
  .feature-list li {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .feature-box,
  .service-card,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .counter-box {
    margin-bottom: 30px;
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .owl-prev, .owl-next {
    width: 40px;
    height: 40px;
    font-size: 18px !important;
  }
  
  .footer-bottom-links,
  .copyright {
    text-align: center;
  }
  
  .footer-bottom-links ul {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-bottom-links ul li {
    margin: 0 10px;
  }
  
  /* Blog Specific Media Queries */
  .page-header.blog-header {
    padding: 50px 0 40px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .blog-meta-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .blog-detail-text {
    padding: 20px;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    margin: 0 20px;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .comment-item {
    flex-direction: column;
  }

  .comment-avatar {
    margin-bottom: 15px;
  }

  .replies-list {
    margin-left: 20px;
  }

  .post-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .nav-link {
    max-width: 100%;
  }

  .nav-link.next {
    align-self: flex-end;
  }

  .mobile-share-widget {
    display: block;
  }

  .sidebar-widget.social-share {
    display: none;
  }
  
  /* WhatsApp button mobile adjustment */
  .whatsapp-wigdet {
    bottom: 20px;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-round);
    justify-content: center;
  }
  
  .whatsapp-wigdet .text {
    display: none;
  }
  
  .whatsapp-wigdet .icon {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .pt-100 { padding-top: 50px; }
  .pb-100 { padding-bottom: 50px; }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .banner-title {
    font-size: 24px;
  }
  
  .banner-text {
    text-align: center;
  }
  
  .home-banner .banner-slide {
    height: 350px;
  }
  
  .banner-btn {
    justify-content: center;
  }
  
  .btn-primary, 
  .btn-outline,
  .btn-white {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .feature-list {
    margin-bottom: 20px;
  }
  
  .owl-prev {
    left: 10px;
  }
  
  .owl-next {
    right: 10px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    left: 20px;
    bottom: 20px;
  }
  
  .modern-scroll-up {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  
  .newsletter-form .form-input {
    height: 45px;
  }
  
  .newsletter-form .form-button {
    width: 35px;
    height: 35px;
  }
  
  .search-wrapper {
    width: 250px;
  }
  
  /* Blog Specific Media Queries */
  .page-header.blog-header {
    padding: 40px 0 30px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .blog-detail-text,
  .comments-section,
  .comment-form {
    padding: var(--card-padding-sm);
  }

  .blog-intro {
    font-size: 1rem;
  }

  .blog-detail-text h2 {
    font-size: 20px;
  }

  .key-takeaway {
    padding: var(--card-padding-sm);
  }

  .social-share-list {
    grid-template-columns: 1fr;
  }
}